@font-face {
    font-family: Product Sans;
    src: url("product-sans/Product Sans Regular.ttf");
}

@font-face {
    font-family: Product Sans B;
    src: url("product-sans/Product Sans Bold.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Product Sans;
}

html,
body {
    height: 100%;
    width: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

#main {
    width: 100%;
    height: 100vh;
    background-color: orangered;
}

nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 7vh;
    padding: 0vw 10vw;
    z-index: 99;
    background: rgba(255, 255, 255, 0.1);
    /* Glass effect */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav a {
    font-size: 1.2vw;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.logo {
    width: 5vw;
    /* Adjust size as needed */
    height: auto;
}

.cntr-nav {
    display: flex;
    gap: 3vw;
}

.cntr-nav a:hover {
    color: #ffd700;
    /* Gold hover color */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

nav i {
    font-size: 1.5vw;
    color: #fff;
    cursor: pointer;
}

.one {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #ffeb3b, #ff5722);
    /* Energetic Yellow to Red-Orange */
}

.one h1 {
    font-size: 17vw;
    font-family: Product Sans B;
    color: #fff;
    text-shadow: 5px 5px 0px #ff3d00;
    /* Pop effect */
}

#fanta {
    position: absolute;
    width: 27%;
    z-index: 2;
}

#orange-cut {
    position: absolute;
    top: 10%;
    left: 32%;
    width: 15%;
    z-index: 1;

}

#orange {
    position: absolute;
    width: 20%;
    z-index: 3;
    top: 55%;
    right: 30%;

}

#leaf {
    top: 10%;
    left: 0%;
    transform: rotate(60deg);
    position: absolute;
    width: 18%;

}

#leaf2 {
    top: 70%;
    left: 80%;
    transform: rotate(-90deg);
    position: absolute;
    width: 12%;

}

#leaf3 {
    position: absolute;
    width: 20%;
    top: 10%;
    right: 0%;
}

.two {
    display: flex;
    width: 100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #ffeb3b, #ff5722);
}

.lft-two,
.rght-two {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5vh;
    width: 50%;
    height: 100%;
}

.lft-two svg {
    margin-top: 50vh;
    width: 90%;
    transform: rotateX(50deg);
}

.rght-two h1 {
    color: #fff;
    font-size: 5vw;
    line-height: 1.1;
    margin-bottom: 2vh;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.rght-two p {
    font-size: 1.2vw;
    line-height: 1.6;
    color: #fff;
    width: 80%;
    margin-bottom: 4vh;
}

.cta-btn {
    padding: 1vw 2.5vw;
    font-size: 1.1vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff5722;
    background-color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    color: #e64a19;
}

.three {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    width: 100%;
    gap: 5vw;
    width: 100%;
    height: 100vh;

}

.card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
    width: 25vw;
    height: 70vh;
    margin-top: 10vh;
    border-radius: 20px;
    background-color: #fff;
}

.card-one {
    background: linear-gradient(to bottom, #ff0f0f, #750d0d);
    color: #fff;
}

.card-two {
    background: linear-gradient(to bottom, #ffa500, #ff4500);
    color: #fff;
}

.card-three {
    background: linear-gradient(to bottom, #1e90ff, #00008b);
    color: #fff;
}

.card h1 {
    margin-top: 57vh;
    font-size: 3vw;
}



#cocacola {
    top: -17%;
    position: absolute;
    width: 96%;
    left: 50%;
    transform: translate(-50%, 0%);
}

#pepsi {
    top: -17%;
    position: absolute;
    width: 96%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.lemon {
    top: -30%;
    position: absolute;
    left: 50%;
    width: 25vw;
    transform: translate(-50%, 0%);
}

.lemon1 {
    width: 18vw;
    top: -22%;
}

@media (max-width: 700px) {
    nav {
        padding: 0vw 5vw;
        height: 6vh;
    }

    nav img {
        width: 10%;
    }

    nav a {
        font-size: 3vw;
    }

    .cntr-nav a {
        display: none;
    }

    nav i {
        font-size: 5vw;
        color: #000;
        font-weight: 600;
        display: block;
    }

    .one {
        flex-direction: column;
    }

    .one h1 {
        font-size: 18vw;
    }

    #orange-cut {
        width: 35%;
        top: 25%;
        left: 5%;
    }

    #fanta {
        width: 55%;
        top: 30%;
        left: 22.5%;
    }

    #orange {
        width: 35%;
        top: 65%;
        right: 15%;
    }

    #leaf {
        width: 40%;
        top: 25%;
        left: 5%;
    }

    #leaf2 {
        width: 25%;
        top: 60%;
        left: 70%;
    }

    #leaf3 {
        width: 35%;
        top: 25%;
        right: 5%;
    }

    .two {
        flex-direction: row;
        /* Restore side-by-side */
        align-items: center;
        /* Vertically center content */
        justify-content: center;
        width: 100%;
        height: 100vh;
        /* Restore full viewport height */
        padding: 0;
        gap: 0;
    }

    .lft-two {
        width: 50%;
        height: 100%;
        /* Restore desktop flex properties */
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 0;
    }

    .lft-two svg {
        width: 100%;
        /* Fill the column width */
        margin-top: 10vh;
        /* Adjust vertical position */
        transform: rotateX(50deg);
        /* Restore the 3D effect */
    }

    .rght-two {
        width: 50%;
        height: 100%;
        align-items: flex-start;
        /* Restore left alignment */
        justify-content: center;
        text-align: left;
        /* Restore left alignment */
        padding-right: 5vw;
        /* Add some padding on the right */
        padding-left: 0;
    }

    .rght-two h1 {
        font-size: 6vw;
        /* Scaled down but readable */
        line-height: 1.1;
        margin-bottom: 2vh;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .rght-two p {
        font-size: 2.2vw;
        /* Small but necessary for side-by-side */
        width: 100%;
        margin-bottom: 3vh;
        line-height: 1.4;
        opacity: 0.9;
    }

    .cta-btn {
        padding: 2vw 4vw;
        font-size: 2.5vw;
        margin-bottom: 0;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

    .three {
        flex-direction: row;
        /* Change to row to match desktop */
        height: 100vh;
        padding-bottom: 0;
        gap: 2vw;
        /* Reduce gap for mobile */
        align-items: center;
        justify-content: center;
    }

    .card {
        width: 30vw;
        /* Smaller width to fit 3 in a row */
        height: 25vh;
        /* Reduce height */
        margin-top: 0;
        border-radius: 10px;
        gap: 1vh;
    }

    .card h1 {
        font-size: 3.5vw;
        /* Scale down font */
        margin-top: 18vh;
    }

    .lemon {
        width: 25vw;
        /* Scale down lemon */
    }

    .lemon1 {
        width: 18vw;
        top: -20%;
    }

    #cocacola,
    #pepsi {
        width: 110%;
        /* Increase size to make them more prominent */
        top: -10%;
    }

}