/* -------------------------
    Font Face Imports
    ------------------------- */
@font-face {
    font-family: "Aghita";
    src: url('../fonts/Aghita.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Monument Grotesk";
    src: url('../fonts/MonumentGrotesk-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Trajan Pro";
    src: url('../fonts/TrajanPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Trajan Pro";
    src: url('../fonts/TrajanPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Yaro Op";
    src: url('../fonts/YaroOp.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Raleway&display=swap');

/* -------------------------
    Global Variables
    ------------------------- */
:root {
    /* Fonts */
    --font-primary: "Poppins", system-ui, sans-serif;
    --font-secondary: "Raleway", system-ui, sans-serif;
    --font-aghita: "Aghita", serif;
    --font-monument-grotesk: "Monument Grotesk", sans-serif;
    --font-trajan-pro: "Trajan Pro", serif;
    --font-yaro-op: "Yaro Op", serif;
    /* Colors */
    --color-accent: #00157d;
    --color-accent-2: #36454F;
    --color-light-text: #808080;
    --color-dim: #707070;
    --color-black: #000000;
    --color-light-black: #363636;
    --color-deep-black: #161616;
    --color-faint-black: #333333;
    --color-faint-black-2: #3A3334;
    --color-dark: #444444;
    --color-transparent: #FFFFFF00;
    --color-white: #FFFFFF;
    --color-white-fade: #FFFFFFFA;
    --color-shadow-gray: #C9C9C9;
    --color-off-white: #FEFEFE;
    --color-page-bg: #f5f5f5;
    --color-soft-gray: #D6D6D6;
    --color-line: #D9D9D9;
    --color-faint-bg: #ABABAB;
    --color-light-bg: #9B9B9B;
    --color-light-gray: #AFAFAF;
    --color-neutral-1: #717171;
    --color-muted-light: #DEDEDE;
    --color-muted-bg: #BEBEBE;
    --color-muted: #B5B5B5;
    --color-muted-dark: #565656;
    /* Sizes */
    --container-width: 1530px;
    --offcanvas-width: 430px;
    --spacing-gutter: 25px;
    --border-radius-base: 8px;
    --border-radius-mid: 14px;
    --border-radius-large: 40px;
    --banner-font-size: clamp(50px, 4.75vw, 90px);
    --font-size-h1: clamp(36px, 3.75vw, 70px);
    --font-size-h2: clamp(40px, 3vw, 55px);
    --font-size-h3: clamp(24px, 2.75vw, 36px);
    --font-size-h4: clamp(22px, 2.25vw, 30px);
    --font-size-h5: clamp(20px, 2vw, 26px);
    --font-size-lead: 18px;
    --font-size-body: 16px;
    --font-size-desc: clamp(19px, 1.5vw, 22px);
    /* Effects */
    --blur-bg: blur(8px);
    --shadow-card: 0 6px 22px rgba(15, 15, 15, 0.06);
    --shadow-btn-accent: 0 6px 18px rgba(233, 177, 85, 0.12);
    --z-header: 50;
    --z-overlay: 1500;
    --z-offcanvas: 2000;
}

/* -------------------------
    Base Reset
    ------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    background: var(--color-white);
    color: var(--color-black-1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    position: relative;
}

section {
    position: relative;
    padding: 80px 0;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

button {
    cursor: pointer;
}

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

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
    font-family: var(--font-aghita);
}

h3 {
    font-size: var(--font-size-h3);
}

p {
    line-height: 1.6;
}

/* =========================================
    Utility Classes
    ========================================= */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-gutter);
}

.container-full {
    max-width: 100%;
    padding: 0 calc(3 * var(--spacing-gutter));
}

.explore-btn {
    display: flex;
    margin: 0 auto;
    align-items: center;
    max-width: fit-content;
    padding: 10px 9px 10px 23px;
    background-color: var(--color-accent-2);
    color: var(--color-white);
    border-radius: 33px;
    font-weight: 400;
    height: 65px;
    text-decoration: none;
    font-size: 17px;
    gap: 17px;
    transition: background-color 0.3s, opacity 0.3s;
}

.explore-btn.white {
    background-color: var(--color-white);
    color: var(--color-black);
}

.explore-btn:hover {
    background-color: var(--color-accent);
}

.explore-btn.white:hover {
    background-color: var(--color-accent-2);
    color: var(--color-white);
}

.explore-btn .arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}

.explore-btn:hover .arrow {
    transform: rotateZ(30deg);
}

.arrow-link {
    opacity: 0;
    position: absolute;
    bottom: 125px;
    right: 45px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-primary);
    transition: 0.3s ease-in-out;
}

.arrow-link:hover {
    background: var(--color-page-bg);
}

/* Hero Section start */
section.hero {
    padding: 0;
    height: 100%;
}

.hero.inner {
    height: 100%;
    max-height: clamp(50vh, 50vw, 800px);
    background-position: center;
    background-size: cover;
}

video.hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    z-index: 2;
}

