body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffd1dc, #ffebf0, #fff0f5);
    /* User requested #ffd1dc base */
    color: #4a4a4a;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: rgba(255, 255, 255, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 209, 220, 0.3);
    /* Pink styling shadow */
}

.logo {
    color: #d81b60;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
    list-style: none;
}

.nav-links li a {
    color: #d81b60;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff80ab;
    /* Lighter pink on hover */
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #d81b60;
    /* Replaced white with pink accent */
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #880e4f;
}

.highlight {
    color: #ff4081;
    /* Hot pink highlight */
    text-shadow: 2px 2px 0px #ffd1dc;
}

.hero-content p {
    font-size: 1.2rem;
    color: #880e4f;
    margin-bottom: 50px;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    box-shadow: 0 8px 32px 0 rgba(216, 27, 96, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d81b60;
}

.countdown-item p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #880e4f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3D Rotating Cube */
.cube-wrapper {
    margin-top: 50px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.cube {
    width: 150px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 10s infinite linear;
}

.face {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(255, 209, 220, 0.6);
}

.face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front {
    transform: rotateY(0deg) translateZ(75px);
}

.back {
    transform: rotateY(180deg) translateZ(75px);
}

.right {
    transform: rotateY(90deg) translateZ(75px);
}

.left {
    transform: rotateY(-90deg) translateZ(75px);
}

.top {
    transform: rotateX(90deg) translateZ(75px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(75px);
}

@keyframes rotate {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #ffd1dc;
        /* Pink mobile menu background */
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .countdown-container {
        gap: 15px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}