/*base.css*/
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #ff7914;
    --primary-color-dark: #3e2002;
    --primary-color-light: #ffc093;
    --secondary-color: #80927c;
    --secondary-color-light: #e6e6e6;
    --secondary-color-dark: #1a272f;

    /* Sizes */
    --slider-width: 480px;
    @media (max-width: 576px) {
        --slider-width: 380px;
    }
    @media (max-width: 420px) {
        --slider-width: 320px;
    }
    @media (max-width: 320px) {
        --slider-width: 300px;
    }

    --padding: 40px;
    --padding-sm: 10px;
    @media (max-width: 576px) {
        --padding: 30px;
        --padding-sm: 8px;
    }
    @media (max-width: 420px) {
        --padding: 20px;
        --padding-sm: 6px;
    }
    @media (max-width: 320px) {
        --padding: 10px;
        --padding-sm: 4px;
    }
}

::selection {
    background: var(--primary-color) !important;
    color: var(--secondary-color-light) !important;
    text-shadow: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color-dark);
    border-radius: 4px;
    border: 2px solid transparent;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #6e3207; /* Darker shade on hover */
}

body {
    font-family: "Merriweather", serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    background-color: var(--secondary-color-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    color: var(--secondary-color-light);
    font-size: 3.2rem;
    @media (max-width: 768px) {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }
}

h1.header {
    margin: 40px 20px;
    text-align: center;
    width: 100%;
}

h1 span {
    color: var(--primary-color);
}

h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    @media (max-width: 768px) {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
}

h3 {
    color: var(--secondary-color-dark);
    font-size: 2.4rem;
    line-height: 2.4rem;
    @media (max-width: 768px) {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
}

h3 span {
    color: var(--primary-color);
}

h4 {
    color: var(--secondary-color-dark);
    font-size: 1.6rem;
    line-height: 1.8rem;
    @media (max-width: 768px) {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
}

h4 span {
    color: var(--primary-color);
}


h5 {
    color: var(--primary-color);
    font-size: 1.6rem;
    line-height: 1.8rem;
    @media (max-width: 768px) {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
}

h6 {
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: bold;
    @media (max-width: 768px) {
        font-size: 1rem;
        line-height: 1.2rem;
    }
}


p {
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--secondary-color-light);
    padding: 8px 0;
    @media (max-width: 768px) {
        font-size: 1rem;
    }
}


ul li {
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--secondary-color-light);
    padding: 4px;
    list-style-type: disclosure-closed;
    margin-left: 20px;
}

ol li {
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--secondary-color-light);
    padding: 4px;
    margin-left: 20px;
}

.negative {
    background-color: var(--secondary-color-light);
}

.negative li,
.negative p {
    color: var(--secondary-color-dark);
}

.negative hr {
    background-color: var(--primary-color);
}


img {
    max-width: 100%;
    height: auto;
}

hr {
    margin: 10px 0;
    border: none;
    height: 2px;
    background-color: var(--primary-color);
    width: 100%;
}


.container {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;

    @media (max-width: 1400px) {
        max-width: 1400px;
    }

    @media (max-width: 1200px) {
        max-width: 1200px;
    }

    @media (max-width: 980px) {
        max-width: 980px;
    }

    @media (max-width: 768px) {
        max-width: 768px;
    }

    @media (max-width: 576px) {
        max-width: 576px;
    }

    @media (max-width: 320px) {
        max-width: 320px;
    }

}

section {
    margin: 0;
    padding: 80px 0;
}

section .container {
    display: flex;
    gap: 40px;
    flex-direction: column;
}


section .container .content {
    width: 100%;
    display: flex;
    flex-direction: row;
    @media (max-width: 576px) {
        flex-direction: column;
    }
}

section .container .content .col {
    width: 100%;
    padding: 24px;
    flex: 1;

}

section .container .content  .col-2{
    flex: 2;
}

section .container .content  .col-3{
    flex: 3;
}

section .container .content  .col-4{
    flex: 4;
}

section.cocktail{
    margin-top: 6rem;
}

section.cocktail .card-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    @media (max-width: 980px) {
        flex-direction: column;
    }
    gap: 4rem;
}

section.cocktail .card-content .col {
    width: 100%;
    padding: 24px;
    flex: 1;

}

section.cocktail  .card-content  .col-2{
    flex: 2;
}

section.cocktail .card-content  .col-3{
    flex: 3;
}

section.cocktail .card-content  .col-4{
    flex: 4;
}


@keyframes fadeInMoveLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInMoveDown {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide-in animation utilities */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeftFar {
    from {
        opacity: 0;
        transform: translateX(-100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightFar {
    from {
        opacity: 0;
        transform: translateX(100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUpFar {
    from {
        opacity: 0;
        transform: translateY(100vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDownFar {
    from {
        opacity: 0;
        transform: translateY(-100vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
}

.slide-up {
    animation: slideInUp 0.5s ease-out forwards;
}

.slide-down {
    animation: slideInDown 0.5s ease-out forwards;
}

.slide-in-left-far {
    animation-name: slideInLeftFar;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.slide-in-right-far {
    animation-name: slideInRightFar;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.slide-up-far {
    animation-name: slideInUpFar;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

/* Initial state for slide-up-far elements */
.pre-slide-up-far {
    transform: translateY(100vh);
    opacity: 0;
}

.slide-down-far {
    animation-name: slideInDownFar;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.slide-fast {
    animation-duration: 0.3s !important;
}

.slide-norm {
    animation-duration: 0.5s !important;
}

.slide-slow {
    animation-duration: 0.7s !important;
}

.d_1 { animation-delay: 0.1s; }
.d_2 { animation-delay: 0.2s; }
.d_3 { animation-delay: 0.3s; }
.d_4 { animation-delay: 0.4s; }
.d_5 { animation-delay: 0.5s; }
.d_6 { animation-delay: 0.6s; }
.d_7 { animation-delay: 0.7s; }
.d_8 { animation-delay: 0.8s; }
.d_9 { animation-delay: 0.9s; }
.d_10 { animation-delay: 1s; }