.hero-text h1 {
    text-align: center;
    font-family: var(--font-aghita);
    font-size: var(--banner-font-size);
}

/* Hero Section end */

/* Intro Start */
.intro-content {
    background-color: var(--color-off-white);
    padding: 80px 0;
    text-align: center;
}

.intro-text {
    max-width: 1090px;
    margin: 0 auto;
}

.intro-text .lead {
    font-size: var(--font-size-lead);
    margin-bottom: 30px;
}

.logo-box {
    max-width: 714px;
    margin: 0 auto 40px;
    display: block;
    position: relative;
}

.logo-box img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
}

.logo-box::after {
    content: '';
    position: relative;
    display: block;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: clamp(100px, 10vw, 220px);
    background-color: var(--color-dim);
}

/* Intro End */

/* =========================================
    Why Choose Shot Section
    ========================================= */
.why-choose-shot-section {
    padding: 80px 0;
    background-color: var(--color-page-bg);
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-aghita);
    font-size: var(--font-size-h2);
    line-height: 1;
    font-weight: 400;
    color: var(--color-light-black);
    margin-bottom: 20px;
}

.section-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95em;
    padding: 0 20px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.reason-card {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--color-white);
}

.card-title {
    font-family: var(--font-yaro-op);
    font-size: var(--font-size-h3);
    line-height: 1.2;
    font-weight: 400;
    max-width: 242px;
    margin: 0 auto 25px;
}

@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2.5em;
    }

    .reason-card {
        height: 400px;
    }
}

/* =========================================
    Our Menu Section
    ========================================= */
.our-menu-section,
.product-section {
    padding: 80px 0 100px;
    background-color: var(--color-background-light);
    font-family: var(--font-sans);
    overflow: hidden;
}

.menu-header-container {
    max-width: var(--container-width);
    margin: 0 auto 60px;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.menu-header-container .menu-text-content {
    text-align: left;
}

.menu-header-container .explore-btn {
    margin: 0 0 20px auto;
}

.top-selling {
    font-size: 0.85em;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.menu-title {
    font-family: var(--font-aghita);
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
}

.explore-menu-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--color-accent);
    color: var(--color-light-text);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 700;
    transition: background-color 0.3s, opacity 0.3s;
}

.explore-menu-btn:hover {
    background-color: #333;
    opacity: 0.9;
}

.explore-menu-btn .arrow {
    margin-left: 10px;
    font-size: 1.2em;
    line-height: 1;
    color: var(--color-light-text);
    font-weight: 400;
}

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

.offcanvas-nav ul li,
.offcanvas-contact a,
.offcanvas-gallery img,
.offcanvas-bottom a,
.offcanvas-image-collage img {
    opacity: 0;
    transform: translateY(20px);
}

.is-open .animate-stagger {
    animation-name: staggerFadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}


@media screen and (max-width: 767px) {
    .menu-header-container .explore-btn {
        margin: 20px auto 0;
    }
}

