/* Navigation Menu */
.homepage-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(31, 33, 71, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #FF7A1A;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #FF7A1A, #FF5C70);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(31, 33, 71, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    display: block;
    padding: 1rem 2rem;
    text-align: center;
  }
  
  .nav-link::after {
    display: none;
  }
  
  /* Hamburger Animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Adjust hero padding for fixed nav */
.hero {
  padding-top: 140px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #1F2147;
  background-color: #F7F3ED;
}

/* Header / Hero Section */
.hero {
  background: linear-gradient(135deg, #1F2147 0%, #FF7A1A 100%);
  background-image: url('/assets/images/yoga-pose.PNG');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: white;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(31, 33, 71, 0.3);
  padding: 2rem;
  border-radius: 15px;
}

.hero-content h1 {
  text-shadow: 2px 2px 4px rgba(31, 33, 71, 0.8), 0 0 20px rgba(31, 33, 71, 0.6);
}

.hero-content p {
  text-shadow: 1px 1px 3px rgba(31, 33, 71, 0.8), 0 0 15px rgba(31, 33, 71, 0.5);
}

.hero-content .logo {
  text-shadow: 2px 2px 4px rgba(31, 33, 71, 0.8), 0 0 20px rgba(31, 33, 71, 0.6);
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF7A1A, #FF5C70);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 122, 26, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 26, 0.4);
}

/* About Section */
.about {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1F2147;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1F2147;
  margin-bottom: 2rem;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 4px solid #FF7A1A;
  box-shadow: 0 8px 25px rgba(255, 122, 26, 0.3);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Classes Section */
.classes {
  padding: 80px 20px;
  background: #F7F3ED;
}

.classes h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1F2147;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.class-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(31, 33, 71, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.class-card:hover {
  transform: translateY(-5px);
  border-color: #FF5C70;
}

.class-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1F2147;
}

.class-card p {
  color: #1F2147;
  margin-bottom: 1rem;
}

.class-card em {
  color: #FF5C70;
  font-style: italic;
}

.class-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF7A1A;
  margin-bottom: 1.5rem;
}

.book-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF7A1A, #FF5C70);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.book-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 122, 26, 0.3);
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1F2147;
}

.contact p {
  font-size: 1.2rem;
  color: #1F2147;
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 3rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #FF7A1A;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #FF5C70;
}

.email-icon {
  font-size: 1.5rem;
}

.social-links {
  margin-bottom: 3rem;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF7A1A, #FF5C70);
  color: white;
  text-decoration: none;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FF5C70, #B7F0D3);
}

/* Footer */
.footer {
  background: #1F2147;
  color: white;
  text-align: center;
  padding: 2rem 20px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about h2,
  .classes h2,
  .contact h2 {
    font-size: 2rem;
  }
  
  .classes-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 15px 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .about,
  .classes,
  .contact {
    padding: 60px 15px;
  }
} 