/* Classic Elegance Theme — WeddingSite.in */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary: {{.Config.Theme.PrimaryColor}};
    --secondary: {{.Config.Theme.SecondaryColor}};
    --bg-light: #faf8f5;
    --bg-card: #ffffff;
    --text-main: #2b2523;
    --text-muted: #6b6360;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --gold: #c5a059;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 0.5rem; }
h3 { font-size: 1.5rem; }

.section-title-wrap {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Decorative Divider */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 1rem auto 1.5rem;
}

.ornament-divider span {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: var(--gold);
}

.ornament-divider i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Navigation */
.theme-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.4) 0%, rgba(250, 248, 245, 0.95) 100%),
                radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
    position: relative;
}

.hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-names {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-names .amp {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    margin: 0 0.5rem;
}

.hero-date {
    font-size: 1.35rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Countdown Timer */
.countdown-box {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.countdown-item {
    background: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    min-width: 90px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.countdown-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* CTA Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
    background: #6a0000;
}

/* Container & Sections */
.theme-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

/* Couple Story Section */
.couple-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.couple-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.couple-card h3 {
    color: var(--primary);
    margin: 1rem 0 0.5rem;
}

.couple-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-narrative {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--gold);
    line-height: 1.8;
    font-size: 1.05rem;
    color: #4a3e3d;
}

/* Multi-Event Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.schedule-time {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: #7a5f25;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.schedule-location {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8e2dc;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #ffffff;
    font-size: 0.9rem;
}

/* RSVP Section */
.rsvp-box {
    background: linear-gradient(135deg, var(--primary) 0%, #4a0000 100%);
    border-radius: calc(var(--radius) * 1.5);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.25);
}

.rsvp-box h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.rsvp-box p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.rsvp-box .btn-rsvp {
    background: var(--gold);
    color: #2b2523;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.rsvp-box .btn-rsvp:hover {
    background: #e0b86c;
    transform: translateY(-2px);
}

/* Footer */
.theme-footer {
    text-align: center;
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-credits {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #999;
}

.footer-credits a {
    color: var(--gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-section { padding-top: 6rem; }
    .countdown-box { gap: 0.75rem; }
    .countdown-item { padding: 1rem; min-width: 70px; }
    .countdown-num { font-size: 1.8rem; }
    .theme-container { padding: 3.5rem 1rem; }
}