/* =========================================
    Transparent Header Styling
    ========================================= */
.site-header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    color: var(--color-light-text);
    background: var(--color-accent);
    box-sizing: border-box;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    color: var(--color-white);
}

.header-right {
    justify-content: flex-end;
}

.header-logo-centered {
    flex: 1;
    text-align: center;
}

.header-logo-centered a {
    display: flex;
    max-width: 135px;
    margin: 0 auto;
    text-decoration: none;
}

.header-logo-centered a img {
    max-width: 100%;
    width: 100%;
}

.header-products-text {
    font-family: var(--font-primary);
    font-size: 1em;
    font-weight: 500;
}

.search-icon {
    color: var(--color-white);
	visibility: hidden;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 6px;
}

.hamburger-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger-btn span:first-child {
    width: 24px;
}

.hamburger-btn span:last-child {
    width: 18px;
}

/* =========================================
    Off-Canvas Menu Styling
    ========================================= */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    max-height: 600px;
    background: var(--color-white);
    z-index: var(--z-offcanvas);
    display: grid;
    grid-template-rows: auto 1fr auto;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

/* Active state */
.offcanvas-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.offcanvas-open {
    overflow: hidden;
}

.offcanvas-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.offcanvas-logo {
    max-width: 222px;
}

.close-menu-btn {
    font-family: var(--font-primary);
    font-size: 3em;
    font-weight: 200;
    color: var(--color-text-dark);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.offcanvas-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0;
}

.offcanvas-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.socials {
    display: flex;
    gap: 12px;
}

.offcanvas-image-collage {
    position: relative;
}

.offcanvas-image-collage img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.collage-img-1 {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.collage-img-2 {
    position: absolute;
    width: 250px;
    height: auto;
    object-fit: cover;
    bottom: -60px;
    right: 20px;
    z-index: 2;
}

.offcanvas-contact {
    display: flex;
    gap: 40px;
    font-family: var(--font-primary);
    color: var(--color-faint-black-2);
}

.offcanvas-contact a {
    display: flex;
    align-items: center;
}

.offcanvas-contact a img {
    max-width: 20px;
    margin-right: 10px;
}

.offcanvas-right {
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 100%;
}

nav.offcanvas-nav {
    width: 285px;
    flex: 1 0 auto;
}

.offcanvas-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.offcanvas-nav li a {
    font-family: var(--font-aghita);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: var(--color-deep-black);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.offcanvas-nav li a:hover {
    color: var(--color-accent);
}

.offcanvas-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    place-content: start;
    flex: 0 1 auto;
}

.offcanvas-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.offcanvas-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-family: var(--font-primary);
    padding-bottom: 10px;
}

.offcanvas-bottom a {
    color: #777;
    text-decoration: none;
}

.offcanvas-bottom a:hover {
    color: var(--color-text-dark);
}

@media (max-width: 900px) {
    .offcanvas-main {
        grid-template-columns: 1fr;
    }

    .offcanvas-left {
        display: none;
    }

    .offcanvas-nav li a {
        font-size: 2em;
    }

    .offcanvas-top {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .site-header-transparent {
        padding: 15px 20px;
    }

    .offcanvas-top {
        margin-top: 0;
    }

    .header-products-text {
        display: none;
    }

    .offcanvas-right {
        flex-direction: column;
        gap: 0;
    }

    .offcanvas-menu {
        padding: 20px 0px;
        max-height: 100vh;
    }

    .offcanvas-gallery {
        grid-template-columns: repeat(3, 1fr);
		max-width: 320px;
    }
    
    .offcanvas-bottom {
        flex-direction: column;
    }
}

/* =========================================
    Menu Slider Customization
    ========================================= */
.menu-slider {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
    overflow: visible;
}

.menu-slider .swiper-slide {
    width: 450px;
    transition: transform 0.3s ease;
}

.menu-slider .swiper-slide-active {
    transform: scale(1.2);
    z-index: 10;
}

.menu-slider .swiper-slide-next,
.menu-slider .swiper-slide-prev {
    transform: scale(0.95);
}

.menu-slider .swiper-slide-next+.swiper-slide,
.menu-slider .swiper-slide-prev~.swiper-slide {
    transform: scale(0.9);
}

.menu-item-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    cursor: pointer;
}

