:root {
    --primary-color: #6B8E76;
    --secondary-color: #D4B5A5;
    --accent-color: #FF9A8B;
    --text-color: #333;
    --light-text: #666;
    --background-color: #fff;
    --section-padding: 4rem 2rem;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url('picture.jpeg');
    background-size: cover;
    background-position: center 20%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%, rgba(107, 142, 118, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
    margin: 0 auto;
    transform: translateY(0);
}

.date-badge {
    background: var(--accent-color);
    display: inline-block;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}

.names {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, var(--primary-color), #8BA892);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.time-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.time-block span:first-child {
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Story Section */
.story-section {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-emoji {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.story-highlight {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 1.5rem 0;
}

/* Event Sections */
.ceremony-section, .reception-section {
    padding: 4rem 2rem;
    position: relative;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-details {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-item {
    margin-bottom: 1.5rem;
    text-align: center;
}

.detail-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
}

/* Information Section */
.info-section {
    background: linear-gradient(135deg, var(--primary-color), #8BA892);
    color: white;
    padding: 4rem 2rem;
}

.info-content {
    max-width: 800px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Buttons */
.calendar-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
}

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

.calendar-btn span {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-names {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-date {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-thanks {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-emoji {
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        background-position: center center;
        padding-top: 1.5rem;
    }

    .hero-content {
        padding: 1.2rem;
    }

    .names {
        font-size: 3rem;
    }

    .date-badge {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-block {
        min-width: 90px;
        padding: 1rem;
    }

    .time-block span:first-child {
        font-size: 2.5rem;
    }

    .info-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
        padding-top: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .names {
        font-size: 2.5rem;
    }

    .date-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .time-block {
        width: calc(50% - 1rem);
        margin-bottom: 1rem;
    }

    .story-highlight {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.section-icon {
    animation: float 3s ease-in-out infinite;
}

/* Extra Details Section */
.extra-details-section {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 4rem 2rem;
}

.extra-details-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-card h2 {
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    margin: 1rem 0;
}

.gift-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.iban-container {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.iban-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.iban-number {
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 1rem;
    word-break: break-all;
}

.copy-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.copy-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .extra-details-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-card h2 {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .iban-number {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .detail-card {
        padding: 1.5rem;
    }

    .detail-card h2 {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .iban-container {
        padding: 1rem;
    }

    .iban-number {
        font-size: 1rem;
    }
} 
