/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f6f6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Condensed", sans-serif;
    color: var(--color-text-dark);
    font-weight: 600;
    /* margin: 0; */
}

p,
li,
span {
    line-height: normal;
    margin: 0;
}

a {
    text-decoration: none;
}

ul,
li {
    padding: 0;
    list-style: none;
}


/* Main header */
.main-header {
    border-bottom: 1px solid black;
    height: 40px;
    font-size: 13px;
    color: black;
    font-weight: 400;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

ul.top-header li {
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid transparent;
}

ul.top-header li:hover {
    border-color: #000;
}

.bottom-header img {
    width: 100%;
    object-fit: contain;
    max-width: 150px;
}

.top-header,
.right-header {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    /* gap: 1.5rem; */
}

.top-header li a,
.right-header li a {
    color: black;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}

.top-header li a:hover,
.right-header li a:hover {
    /* text-decoration: underline; */
}

.bottom-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.1em;
    height: 100%;
    color: black;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.icon {
    font-size: 16px;
    color: black;
    cursor: pointer;
    display: block;
}

.icon:hover {
    color: #555;
}

/* Sidemenu */
.side-menu {
    position: fixed;
    top: 46px;
    left: -320px;
    width: 320px;
    height: calc(100% - 45px);
    background: white;
    z-index: 1000;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.side-menu.open {
    left: 0;
}

.menu-header {
    border-bottom: 1px solid #000;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 45px;
}

.menu-header i {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    outline: none;
    padding-left: 40px;
    border: none;
}

.main-menu,
.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu>li,
.submenu>li {
    border-bottom: 1px solid #eee;
}

.main-menu>li>a,
.submenu>li>a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
}

.submenu {
    position: absolute;
    top: 45px;
    left: -320px;
    width: 320px;
    height: calc(100% - 45px);
    background: white;
    transition: right 0.3s ease;
    z-index: 1002;
}

.submenu.open {
    left: 0;
}

.submenu .back-btn {
    background: #f6f6f6;
    font-weight: bold;
}

.submenu-toggler i {
    float: right;
}

/* Main banner */
.main-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    padding-bottom: 3rem;
    background-color: black;
}

.main-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.3);
}

.main-banner .content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.main-banner .content h1 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.main-banner .content h1 span {
    margin: 0 0.5rem;
    color: white;
}

/* Theme btn */
.btn-holder {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.375rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 1);
}

/* Text appears from below */
.main-theme-btn::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    color: black;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

/* Hide original text by pushing it up */
.main-theme-btn:hover::after {
    transform: translateY(-100%);
}

.main-theme-btn:hover {
    background-color: #e5e5e5;
}

/* Hide the original text by moving it out */
.main-theme-btn {
    color: transparent;
}

.main-theme-btn::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

.main-theme-btn:hover::before {
    transform: translateY(-100%);
}

/* Theme btn */

/* Drinks Slider */
.energy-slider {
    text-align: center;
    background: #fff;
    padding: 40px 20px;
}

.energy-slider .heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4a200;
    margin-bottom: 30px;
}

.energy-slider .mySwiper {
    width: 100%;
    height: 500px;
    margin: auto;
}

.energy-slider .mySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
    filter: blur(2px);
    transform: scale(0.9);
    opacity: 0.6;
}

.energy-slider .swiper-slide .can-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.energy-slider .swiper-slide .can-name {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.energy-slider .mySwiper .swiper-slide-active {
    filter: none !important;
    transform: scale(1.15);
    opacity: 1;
}

.energy-slider .mySwiper .swiper-slide img {
    height: 350px;
    transition: transform 0.4s ease-in-out;
}

.energy-slider .swiper-button-prev,
.energy-slider .swiper-button-next {
    color: #000;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all .3s ease-in-out;
}


.energy-slider .swiper-button-prev:hover,
.energy-slider .swiper-button-next:hover {
    filter: invert(1);
}

.energy-slider .swiper-button-prev:after,
.energy-slider .swiper-button-next:after {
    font-size: 20px;
}

@media (max-width: 768px) {
    .energy-slider .mySwiper .swiper-slide img {
        height: 250px;
    }

    .energy-slider .heading {
        font-size: 1.8rem;
    }
}

/* Background img */
.fall25-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fall25-container img.fall25-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fall25-container .fall25-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 1;
}

