* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* HEADER / NAVIGATION */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
}

.nav-bar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 90px;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  padding: 6px 0;
  transition: color 0.25s ease, border-bottom 0.25s ease;
}

.main-nav a:hover {
  color: #b86b3c;
  border-bottom: 2px solid #b86b3c;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #b86b3c;
  font-weight: 600;
  font-size: 2rem;
}

/* ABOUT */
.about p {
  text-align: center;
  max-width: 800px;
  margin: 15px auto;
  font-size: 1.05rem;
  color: #333;
}

/* FOUNDER / TEACHER */
.founder-profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.founder-profile img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.founder-text h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.founder-text p {
  font-size: 1rem;
  color: #555;
}

/* COURSES */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.course-card {
  background: #fff;
  border-left: 5px solid #b86b3c;
  padding: 30px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* CONTACT */
.contact {
  background: #1a1a1a;
  color: #f0d9b5;
  text-align: center;
  padding: 60px 20px;
}

.contact p {
  font-size: 1.05rem;
  margin: 8px 0;
}

/* SOCIAL */
.social {
  text-align: center;
  padding-bottom: 60px;
}

.social-links a {
  margin: 0 20px;
  text-decoration: none;
  color: #b86b3c;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #8c4a2b;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media(max-width:768px){
  .founder-profile {
    flex-direction: column;
    text-align: center;
  }
  .founder-text p {
    max-width: 90%;
    margin: auto;
  }

  .main-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
}

footer a {
  color: #b86b3c;      /* keeps gold accent like your site */
  text-decoration: none; 
  font-weight: 600;
  transition: color 0.3s;
}

footer a:hover {
  color: #8c4a2b;      /* slightly darker gold on hover */
  text-decoration: underline; /* optional */
}