.menu-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.item-overlay {
    position: absolute;
    bottom: 55px;
    border-radius: 20px;
    left: 5%;
    width: 90%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: var(--color-light-text);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    opacity: 0;
    z-index: 5;
    box-sizing: border-box;
}

.menu-item-card:hover .item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.menu-item-card:hover img {
    transform: scale(1.03);
}

.item-name {
    font-size: 2em;
    font-family: var(--font-aghita);
    color: var(--color-white);
    margin-bottom: 10px;
}

.menu-item-card .price {
    font-size: 1.5em;
    margin-top: 20px;
    font-family: var(--font-trajan-pro);
    color: var(--color-white);
    margin-bottom: 15px;
}

.item-rating {
    font-size: 1.25em;
    color: #ffbb00;
}

.item-rating span {
    margin-right: 2px;
}

.item-rating span:last-child {
    color: #ccc;
}

.custom-swiper-pagination {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    text-align: center;
    font-size: 0.85em;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--color-accent);
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
    transform-origin: left;
    transition: transform 0.3s ease;
}

.custom-swiper-pagination .swiper-pagination-bullets {
    display: none;
}

.swiper-pagination-current {
    position: relative;
    z-index: 10;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 25px;
    margin-right: 3px;
}

.swiper-pagination-total {
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
    color: #888;
    margin-left: 3px;
}

.swiper-pagination-total::before {
    content: '/';
    position: relative;
    margin-right: 5px;
    color: #888;
}