section.fall25-container::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    ;
    position: absolute;
    top: 0;
    z-index: 0;
}

.fall25-container .fall25-overlay h2.fall25-title {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.15em;
    margin: 0 0 12px 0;
}

.fall25-container .fall25-overlay .fall25-btn-group {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.fall25-container .fall25-overlay .fall25-btn {
    background-color: white;
    color: black;
    border: 1px solid black;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.fall25-container .fall25-overlay .fall25-btn:hover,
.fall25-container .fall25-overlay .fall25-btn:focus {
    background-color: #f3f3f3;
    outline: none;
}

@media (max-width: 480px) {
    .fall25-container .fall25-overlay {
        max-width: 90%;
    }

    .fall25-container .fall25-overlay .fall25-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .fall25-container .fall25-overlay h2.fall25-title {
        font-size: 12px;
    }
}


/* Footer */
.main-footer {
    background-color: #a0a0a0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    padding: 1rem 0;
    width: 100%;
}

.inner-footer {
    width: 100%;
    position: relative;
}

.footer-section {
    border-right: 1px solid black;
    padding: 1rem;
    min-height: 100%;
}

.footer-section:last-child {
    border-right: none;
}

.footer-title {
    font-weight: normal;
    margin-bottom: 0.5rem;
    text-decoration: none;
    font-size: 12px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
    padding-bottom: 4.5rem;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links li a {
    color: black;
    text-decoration: underline;
    font-weight: normal;
    text-decoration: none;
    font-size: 12px;
}

.footer-links li a:hover,
.footer-links li a:focus {
    color: black;
    text-decoration: underline;
}

.footer-contact a {
    font-weight: 700;
    text-decoration: underline;
    color: black;
}

.footer-contact a:hover,
.footer-contact a:focus {
    color: black;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #a0a0a0;
    border-top: 1px solid black;
    text-align: center;
    font-size: 11px;
    padding: 0.5rem 0;
    font-family: Arial, sans-serif;
    color: black;
}

.icons-holder {
    position: relative;
    display: none;
}

@media only screen and (max-width: 1330px) {
    ul.top-header li {
        padding: 0 5px;
    }

    .top-header li a,
    .right-header li a {
        font-size: 11px;
    }
}

@media only screen and (max-width: 1190px) {
    .nav-flex {
        flex-wrap: wrap;
    }

    .left-links {
        order: 2;
        width: 100%;
        height: 45px;
        border-top: 1px solid black;
        display: flex;
        align-items: center;
        display: none;
    }

    .logoHolder {
        position: relative;
        height: 45px;
    }

    .icons-holder {
        width: 30%;
        display: flex;
        position: relative;
    }

    .main-header {
        height: 100%;
    }

    .right-links {
        display: none !important;
    }

    .top-header li a,
    .right-header li a {
        font-size: 12px;
    }

    ul.top-header li {
        padding: 0 8px;
    }

    /* Footer Accordion */
    .footer-title {
        cursor: pointer;
        position: relative;
        padding-right: 20px;
    }

    .footer-title::after {
        content: '\f078';
        /* FontAwesome down arrow */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 0;
    }

    .footer-section .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .footer-section.open .footer-links {
        max-height: 300px;
    }

    .footer-section.open .footer-title::after {
        content: '\f077';
        /* FontAwesome up arrow */
    }

    .inner-footer {
        margin: 0 auto;
    }

    .footer-section {
        padding: 17px;
        border: none;
        border-bottom: 1px solid black;
        width: 100%;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-links{
        padding-bottom: 0;
    }
}