* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
    background-color: #f0f8ff;
}

header {
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: #02b3fe;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a.active {
    background-color: #02b3fe;
    color: white;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Countdown Section */
#countdown {
    text-align: center;
    padding: 3rem 0;
}

#countdown h1 {
    font-family: 'Pacifico', cursive;
    color: #02b3fe;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 120px;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: bold;
    color: #02b3fe;
}

.countdown-item span:last-child {
    font-size: 1.2rem;
    color: #666;
}

/* Bucket List Section */
.bucket-list-container {
    background: linear-gradient(180deg, #87CEEB 0%, #E0F7FF 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    background-image: url('image3.jpg');
    background-size: cover;
    background-position: center;
}

.country-list-container {
    background: linear-gradient(180deg, #87CEEB 0%, #E0F7FF 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    background-image: url('country.png');
    background-size: cover;
    background-position: center;
}

.bucket-list-container:after {
    
    opacity: 0.6;
  }

.bucket-list-container h1 {
    text-align: center;
    font-family: 'Comic Neue', cursive;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.summer-text {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    color: #02b3fe;
    text-align: center;
    margin-bottom: 2rem;
}

.bucket-list-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.bucket-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.bucket-list-item:hover {
    transform: translateX(5px);
}

.bucket-list-item input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.bucket-list-item label {
    font-size: 1.1rem;
    color: #2c3e50;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1000;
    }

    .nav-links li {
        opacity: 0;
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 100px;
    }

    .bucket-list-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .summer-text {
        font-size: 3rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}