/* ===================================
   CSS Variables & Design Tokens
   =================================== */
:root {
    /* Color Palette - Design Mockup */
    --dusty-rose: #877964;      /* Deep dusty rose/muted red */
    --warm-blush: #EFE5DA;      /* Light beige/cream */
    --soft-ivory: #FFFFFE;      /* Off-white */
    --charcoal: #383838;        /* Dark charcoal */
    --muted-sage: #C4A69F;      /* Muted taupe/mauve */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--soft-ivory);
    line-height: 1.7;
    font-size: 16px;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.35rem;
    font-weight: 600;
}
a {
    color: rgba(var(--charcoal), var(--bs-link-opacity, 1));
    text-decoration: underline;
}
/* ===================================
   Navigation
   =================================== */
.navbar {
    background-color: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(43, 43, 43, 0.05);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dusty-rose) !important;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    color: var(--charcoal) !important;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--charcoal) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
    border-radius: 50px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dusty-rose) !important;
    background-color: var(--warm-blush);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    padding: 150px 0 100px;
    background-image: url('./img/6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(#45351e, #45351e40, #000000fa);
}
@media (max-width: 1024px) {
    .hero-overlay {
        background: radial-gradient(#45351edb, #00000030);
    }
}
/*    */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-box {
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 725px;
}

.hero-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(43, 43, 43, 0.3);
    margin-bottom: 1rem;
}

.hero-date {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 4px rgba(43, 43, 43, 0.3);
    margin-bottom: 3rem;
}

/* ===================================
   Countdown Timer
   =================================== */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(43, 43, 43, 0.1);
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    text-transform: capitalize;
    margin-top: 0.5rem;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--dusty-rose);
    border-color: var(--dusty-rose);
    color: white;
}

.btn-primary:hover {
    background-color: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 43, 43, 0.2);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--dusty-rose);
    color: var(--dusty-rose);
}

.btn-outline-primary:hover {
    background-color: var(--dusty-rose);
    border-color: var(--dusty-rose);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--dusty-rose);
    transform: translateY(-2px);
}

.hero-buttons,
.location-buttons,
.venue-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===================================
   Sections
   =================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dusty-rose);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--warm-blush);
    border-radius: 2px;
}

.bg-soft {
    background-color: white;
}

/* ===================================
   Intro Text
   =================================== */
.intro-text {
    margin: 3rem 0;
}

.intro-text p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.signature {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dusty-rose);
    margin-top: 2rem;
}

/* ===================================
   Info Cards
   =================================== */
.info-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(43, 43, 43, 0.08);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid var(--warm-blush);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.12);
}

.info-card h3 {
    color: var(--dusty-rose);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 0;
}

.info-card-highlight {
    background: linear-gradient(135deg, var(--warm-blush) 0%, white 100%);
    border-color: var(--dusty-rose);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dusty-rose);
    font-size: 1.5rem;
    line-height: 1;
}

/* ===================================
   Venue Section
   =================================== */
.venue-name {
    color: var(--charcoal);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* ===================================
   Countdown Section
   =================================== */
.countdown-section {
    position: relative;
    padding: var(--section-padding) 0;
    background-image: url('./img/6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #45351eb3; */
    background: radial-gradient(#45351edb, #00000030);
    /* background: linear-gradient(135deg, rgba(135, 121, 100, 0.85) 0%, rgba(135, 121, 100, 0.75) 50%, rgba(135, 121, 100, 0.8) 100%); */
}

.countdown-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.countdown-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(43, 43, 43, 0.3);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--charcoal);
    color: white;
    padding: 3rem 0;
}

.footer-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--warm-blush);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-section,
    .countdown-section {
        background-attachment: scroll;
        padding: 120px 0 80px;
    }
    
    .hero-text-box {
        padding: 3rem 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .info-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .hero-buttons,
    .location-buttons,
    .venue-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    .countdown-container {
        gap: 0.75rem;
    }
    
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .hero-text-box {
        padding: 2.5rem 1.5rem;
    }
}

#asukoht {background:#00000008}