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

:root {
    --primary-color: #f4a6c1;
    --secondary-color: #ffd6e8;
    --accent-color: #c72869;
    --light-bg: #fff9fc;
    --text-color: #5a3a5a;
    --light-text: #8b6b8b;
    --border-color: #f0d4e0;
    --shadow: 0 4px 6px rgba(199, 40, 105, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.bride-groom {
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero-decoration {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* Hero photo */
.hero-photo {
    margin-top: 40px;
}

.hero-photo-frame {
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(199, 40, 105, 0.3);
    transform: rotate(-1deg);
    transition: var(--transition);
}

.hero-photo-frame:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(199, 40, 105, 0.4);
}


@keyframes photoShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-photo-icon {
    font-size: 5rem;
    margin-bottom: 15px;
    z-index: 1;
}

.hero-photo-text {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}


/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    background-color: white;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-toggle {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-weight: 600;
    min-width: 50px;
}

.language-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(199, 40, 105, 0.3);
}

.lang-badge {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 40px;
    margin: 40px 0;
    border-radius: 20px;
    background-color: white;
    box-shadow: var(--shadow);
}

.section h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-intro {
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Countdown Section */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.countdown-item {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 8px 15px rgba(199, 40, 105, 0.15);
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(199, 40, 105, 0.25);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-text {
    text-align: center;
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Venue Section */
.venue-card {
    background: linear-gradient(135deg, rgba(244, 166, 193, 0.1), rgba(255, 214, 232, 0.1));
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.venue-card h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.venue-address {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.venue-details {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Hotels Section */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hotel-card {
    background: white;
    border: 2px solid var(--border-color);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
}

.hotel-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(199, 40, 105, 0.2);
    transform: translateY(-5px);
}

.hotel-card h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.hotel-distance {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hotel-details {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.hotel-rate {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* RSVP Section */
.rsvp-container {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.rsvp-deadline {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.rsvp-alt {
    margin-top: 20px;
    color: var(--text-color);
}

.rsvp-alt a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.rsvp-alt a:hover {
    text-decoration: underline;
}

/* Photos Section */
.photo-container {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(244, 166, 193, 0.1), rgba(255, 214, 232, 0.1));
    border-radius: 15px;
    border: 2px dashed var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.photo-upload-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.photo-note {
    color: var(--light-text);
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(199, 40, 105, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 40, 105, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: #a01850;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: white;
    color: var(--accent-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--accent-color);
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    font-size: 1.1rem;
}

.footer p {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bride-groom {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section {
        padding: 40px 20px;
        margin: 20px 0;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 20px 10px;
    }

    .nav-links {
        gap: 10px;
        width: 100%;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .language-toggle {
        width: 50px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .venue-card {
        padding: 25px;
    }

    .venue-card h3 {
        font-size: 1.4rem;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        padding: 50px 20px;
    }

    .rsvp-container {
        padding: 40px 20px;
    }

    .photo-container {
        padding: 40px 20px;
    }

    .photo-upload-icon {
        font-size: 3rem;
    }

    .hero-decoration {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .bride-groom {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
    }

    .nav-link {
        display: block;
        text-align: center;
        padding: 10px 0;
    }

    .language-toggle {
        width: 50px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .hero {
        padding: 40px 15px;
    }
}
