@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Sans+TC:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Sans+TC:wght@100..900&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

.main {
    height: 100vh;
    width: 100%;
    background-color: orangered;
}

/* navbar */
nav {
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.2vw 10vw;
    position: fixed;
    z-index: 99;
}

#logo {
    width: 15vh;
}

nav a {
    text-decoration: none;
    font-size: 1.9vw;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd6b3;
}

nav i {
    font-size: 1.7vw;
    color: #fff;
}

.cntr-nav {
    display: flex;
    gap: 3vw;
}

.cntr-nav a {
    font-size: 1.4vw;
    font-weight: 500;
}

/* 1st part */
/* hero section */
.one {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ff9a00, #ff5e00, #fc5e3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.one::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
}

#fanta {
    width: 28%;
    margin-top: 70px;
    z-index: 2;
    position: absolute;
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}

#orange-cut {
    position: absolute;
    width: 12%;
    top: 15%;
    left: 38%;
    z-index: 1;
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}

#oranges {
    width: 17%;
    position: absolute;
    z-index: 3;
    top: 62%;
    right: 34%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}

.one h1 {
    font-size: 20vw;
    color: #fff;
}

#leaf {
    width: 16%;
    position: absolute;
    top: 15%;
    left: 4%;
    transform: rotate(45deg);
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}

#leaf2 {
    width: 13%;
    position: absolute;
    top: 60%;
    left: 82%;
    transform: rotate(50deg);
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}

#leaf1 {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 19%;
}

/* 2nd part */
.two {
    width: 100%;
    height: 100vh;
    background: #7a3520;
    display: flex;
}

.two-left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.two-left svg {
    transform: rotateX(50deg);
    width: 70%;
    margin-top: 45vh;
    /* background-color: #ff9a00; */
}


/* right side  */
.two-right {
    width: 50%;
    height: 100%;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.two-right h1 {
    color: #fff;
    font-size: 3.5vw;
    margin-bottom: 20px;
    font-family: "Dancing Script", cursive;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.two-right p {
    font-style: 1vw;
    color: #fff;
    width: 90%;
    line-height: 1.6;
    color: #ffe0d2;
}

/* 3rd part */
.three {
    width: 100%;
    height: 110vh;
    background: linear-gradient(135deg, #ff9a00, #ee6a1d, #f7532ee8);
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 5vw;
}

.card {
    width: 23vw;
    height: 70vh;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1vh;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-15px);
}

#sprite {
    position: absolute;
    left: 19%;
    width: 15vw;
    top: -20%;
    transform: translate(-50% 0%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}

.lemon {
    width: 24vw;
    position: absolute;
    top: -37%;
    left: 2%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}

#coca-cola {
    position: absolute;
    left: 0%;
    width: 26vw;
    top: -20%;
    transform: translate(-50% 0%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1);
}


.card h1 {
    font-size: 2.3vw;
    margin-top: 40vh;
    font-family: "Rubik", sans-serif;
    letter-spacing: 0.3px;
}

.card button {
    font-size: 1.1vw;
    border-radius: 50px;
    border: none;
    padding: 0.9vw 3vw;
    font-weight: 600;
    background-color: rgb(255, 122, 60);
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card button:hover {
    background-color: rgb(255, 94, 0);
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#card1 {
    background: linear-gradient(rgb(54, 109, 228), rgb(47, 197, 47));
}

#card2 {
    background: linear-gradient(rgb(201, 82, 28), orange);
}

#card3 {
    background: linear-gradient(rgb(14, 13, 13), rgb(233, 18, 18));
}

/* footer  */
.bottom {
    background: #111;
    color: white;
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom p {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}