* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;700&display=swap');

body {
    font-family: 'Caveat', cursive;
    color: #333;
}

/* Header Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #4b4b4b;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.hero-subtitle {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
    font-family: 'Caveat', cursive;
}

.hero-title {
    font-size: 64px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    font-family: 'Caveat', cursive;
}

.heart {
    display: inline-block;
    margin: 0 10px;
    font-size: 56px;
}

/* Surprise Section */
.surprise-section {
    background-color: #2a9b8e;
    padding: 80px 40px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.surprise-text {
    font-size: 32px;
    font-style: italic;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .heart {
        font-size: 36px;
        margin: 0 8px;
    }

    .surprise-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo {
        font-size: 14px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .surprise-text {
        font-size: 18px;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: #2a9b8e;
    padding: 80px 40px;
    text-align: center;
    min-height: auto;
}

.gallery-intro {
    font-size: 32px;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.gallery-subtitle {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
}

.gallery-text {
    font-size: 32px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 500;
}

.click-btn {
    background-color: #fff;
    color: #2a9b8e;
    border: none;
    padding: 15px 80px;
    font-size: 18px;
    font-family: 'Caveat', cursive;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
}

.click-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-intro {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .gallery-img {
        height: 200px;
    }

    .gallery-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .gallery-text {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .click-btn {
        padding: 12px 60px;
        font-size: 16px;
    }
}

