:root {
    --primary-color: #2c4a5e;
    --accent-color: #6b8cae;
    --light-blue: #e6f2f8;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    overflow: hidden;
}

.watercolor-bg {
    display: none;
}

.floral {
    position: absolute;
    width: 200px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><path d="M50 50 Q 30 80 40 120 T 60 180" stroke="%232c4a5e" stroke-width="2" fill="none"/><circle cx="40" cy="80" r="15" fill="%236b8cae" opacity="0.3"/><circle cx="55" cy="120" r="12" fill="%236b8cae" opacity="0.3"/><circle cx="45" cy="160" r="18" fill="%236b8cae" opacity="0.3"/><ellipse cx="30" cy="90" rx="8" ry="20" fill="%232c4a5e" opacity="0.2" transform="rotate(-20 30 90)"/><ellipse cx="65" cy="110" rx="6" ry="18" fill="%232c4a5e" opacity="0.2" transform="rotate(15 65 110)"/><ellipse cx="50" cy="140" rx="7" ry="22" fill="%232c4a5e" opacity="0.2" transform="rotate(-10 50 140)"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

.floral-top-left {
    top: 20px;
    left: 20px;
}

.floral-bottom-right {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 40px 20px;
}

.names {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.date {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 8px;
    font-weight: 300;
}

.location {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.rings-icon {
    margin: 30px auto;
}

/* Details Section */
.details {
    padding: 80px 20px;
    background: #fafafa;
}

.details h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 140, 174, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

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

.detail-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.detail-card p {
    cursor: text;
    position: relative;
    z-index: 1;
}

.coming-soon {
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
}

.map-button {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    background: var(--white);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    z-index: 10;
}

.map-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Countdown Section */
.countdown {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.countdown h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Save Date Section */
.save-date {
    padding: 80px 20px;
    background: var(--light-blue);
    text-align: center;
}

.save-date h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.save-date p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.calendar-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

footer p {
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .names {
        font-size: 3rem;
    }
    
    .date {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .location {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .floral {
        width: 150px;
        height: 225px;
    }
    
    .floral-bottom-right {
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    .names {
        font-size: 2.5rem;
    }
    
    .date {
        font-size: 1.2rem;
    }
    
    .details h2,
    .countdown h2,
    .save-date h2 {
        font-size: 2.5rem;
    }
    
    .countdown-display {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 10px;
    }
    
    .floral {
        width: 100px;
        height: 150px;
    }
    
    .floral-bottom-right {
        bottom: 60px;
        right: 10px;
    }
    
    .hero {
        min-height: 90vh;
    }
}