:root {
    --gold: #D4AF37;
    --gold-dark: #B5952F;
    --bg-main: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; }

h1, h2, h3, .nav-brand { font-family: var(--font-heading); color: #000; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.gold-text { color: var(--gold-dark); }
.bg-dark { background-color: var(--bg-main); } /* Overridden for light theme */
.bg-darker { background-color: var(--bg-alt); } /* Overridden for light theme */
.text-light { color: var(--text-main); } /* Overridden for light theme */

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.section-title { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; color: #111; }

.btn { display: inline-block; padding: 12px 28px; border-radius: 30px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 4px 10px rgba(212,175,55,0.3); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(212,175,55,0.4); }

.glassmorphism { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.glass-card { background: #FFFFFF; border: 1px solid rgba(0,0,0,0.05); padding: 30px; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s; }
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }

.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 8px; color: #111; }
.nav-brand svg { width: 32px; height: 32px; fill: var(--gold); }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold-dark); }
.menu-toggle { display: none; background: none; border: none; color: #111; font-size: 1.5rem; cursor: pointer; }

.hero { position: relative; height: 100vh; display: flex; align-items: center; text-align: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.4)), url('../img/hero_wedding.png'); background-size: cover; background-position: center; z-index: -1; }
.hero-text-box { margin-top: 50px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(8px); padding: 50px; border-radius: 40px; border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 15px 45px rgba(0,0,0,0.1); max-width: 850px; margin-left: auto; margin-right: auto; }
.hero .title { font-size: 4rem; margin-bottom: 20px; color: #111; line-height: 1.1; }
.hero .subtitle { letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; font-weight: 700; color: var(--gold-dark); }
.hero .description { font-size: 1.4rem; margin-bottom: 25px; color: #000; font-weight: 500; }

.about-grid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px;}

.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px; }
.price-card { max-width: 350px; width: 100%; border-top: 4px solid var(--gold); }
.price-card h3 { font-size: 1.5rem; margin-bottom: 5px; }
.price-card .songs { color: var(--text-muted); margin-bottom: 20px; font-weight: 500; }

/* Gallery Section */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; height: 300px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(181,149,47,0.2); }
.gallery-item:hover img { transform: scale(1.1); }

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.price-card .price { font-size: 3rem; font-weight: 700; color: #111; font-family: var(--font-heading); margin-bottom: 10px; }
.price-card .price span { font-size: 1.2rem; color: var(--text-muted); }
.disclaimer { font-size: 0.9rem; color: var(--text-muted); margin-top: 30px; }

.footer { padding: 50px 0 20px; border-top: 1px solid rgba(0,0,0,0.05); background-color: var(--bg-alt); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer h3 { margin-bottom: 20px; color: #111; }
.footer p { color: var(--text-muted); margin-bottom: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #FFF; flex-direction: column; padding: 20px; text-align: center; box-shadow: 0 10px 10px rgba(0,0,0,0.05); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero .title { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; }
}

.visible { opacity: 1 !important; transform: translateY(0) !important; }
