html,
body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    font-family: "Roboto-Regular", Helvetica;
}

a {
    text-decoration: none;
}

#navbar {
    position: fixed;
    display: flex;
    background-color: #FF6200;
    width: calc(100vw - 30%);
    height: 100px;
    align-items: center;
    padding: 0 15%;
    justify-content: space-between;
}

#other-navbar {
    padding: 32px 0;
    display: flex;
    background-color: #FA9F02;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
}

#logo {
    height: min(15vw, 160%);
    object-fit: cover;
}

#taste-logo {
    height: 320%;
}

#logo-container {
    height: 100%;
    display: flex;
    align-items: center;
}

#navbar-buttons {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.navbar-button {
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    font-size: min(2.5vw, 24px);
    width: fit-content;
    font-weight: 400;
}

.navbar-button:hover {
    text-decoration: underline;
    cursor: pointer;
}

#cover-image {
    width: 100%;
    object-fit: cover;
    margin-top: 100px;
}

.content-container {
    width: calc(100% - 30%);
    height: 650px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 15%;
}

#taste {
    color: white;
    margin-top: -5px;
    background-color: #FA9F02;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#package {
    color: black;
    background-color: #FACD02;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#promo {
    color: white;
    background-color: #FF6200;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    padding-bottom: 50px;
}

#about {
    color: white;
    background-color: #FA9F02;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    text-align: center;
    height: 620px;
}

#contact {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 500px;
    display: flex;
}

.content {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
}

.content-title {
    font-size: min(6vw, 48px);
    font-weight: bold;
}

.content-text {
    font-size: min(3vw, 24px);
}

.content-img {
    height: min(35vw, 400px);
    object-fit: cover;
}

.img-container {
    display: flex;
    height: 450px;
    width: 50%;
    align-items: center;
}

.content-button {
    display: flex;
    height: 50px;
    width: min(30vw, 200px);
    background-color: white;
    color: black;
    border-radius: 10px;
    font-size: min(3vw, 20px);
    align-items: center;
    justify-content: center;
}

.content-button:hover {
    cursor: pointer;
}

.content-button:active {
    background-color: grey;
}

#promo-title {
    font-size: min(5vw, 48px);
    padding: 32px;
}

#promo-video {
    width: min(80vw, 1000px);
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

#about-title {
    font-size: min(5vw, 48px);
    padding: 6vw;
}

.about-text {
    width: 95%;
    font-size: min(3vw, 20px);
}

#about-line {
    width: 256px;
    border: solid 1px;
    border-color: white;
}

#contact-title {
    color: white;
    display: flex;
    background-color: #FF6200;
    height: 64px;
    font-size: min(5vw, 32px);;
    align-items: center;
    padding-left: 15%;
}

#contact-content {
    padding-top: 32px;
    padding-left: 15%;
    display: flex;
    flex-direction: column;
}

#contact-footer {
    margin-top: 128px;
    display: flex;
    width: 80%;
    padding-left: 10%;
    padding-bottom: 20px;
    justify-content: space-between;
    text-align: center;   
}

#find-more {
    display: flex;
    height: 50px;
    width: min(30vw, 200px);
    color: black;
    border-radius: 10px;
    font-size: min(3vw, 20px);
    align-items: center;
    justify-content: center;
    color: white;
    background-image: linear-gradient(to right, #ff6200 , #fa9f02);
}

#find-more:active {
    background-color: grey;
    background-image: none;
}

#find-more:hover {
    cursor: pointer;
}

.taste-container {
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 600px;
    padding: 0 15%;
}

.taste-img-container {
    display: flex;
    height: 100%;
    align-items: center;
}

.taste-img {
    height: min(60vw, 100%);
}

.taste-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.taste-title {
    font-size: min(4vw, 48px);
}

.taste-text {
    font-size: min(2.5vw, 24px);    
    width: 100%;
}

#naranca-container {
    background-color: #FA9F02;
}

#limun-container {
    color: black;
    background-color: #FFD803;
}

#bazga-container {
    color: #293F81;
    background-color: #5FC1FF;
}

#limeta-container {
    background-color: #83CA26;
}

#mango-container {
    background-color: #C04279;
}

#other-footer {
    display: flex;
    justify-content: space-between;
    padding: 32px;
    text-align: center;
}

#packaging-container {
    background-image: linear-gradient(#FA9F02, #FACD02);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 50px 0;
}

.filler {
    font-size: min(3vw, 24px);
}

#packaging-footer-text {
    text-align: center;
    padding: 0 10%;
}

#mech {
    width: 80%;
}

#bottle {
    width: 70%;
}

.otherr {
    text-align: center;
}

@media only screen and (max-width: 480px) {
    body {
        width: 100%;        
    }

    #cover-image {
        margin-top: 80px;
    }

    #navbar {
        flex-direction: column;
        width: 100%;
        height: 80px;
        padding: 0;
    }

    #logo {
        height: 100%;
        margin-top: -15px;
    }

    #navbar-buttons {
        margin-top: -25px;
    }

    .navbar-button {
        font-size: 12px;
    }

    #promo-video {
        width: 90vw;
        height: auto;
        aspect-ratio: 16/9;
    }

    .content-container {
        flex-direction: column !important;
        height: auto;
        padding: 32px 15%;
    }
    
    /* Override specific sections */
    #taste, #package {
        flex-direction: column !important;
    }
    
    .content, .img-container {
        width: 100% !important;
        height: fit-content;
        padding: 25px;
    }
    
    .content-img {
        height: auto;
        max-height: 300px;
        width: 100%;
    }

    .content-title {
        font-size: 32px;
    }

    .content-text {
        font-size: 24px;
    }

    #promo-title {
        font-size: 32px;
    }

    #about-title {
        font-size: 32px;
        padding: 32px;
    }

    #about-text {
        width: 100%;
        font-size: 24px;
    }

    #about {
        height: fit-content;
    }

    #contact-footer {
        width: 80%;
        flex-direction: column;
        padding: 0 10% 20px 10%;
        align-items: center;
        gap: 10px;
    }

    #other-footer {
        flex-direction: column;
        align-items: center;
    }

    .taste-container {
        flex-direction: column;
    }

    .taste-img {
        width: 60vw;
        object-fit: cover;
    }

    .taste-content {
        align-items: center;
    }

    .taste-container {
        height: fit-content;
        padding-bottom: 50px;
    }

    .taste-title {
        text-align: center;
        font-size: 28px;
    }

    .taste-text {
        text-align: center;
        font-size: 20px;
        width: 80vw;
    }

    #find-more {
        font-size: 16px;
    }

    .about-text {
        font-size: 16px;
    }

    .content-button {
        font-size: 16px;
    }

    #contact-title {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 24px;
    }

    #promo-title {
        font-size: 24px;
    }
}