@media (max-width: 1200px) {
    .menu-header-container {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .menu-text-content {
        text-align: center;
        margin-bottom: 20px;
    }

    .menu-title {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .menu-title {
        font-size: 2.5em;
    }

    .swiper-slide {
        width: 250px;
        /* Smaller slides on mobile */
    }

    .menu-item-card {
        height: 350px;
    }

    .item-name {
        font-size: 1.1em;
    }

    .item-rating {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .menu-title {
        font-size: 2em;
    }

    .swiper-slide {
        width: 200px;
    }

    .menu-item-card {
        height: 300px;
    }
}

/* =========================================
    Passion Section Styling
    ========================================= */
.passion-section {
    width: 100%;
    background-color: var(--color-off-white);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 80px 0;
}

.passion-content {
    max-width: 820px;
    text-align: left;
}

.passion-content .explore-btn {
    margin-left: 0;
}

.main-heading {
    line-height: 1.2;
    margin-bottom: 50px;
}

.description {
    font-family: var(--font-sans);
    font-size: 1em;
    color: var(--color-black);
    line-height: 1.7;
    margin-bottom: 50px;
}

.sub-heading {
    font-family: var(--font-sans);
    font-size: 1.1em;
    color: var(--color-accent);
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .passion-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .passion-image {
        grid-row: 1;
        min-height: 300px;
    }

    .passion-content {
        grid-row: 2;
        padding: 40px 20px;
        text-align: center;
        max-width: 100%;
    }

    .main-heading {
        font-size: 2.5em;
    }

    .learn-more-btn {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .passion-content .explore-btn {
        margin: 0 auto;
    }

    .passion-content {
        background: #ffffff94;
        border-radius: 30px;
        backdrop-filter: blur(10px);
    }
}

/* =========================================
    Testimonial Section
    ========================================= */
.testimonial-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: var(--font-sans);
    position: relative;
}

.testimonial-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.pre-title {
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.swiper-slide {
    text-align: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-icon {
    width: 55px;
    height: 40px;
    color: var(--color-secondary-blue);
    margin-bottom: 20px;
}

.quote-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.6;
    max-width: 612px;
    margin: 0 auto 30px;
}

.author-info {
    margin-top: 10px;
}

.author-image-blob {
    width: 106px;
    height: 82px;
    margin: 0 auto 15px;
}

.author-image-blob:hover {
    transform: scale(1.05);
}

.author-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-name {
    color: var(--color-black);
    margin: 0;
    opacity: 0.6;
}

.author-title {
    font-size: 0.9em;
    color: var(--color-black);
    margin-top: 4px;
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    color: #000;
}

.testimonial-prev {
    left: 20px;
}

.testimonial-next {
    right: 20px;
}

.testimonial-prev::after,
.testimonial-next::after {
    font-family: monospace;
    font-size: 52px;
    font-weight: 400;
    content: '<';
}

.testimonial-next::after {
    content: '>';
}

.testimonial-pagination {
    position: relative;
    margin-top: 50px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d0d0d0;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    width: 54px;
    border-radius: 5px;
    background-color: var(--color-accent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5em;
    }

    .quote-text {
        font-size: 1.2em;
    }

    .testimonial-prev {
        left: 10px;
    }

    .testimonial-next {
        right: 10px;
    }

    .testimonial-prev::after,
    .testimonial-next::after {
        font-size: 2em;
    }
}

/* =========================================
    Gallery and Logo Container Styling
    ========================================= */
.visual-gallery-section {
    padding: 0;
    text-align: center;
    background-color: #ffffff;
}

/* .gallery-container {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
} */

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.logo-slider-area {
    padding: 40px 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.logo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-list li {
    padding: 0 10px;
    max-width: 200px;
    height: auto;
}

.logo-list li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.logo-list li img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* @keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
} */

/* .image-gallery {
    display: flex;
    gap: 20px;
    width: 200%;
    animation: scrollLeft 30s linear infinite;
}

.gallery-item {
    flex: 1 0 12.5%;
    max-width: 12.5%;
    overflow: hidden;
}

.image-gallery:hover {
    animation-play-state: paused;
} */

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-list {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logo-list:hover {
    animation-play-state: paused;
}

.logo-slider-area {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

@media (max-width: 1200px) {
    /* .image-gallery {
        overflow-x: scroll;
        padding-bottom: 10px;
    } */

    /* .gallery-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    } */
}

@media (max-width: 768px) {

    /* .gallery-item {
        flex: 0 0 50%;
        max-width: 50%;
    } */

    .logo-slider-area {
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {

    /* .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    } */

    .logo-list li {
        max-width: 90px;
    }
}



/* =========================================
    Footer Styling
    ========================================= */
.site-footer {
    padding: 80px 0 40px;
    background-color: var(--color-background-footer);
    font-family: var(--font-sans);
    text-align: center;
    overflow: hidden;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    max-width: 396px;
    margin: 0 auto 50px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-social a {
    text-decoration: underline;
    font-family: var(--font-monument-grotesk);
    opacity: 0.75;
    color: var(--color-accent);
    font-size: var(--font-size-lead);
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--color-brand-blue);
}

.footer-social {
    margin-bottom: 60px;
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    position: relative;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
    color: var(--color-black);
}

.footer-legal a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.scroll-to-top {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    right: -55px;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-50%) scale(1.05);
    background-color: #0a215c;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* --- Responsiveness --- */
@media (max-width: 768px) {
    .footer-logo {
        font-size: 4em;
    }

    .footer-nav ul {
        gap: 15px 20px;
        margin-bottom: 40px;
    }

    .footer-social {
        margin-bottom: 50px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-to-top {
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 1.3em;
    }
}

/* Menu page Menu section */
.menu-section .menu-title {
    text-align: center;
    margin-bottom: 20px;
}

/* Scrollable category buttons */
.category-scroll {
    overflow-x: auto;
    margin-bottom: 25px;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.category-scroll:hover {
    scrollbar-color: #aaa transparent;
}

.category-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 20px;
}

.category-scroll:hover::-webkit-scrollbar-thumb {
    background: #aaa;
}

.category-wrapper {
    display: flex;
    gap: 10px;
    width: max-content;
}

.cat-btn {
    padding: 10px 25px;
    color: var(--color-accent-2);
    border-radius: 40px;
    border: 1px solid var(--color-accent-2);
    background: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--color-accent-2);
    color: #fff;
    border-color: var(--color-accent-2);
}

/* Product grid */
.product-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-grid.active-tab {
    display: grid !important;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    transition: .3s;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-card h4 {
    font-size: var(--font-size-h5);
    font-family: var(--font-aghita);
    padding: 12px 15px 3px;
    font-weight: 600;
    color: var(--color-light-black);
}

.product-card .price {
    font-family: var(--font-aghita);
    font-size: var(--font-size-h4);
    color: var(--color-light-black);
    padding: 0 15px 12px;
}

/* Responsive */
@media(max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Product grid */
.product-section .product-card {
    border: none;
    overflow: hidden;
}

.product-section .product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-section .product-info {
    padding: 12px 0;
}

.product-section .title-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-section .title-rating h4 {
    font-size: var(--font-size-h5);
    padding: 0;
    font-weight: 400;
    margin: 0 0 5px;
    color: #222;
}

.product-section .price {
    font-size: var(--font-size-lead);
    font-family: var(--font-primary);
    color: #555;
    padding: 0;
}

/* contact */
.contact-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    max-width: 600px;
}

.sub-title {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-dim);
    font-weight: 500;
    text-transform: uppercase;
}

.contact-heading {
    font-family: var(--font-aghita);
    font-size: var(--font-size-h3);
    color: var(--color-faint-black-2);
    margin: 20px 0;
    line-height: 1.3;
}

.contact-desc {
    font-size: var(--font-size-body);
    color: var(--color-light-black);
    max-width: 500px;
    margin-block: 40px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    gap: 35px;
    margin-top: 20px;
    font-size: var(--font-size-body);
    color: var(--color-black);
}

.contact-info i {
    font-style: normal;
    margin-right: 8px;
}

/* FORM SIDE */
.contact-right {
    max-width: 735px;
    flex: 1;
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 50px;
    border: 1px solid var(--color-soft-gray);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    outline: none;
    transition: .2s;
}

.contact-form textarea {
    height: 230px;
    border-radius: 20px;
    resize: none;
    margin-block: 25px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a img {
    max-width: 20px;
}

.submit {
    border: 0;
    margin-left: 0;
}

/* MOBILE */
@media(max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* The main map container */
.map-section {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

/* The map image itself */
.map-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    /* Slightly faded as in the example */
}

/* Wrapper for a single pointer + its popover */
.map-pointer-wrapper {
    position: absolute;
    z-index: 2;
}

/* The clickable pointer (the dark circle) */
.map-pointer {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 3%, rgba(30, 45, 59, 1) 7%, rgba(0, 0, 0, 1) 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translate(-50%, -50%);
    padding: 0;
}

/* Pulsing animation */
/*.map-pointer::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: #1e2d3b;*/
/*    border-radius: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    opacity: 0.7;*/
/*    z-index: -1;*/
/*    animation: pulse 2s infinite;*/
/*}*/

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* --- Popover Styling (Desktop) --- */
.map-popover {
    position: absolute;
    bottom: 0;
    left: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 7px 10px;
    width: 138px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: left;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-popover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-100%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
}

/* Popover content */
.map-popover h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.map-popover a {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: underline;
    font-weight: 500;
}

.map-popover a:hover {
    color: #0a58ca;
}

/* Close button (only visible on mobile) */
.close-popover {
    display: none;
}

/* --- Active State (Toggled by JS) --- */
.map-pointer-wrapper.active .map-popover {
    opacity: 1;
    visibility: visible;
    z-index: 1001;
}

/* --- Mobile Overlay --- */
.map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.map-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {

    .map-popover {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85vw;
        max-width: 300px;
        bottom: auto;
        padding: 20px;
    }

    .map-popover::after {
        display: none;
    }

    .close-popover {
        display: block;
        position: absolute;
        top: 5px;
        right: 10px;
        font-size: 1.5em;
        color: #aaa;
        background: none;
        border: none;
        cursor: pointer;
    }
}

/* --- Locations Section Styling --- */
.locations-section {
    padding: 0 0 80px;
    background-color: #fdfdfd;
}

.locations-slider {
    width: 100%;
    max-width: 1720px;
    padding-left: 20px;
    margin-right: 0;
    padding-bottom: 50px;
}

.location-card {
    background-color: #fff;
    overflow: hidden;
    height: 100%;
}

.card-image-container {
    position: relative;
    border-radius: var(--border-radius-base);
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-image-container a.explore-btn.white {
    position: absolute;
    z-index: 1;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 215px;
}

/* --- Card Content Styling --- */
.location-card .card-content {
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-primary);
}

.location-card .card-title {
    font-size: var(--font-size-desc);
    font-weight: 400;
    color: var(--color-deep-black);
    font-family: var(--font-aghita);
    margin: 0 0 5px 0;
}

.location-card .card-location {
    color: var(--color-faint-black);
    margin: 0;
}

.location-card hr {
    border: 0;
    border-top: 1px solid var(--color-dim);
    margin: 15px 0;
}

.info-heading {
    font-size: var(--font-size-desc);
    font-weight: 400;
    color: var(--color-deep-black);
    font-family: var(--font-aghita);
    margin: 0 0 10px 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    color: var(--color-faint-black);
    margin-bottom: 5px;
}

.info-row span:first-child {
    color: var(--color-text-light-grey);
}

/* --- Custom Swiper Pagination --- */
.location-pagination {
    position: static;
    margin-top: 30px;
}

.location-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d0d0d0;
    opacity: 1;
    transition: all 0.3s ease;
}

.location-pagination .swiper-pagination-bullet-active {
    /* Create the pill shape */
    width: 40px;
    border-radius: 5px;
    background-color: var(--color-accent);
}

/* Alt Grid */
/* --- Stats Grid Container --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 480px;
    width: 100%;
    max-width: 100%;
}

/* --- Grid Item Styling --- */
.grid-item {
    /* overflow: hidden; */
    /* Uncomment if images get weird */
    box-sizing: border-box;
}

/* Styling for the text tiles */
.grid-item-text {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Styling for the image tiles */
.grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Text Content Styling --- */
.stat-number {
    font-family: var(--font-monument-grotesk);
    font-size: clamp(18px, 3.5vw, 45px);
    font-weight: 500;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1px #cccccc;
    text-stroke: 1px #cccccc;
}

/* The main label */
.stat-label {
    font-family: var(--font-primay);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 500;
    color: #1e1e2c;
    margin-top: 10px;
}

/* --- Responsiveness --- */

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .stat-number {
        font-size: 4em;
    }

    .stat-label {
        font-size: 1.5em;
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .grid-item-text {
        min-height: 200px;
    }

    .grid-item-image {
        height: 300px;
    }

    .grid-item:nth-child(2) {
        order: 2;
    }

    .grid-item:nth-child(3) {
        order: 3;
    }

    .grid-item:nth-child(4) {
        order: 4;
    }

}

/* --- Main Grid Container --- */
.about-grid-section {
    display: grid;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    margin-top: clamp(20px, 4vw, 60px);
}

/* --- Grid Item Styling --- */
.grid-item {
    overflow: hidden;
    /* Clips the image */
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the container */
}

/* --- Specific Item Placement --- */

/* Item 1: Left Image (spans 2 rows) */
.grid-item-1 {
    grid-row: 1 / span 2;
    margin-bottom: 40px;
    /* Start at row 1, span 2 rows */
}

/* Item 2: Text Box (spans 2 rows) */
.grid-item-2 {
    grid-row: 1 / span 2;
    background-color: var(--color-accent-2);
    color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
}

/* Item 3: Barista Image (spans 2 rows) */
.grid-item-3 {
    grid-row: 1 / span 2;
    margin-bottom: 40px;
}

/* Item 4: Top-right image (auto-places in col 4, row 1) */
.grid-item-4 {
    /* No special rules needed */
}

/* Item 5: Bottom-right image (auto-places in col 4, row 2) */
.grid-item-5 {
    /* No special rules needed */
}

/* --- Text Box Content --- */
.about-content h2 {
    font-family: var(--font-aghita);
    font-size: var(--font-size-h4);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.6;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.grid-item .about-content .explore-btn {
    margin: 40px 0 0;
}

.grid-item .about-content .explore-btn:hover {
    background-color: var(--color-light-black);
}

/* --- Responsiveness --- */

/* Tablet (2 columns) */
@media (max-width: 992px) {
    .about-grid-section {
        /* 2 columns, auto rows */
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 350px;
        /* Set a consistent row height */
    }

    /* Make all items take 1 column */
    .grid-item-1,
    .grid-item-2,
    .grid-item-3,
    .grid-item-4,
    .grid-item-5 {
        grid-row: auto / span 1;
        margin-bottom: 0;
        /* Reset row span */
    }

    /* Manually set the 2-row spans for a nice layout */
    .grid-item-1 {
        grid-row: span 2;
    }

    /* Tall image */
    .grid-item-2 {
        grid-row: span 2;
    }

    /* Text */
    .grid-item-3 {
        grid-row: span 2;
    }

    /* Tall image */
    .grid-item-4 {
        grid-row: span 1;
    }

    /* Small image */
    .grid-item-5 {
        grid-row: span 1;
    }

}

/* Mobile (1 column) */
@media (max-width: 600px) {
    .about-grid-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-rows: auto;
    }

    .grid-item-1,
    .grid-item-2,
    .grid-item-3,
    .grid-item-4,
    .grid-item-5 {
        grid-row: auto / span 1;
        height: auto;
        margin-bottom: 0;
    }

    /* Give image-only items a fixed height on mobile */
    .grid-item-1,
    .grid-item-3,
    .grid-item-4,
    .grid-item-5 {
        height: 350px;
    }

    .about-content {
        padding: 30px 20px;
    }
}

/* --- Section Container --- */
.experiences-section {
    text-align: center;
}


.pre-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    color: var(--color-black);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-title {
    font-family: var(--font-aghita);
    font-weight: 400;
    color: var(--color-deep-black);
    margin: 0;
}

.main-title span {
    color: var(--color-accent);
}

/* --- Grid Layout --- */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* --- Experience Card --- */
.experience-card {
    background-color: #ffffff;
    border: 1px solid var(--color-light-bg);
    border-radius: 12px;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.experience-card .card-content {
    padding: 30px;
    display: grid;
    place-items: center;
}

.experience-card .card-title {
    font-family: var(--font-yaro-op);
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 15px 0;
}

.experience-card .card-description {
    font-family: var(--font-primary);
    color: var(--color-black);
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.experience-card .card-image {
    margin-top: auto;
    padding: 10px;
}

.experience-card .card-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    height: auto;
    display: block;
    border-radius: 8px;
}


.team-section-container {
    width: 100%;
}

.section-title {
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

/* --- The Grid --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* --- The Card --- */
.team-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1.25;
    background: #676767;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* --- The Details Overlay --- */
.card-details {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-details h3 {
    font-family: var(--font-yaro-op);
    font-size: 1.25em;
    font-weight: 500;
    color: #111;
    margin: 0 0 5px 0;
}

.card-details p {
    font-size: 0.85em;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* --- The Hover Interaction --- */

.team-card:hover .card-details {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover img {
    transform: scale(1.05);
}
/* --- Responsiveness --- */

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .card-details {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (min-width: 991px) {
	section.about-block {
		margin: 50px 0;
	}
}

@media screen and (min-width: 1200px) {
	.offcanvas-gallery img {
		height: 145px;
	}
}



