/* Gauri Nrityalaya - Classical Bharatanatyam Stylesheet */
:root {
  --primary: #6b1426;         /* Deep Temple Maroon */
  --primary-dark: #4d0b19;
  --gold: #c99837;            /* Temple Gold */
  --gold-light: #e8c872;
  --bg: #fcfbf9;              /* Warm Ivory */
  --bg-card: #ffffff;
  --bg-secondary: #f6f1ea;
  --text-main: #2b2224;
  --text-muted: #6e6466;
  --border: #e6ded5;
  --font-serif: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-sans: 'Montserrat', sans-serif;
  --shadow: 0 10px 30px rgba(107, 20, 38, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.8;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: var(--primary-dark);
  color: var(--gold-light);
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(201, 152, 55, 0.2);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 20px;
}

.top-contact a:hover {
  color: #fff;
}

/* HEADER & NAVBAR */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  border-bottom: 2px solid var(--gold);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(107, 20, 38, 0.25);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #ffffff;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: #b5852a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(77, 11, 25, 0.75), rgba(77, 11, 25, 0.85)),
              url('../assets/hero_dancer.jpg') center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.hero-desc {
  font-size: 20px;
  color: #f3e5ab;
  margin-bottom: 35px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 17px;
}

/* CARDS & GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ABOUT GURU SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 3px solid #ffffff;
}

.about-text h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-badge {
  display: inline-block;
  background: var(--bg-secondary);
  color: var(--gold);
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quote-box {
  border-left: 3px solid var(--gold);
  padding: 15px 20px;
  background: var(--bg-secondary);
  margin: 25px 0;
  font-style: italic;
  color: var(--primary);
  font-size: 17px;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

/* JOINING PROCESS LIST */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  align-items: flex-start;
}

.process-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  min-width: 40px;
}

.process-info h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 6px;
}

.process-info p {
  color: var(--text-muted);
  font-size: 15px;
}

/* CONTACT INFO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  font-size: 22px;
  color: var(--primary);
}

.contact-item h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item a:hover {
  color: var(--gold);
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 152, 55, 0.15);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* FOOTER */
.footer {
  background: var(--primary-dark);
  color: #f3e5ab;
  padding: 60px 0 25px 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #d1c2a5;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1c2a5;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 152, 55, 0.2);
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
  color: #b0a083;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .nav-menu.active { left: 0; }
  .hero-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
}
