@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');

/* Add transition styles for table-container globally */
.table-container {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.table-container.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Existing global styles (unchanged) */
body {
    font-family: "Nata Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #ffff;
    background-color: #ffff;
    overflow-x: hidden;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
    margin: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: none;
}

/* Cursor Styles */
.cursor,
.cursor2,
.cursor3 {
    position: fixed;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    left: -100px;
    top: 50%;
    mix-blend-mode: difference;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.cursor {
    background-color: #fff;
    height: 0;
    width: 0;
    z-index: 99999;
}

.cursor2,
.cursor3 {
    height: 36px;
    width: 36px;
    z-index: 99998;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.cursor2.hover,
.cursor3.hover {
    -webkit-transform: scale(2) translateX(-25%) translateY(-25%);
    transform: scale(2) translateX(-25%) translateY(-25%);
    border: none;
}

.cursor2 {
    border: 2px solid #fff;
    -webkit-box-shadow: 0 0 22px rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.6);
}

.cursor2.hover {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1200px) {

    .cursor,
    .cursor2,
    .cursor3 {
        display: none;
    }
}


.cd-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: transparent;
}

.header-wrapper {
    position: relative;
    width: calc(100% - 100px);
    margin-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.nav-but-wrap {
    position: relative;
    padding-left: 15px;
    padding-top: 15px;
    margin-top: 26px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu-icon {
    height: 30px;
    width: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: block;
}

/* Default = black (for Instagram, Angebote, Öffnungszeiten) */
.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: #000;
    margin-bottom: 7px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, width 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, width 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, width 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, width 0.2s ease, -webkit-transform 0.2s ease;
}

.menu-icon__line-left,
.menu-icon__line-right {
    width: 16.5px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
    width: 30px;
}

/* White lines when in hero, philosophie, additional carousel */
body.dark-nav .menu-icon__line {
    background-color: #fff !important;
}

body.dark-nav .menu-icon:hover .menu-icon__line-left,
body.dark-nav .menu-icon:hover .menu-icon__line-right {
    background-color: #fff !important;
}



.nav {
    position: fixed;
    z-index: 98;
}

.nav:before,
.nav:after {
    content: "";
    position: fixed;
    top: 20px;
    left: 50px;
    width: 0;
    height: 0;
    background-color: rgba(20, 21, 26, 0.5);
    border-bottom-right-radius: 200%;
    z-index: -1;
    -webkit-transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}

.nav:after {
    background-color: rgba(17, 17, 17, 0.7);
    -webkit-box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
    box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.nav:before {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.nav__content {
    position: fixed;
    visibility: hidden;
    top: 90px;
    left: 50px;
    width: 280px;
    text-align: left;
}

.nav__list {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.nav__list-item {
    position: relative;
    display: block;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
    opacity: 0;
    text-align: left;
    color: #fff;
    overflow: hidden;
    font-family: "Nata Sans", sans-serif;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 2px;
    -webkit-transform: translate(30px, 0%);
    transform: translate(30px, 0%);
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.2s ease, transform 0.3s ease;
    transition: opacity 0.2s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    margin-top: 7px;
    margin-bottom: 7px;
}

.nav__list-item a {
    position: relative;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    font-family: "Nata Sans", sans-serif;
    font-weight: 600;
    z-index: 2;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.nav__list-item a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 5px;
    height: 0;
    opacity: 0;
    background-color: #ddebca;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.nav__list-item a:hover:after {
    height: 100%;
    opacity: 1;
    top: 0;
}

.nav__list-item a:hover {
    color: #ddebca;
}

body.nav-active .nav {
    visibility: visible;
}

body.nav-active .nav__content {
    visibility: visible;
}

body.nav-active .menu-icon__line {
    background-color: #fff;
    -webkit-transform: translate(0px, 0px) rotate(-45deg);
    transform: translate(0px, 0px) rotate(-45deg);
}

body.nav-active .menu-icon__line-left {
    width: 15px;
    -webkit-transform: translate(2px, 4px) rotate(45deg);
    transform: translate(2px, 4px) rotate(45deg);
}

body.nav-active .menu-icon__line-right {
    width: 15px;
    float: right;
    -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
    transform: translate(-3px, -3.5px) rotate(45deg);
}

body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
    width: 15px;
}

body.nav-active .nav:before,
body.nav-active .nav:after {
    width: 250px;
    height: 500px;
    border-radius: 15px;
}

body.nav-active .nav:after {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

body.nav-active .nav:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

body.nav-active .nav__list-item {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
}

body.nav-active .nav__list-item:nth-child(1) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(2) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(3) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

body.nav-active .nav__list-item:nth-child(4) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

body.nav-active .nav__list-item:nth-child(5) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}

body.nav-active .nav__list-item:nth-child(6) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

body.nav-active .nav__list-item:nth-child(7) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}

body.nav-active .nav__list-item:nth-child(8) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}

/* Hero Carousel Styles */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

.carousel-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
    top: -20%;
    left: auto;
    -webkit-transform: none;
    transform: none;
}

.hero-logo {
    max-height: 180px;
    width: auto;
    margin-bottom: 0px;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.heading-2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact a {
    color: #fff;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    margin-top: 10px;
}

.contact a:hover {
    color: #ddebca;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: "Nata Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #ddebca;
    border-radius: 40px;
    margin-top: 10px;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.cta-button:hover {
    background-color: #ddebca;
    color: #000;
}

.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 30px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ddebca;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: none;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    /* Smooth hover */
}

.hero .carousel-btn.prev {
    left: 20px;
}

.hero .carousel-btn.next {
    right: 20px;
}

.additional-carousel .carousel .carousel-btn.prev {
    left: 20px;
}

.additional-carousel .carousel .carousel-btn.next {
    right: 20px;
}

/* Play Toggle Button */
.play-toggle {
    position: fixed;
    bottom: 30px;
    left: 95%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(221, 235, 202, 0.8);
    border: 2px solid #ddebca;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.3s ease, -webkit-transform 0.3s ease;
    transition: all 0.3s ease, -webkit-transform 0.3s ease;
    transition: all 0.3s ease, transform 0.3s ease;
    transition: all 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-toggle:hover {
    background: #ddebca;
    -webkit-transform: translateX(-50%) scale(1.1);
    transform: translateX(-50%) scale(1.1);
}

.play-toggle i {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    /* Hidden by default */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.video-overlay.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* Show when open */
}

.video-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Update .hero-video for better responsiveness on large screens */
.hero-video {
    width: 90%;
    max-width: 900px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 9999;
}

/* Ensure close button stays relative to container */
.close-video {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.close-video:hover {
    opacity: 0.7;
}



/* GSAP Grid Animation Styles */
.home__gallery {
    position: relative;
    width: 100%;
    height: 120vh;
    background: #ffff;
    overflow: hidden;
}

.grid_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.gallery_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 20%;
}

.gallery_column_3 {
    position: relative;
    z-index: 2;
}

.item {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
}

.item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

/* Specific column adjustments */
.gallery_column_1,
.gallery_column_5 {
    margin-top: 100px;
}

.gallery_column_2,
.gallery_column_4 {
    margin-top: 200px;
}

.gallery_column_3 {
    margin-top: 0;
}



/* Services Section Styles */
.services {
    padding: 60px 20px;
    background-color: #ffff;
    color: #ffff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.services h2 {
    font-family: "Nata Sans", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: black;
    width: 100%;
}

.table-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 80%;
    height: auto;
    overflow: hidden;
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 250px;
    margin-right: 20px;
}

.tab-link {
    padding: 10px 20px;
    background-color: #ddebca;
    color: black;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: "Nata Sans", sans-serif;
    font-size: 1.1rem;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: left;
    width: 100%;
}

.tab-link:hover {
    background-color: black;
    color: white;
}

.tab-link.active {
    background-color: black;
    color: white;
}

.tab-content {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
}

.tab-panel {
    display: none;
    text-align: left;
    width: 100%;
}

.tab-panel.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
    background: none;
}

table th,
table td {
    padding: 12px 15px;
    text-align: center;
    font-family: "Nata Sans", sans-serif;
    font-size: 1.1rem;
}

table th {
    background: #ddebca;
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

table td {
    background-color: rgba(221, 235, 202, 0.8);
    color: black;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

table tr:hover td {
    background-color: black;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    color: white;
}

table tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

table tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/* Image Overlay Styles */
.image-overlay {
    position: relative;
    width: 100%;
    height: 275px;
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.image-overlay img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.image-overlay .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.image-overlay .overlay-text h3 {
    font-family: "Nata Sans", sans-serif;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
    width: 60%;
    font-weight: 400;
}


/* Add transition styles for table-container and hours-container globally */
.table-container,
.hours-container {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.table-container.visible,
.hours-container.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.scroll-indicator {
    display: none;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000;
    font-size: 0.9rem;
    font-family: "Nata Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.7;
    -webkit-animation: pulse-scroll 2s infinite ease-in-out;
    animation: pulse-scroll 2s infinite ease-in-out;
}

@-webkit-keyframes pulse-scroll {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes pulse-scroll {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}



body.dark-nav .menu-icon__line {
    background-color: #fff !important;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

body.dark-nav .menu-icon:hover .menu-icon__line-left,
body.dark-nav .menu-icon:hover .menu-icon__line-right {
    background-color: #fff;
    -webkit-transition: background-color 0.3s ease, width 0.2s ease;
    transition: background-color 0.3s ease, width 0.2s ease;
}


.menu-icon__line {
    height: 2px;
    width: 30px;
    display: block;
    background-color: black;
    margin-bottom: 7px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, width 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, width 0.2s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, width 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, width 0.2s ease, -webkit-transform 0.2s ease;
}


.hours-container {
    margin-top: 4rem;
    width: 80%;
    max-width: 100%;
    margin-bottom: 4rem;
}

.hours-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #ddebca;
}

.hours-container table td {
    padding: 12px 15px;
    text-align: left;
    font-family: "Nata Sans", sans-serif;
    font-size: 1.1rem;
    color: black;
    background-color: #ddebca;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.hours-container table tr:hover td {
    background-color: black;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.hours-container table tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

.hours-container table tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

.hours-container table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.hours-container table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}


/* Instagram Posts */

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    padding: 2rem 1rem;
    background-color: #ddebca;
}

.instagram-media {
    width: 100% !important;
    max-width: 540px;
    border-radius: 12px !important;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: #fff;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.instagram-card {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: all 1.5s ease;
    transition: all 1.5s ease;
}

.instagram-card.slide-in {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}



/* Sticky Carousel Styles */
.additional-carousel {
    background-color: #ffffff;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.additional-carousel:before {
    width: 50vw;
    height: 50vw;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    background: #ddebca;
    border-radius: 760px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0.3;
    -webkit-filter: blur(270px);
    filter: blur(270px);
    content: '';
    pointer-events: none;
    will-change: transform;
}

.additional-carousel h1 {
    color: #000000;
    background-image: none;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
}

.additional-carousel .container.sticky {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.additional-carousel .row.align-items-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 80vh;
}

.additional-carousel .slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 55px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.additional-carousel .carousel__slider {
    position: relative;
    width: 100%;
    min-height: 440px;
}

.additional-carousel .carousel__item {
    width: 100%;
    min-height: 440px;
    padding: 0;
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 30px;
    position: absolute;
    top: 0%;
    opacity: 0;
    overflow: hidden;
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.additional-carousel .carousel-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: none;
    overflow: hidden;
    border-radius: 16px;
}

.additional-carousel .carousel-image-overlay img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.additional-carousel .carousel-image-overlay .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.additional-carousel .carousel-image-overlay .overlay-text h2 {
    color: #ddebca;
    margin-bottom: 15px;
    font-weight: 700;
}

.additional-carousel .carousel-image-overlay .overlay-text h3 {
    color: #ffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.additional-carousel .carousel-image-overlay .overlay-text p {
    color: #ffff;
    font-weight: 400;
}

.additional-carousel .carousel__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.additional-carousel .carousel__nav__item {
    background: #ddebca;
    /* Your third color */
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.additional-carousel .carousel__nav__item:hover {
    background: #000000;
    /* Black on hover */
    border-color: #000000;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* Active state for navigation dots */
.additional-carousel .carousel__nav__item.active {
    background: #000000;
    /* Black for active dot */
    border-color: #000000;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}





/* Transition styles for table-container, hours-container, and philosophy-content globally */
.table-container,
.hours-container,
.philosophy-content {
    opacity: 0;
    /* Start invisible */
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    /* Start slightly below */
    -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
    /* Smooth fade-in and slide-up */
}

.table-container.visible,
.hours-container.visible,
.philosophy-content.visible {
    opacity: 1;
    /* Fade in */
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Philosophy and History Section Styles */
.philosophy-history {
    padding: 60px 20px;
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23ddebca' fill-opacity='0.2'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: auto;
}

.philosophy-history h2 {
    font-family: "Nata Sans", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.philosophy-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80%;
    max-width: 100%;
    gap: 40px;
}

.philosophy-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
    font-family: "Nata Sans", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
}

.philosophy-text p {
    margin: 0 0 20px;
}

.philosophy-text p em {
    color: #ddebca;
    font-style: italic;
}

.philosophy-image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 600px;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    -o-object-fit: cover;
    object-fit: cover;
}


/* Footer Styles */
.footer {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-logo {
    max-height: 100px;
    width: auto;
    margin-bottom: 30px;
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 60px;
}

.footer-links a {
    margin: 0;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #ddebca;
}

/* Google Maps Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 100% auto 0;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    height: 600px;
    position: relative;
    border-radius: 20px;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: opacity 0.3s ease, margin-top 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, margin-top 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease, -webkit-transform 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-content.active {
    margin-top: 15%;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.close-modal {
    color: #000;
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    position: absolute;
    top: -15px;
    right: 10px;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
}

/* Ensure iframe in map modal doesn't scroll unnecessarily */
#map-modal .modal-content {
    overflow: hidden;
    /* No scroll for map */
    max-height: none;
    /* Full height for map */
}


/* Modal Text Styles */
.modal-text {
    padding: 20px 0;
    text-align: left;
    color: #000;
    font-family: "Nata Sans", sans-serif;
    line-height: 1.6;
}

.modal-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
}

.modal-text h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #000;
}

.modal-text p {
    margin-bottom: 15px;
    color: #333;
}

.modal-text a {
    color: #000;
    text-decoration: underline;
}

.modal-text a:hover {
    color: #ddebca;
}


/* Hero Section Styles */
.news-hero {
    position: relative;
    height: 100vh;
    background-image: url('/images/news_bg.jpg');
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

.news-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.news-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #ddebca;
    text-align: left;
}

.news-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
}



.jobs-hero {
    position: relative;
    height: 100vh;
    background-image: url('/images/jobs.jpg');
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

.jobs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.jobs-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: left;
    color: #ddebca;
}

.jobs-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.jobs-hero ul {
    list-style-position: inside;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 1rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.jobs-hero li {
    margin-bottom: 0.5rem;
    text-align: left;
}


/* New Breakpoint: Extra-Small Mobile (up to 480px) */
@media (max-width: 480px) {

    /* Hero/Carousel: Shorter height, smaller text for tiny screens */
    .hero {
        height: 80vh;
        /* Slightly shorter to fit more content */
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin: 10px 0;
        padding: 10px;
    }

    .heading-2 {
        font-size: 1.1rem;
    }

    .hero-logo {
        max-height: 50px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .cta-button {
        font-size: 14px;
        padding: 6px 12px;
    }

    /* Navigation: Ensure hamburger is touch-friendly */
    .menu-icon {
        height: 40px;
        width: 40px;
    }

    .menu-icon__line {
        height: 3px;
        width: 35px;
    }


    .services {
        padding: 30px 15px;
    }

    .tabs {
        gap: 8px;
    }

    .tab-link {
        font-size: 14px;
        padding: 12px;
    }

    table th,
    table td {
        padding: 6px 10px;
        font-size: 0.9rem;
        min-width: 80px;
    }


    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }


    .footer-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .modal {
        height: 100%;
    }

    .modal-content {
        margin: 10% auto 0;
        width: 95%;
        padding: 15px;
    }

    .modal-text h3 {
        font-size: 1.2rem;
    }

    .modal-text h4 {
        font-size: 1rem;
    }

    /* Philosophy/History: Tighter spacing */
    .philosophy-history {
        padding: 30px 15px;
    }

    .philosophy-content {
        gap: 15px;
    }

    .philosophy-text {
        font-size: 0.9rem;
    }


    .hours-container table td {
        text-align: center;
        padding: 6px 10px;
        font-size: 0.9rem;
        min-width: 80px;
    }


    .play-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        bottom: 15px;
    }

    .hero-video {
        width: 95%;
        border-radius: 8px;
    }

    .close-video {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        top: 10px;
        right: 10px;
    }

    .jobs-hero {
        height: 90vh;
        padding: 0 15px;
    }

    .jobs-hero-content {
        padding: 0 10px;
    }

    .jobs-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .jobs-hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .jobs-hero ul {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0.75rem 0;
        max-width: 100%;
        text-align: left;
        padding-left: 1rem;
    }

    .jobs-hero li {
        margin-bottom: 0.25rem;
        text-align: left;
    }

    .news-hero {
        height: 90vh;
        padding: 0 15px;
    }

    .news-hero-content {
        padding: 0 10px;
    }

    .news-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .news-hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .home__gallery {
        display: none;
    }

    .additional-carousel .carousel__slider {
        min-height: 60vh;
        height: 60vh;
    }

    .additional-carousel .carousel__item {
        min-height: 60vh;
        height: 60vh;
    }

    .additional-carousel h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .additional-carousel .carousel-image-overlay .overlay-text h2 {
        font-size: 1.5rem;
    }

    .additional-carousel .carousel-image-overlay .overlay-text h3 {
        font-size: 1.2rem;
    }

    .additional-carousel .carousel-image-overlay .overlay-text p {
        font-size: 0.9rem;
    }

    .additional-carousel .carousel__nav__item {
        width: 10px;
        height: 10px;
    }
}

/* Existing Mobile Breakpoint: 768px (enhanced with fluid elements) */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(24px, 5vw, 32px);
        margin-top: 20px;
    }

    .heading-2 {
        font-size: clamp(16px, 3vw, 18px);
    }

    .hero-logo {
        max-height: clamp(50px, 10vw, 60px);
    }

    .social-icons a {
        font-size: 24px;
    }

    .cta-button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 10px;
    }

    .tab-link {
        width: 100%;
        margin-bottom: 0;
    }

    .tab-panel {
        padding: 15px;
    }

    table {
        display: block;
        width: auto;
        min-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        margin-top: 15px;
        -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    table th,
    table td {
        padding: 8px 12px;
        font-size: 1rem;
        min-width: 100px;
    }

    table th:last-child,
    table td:last-child {
        padding-right: 30px;
    }

    table tr:hover td {
        -webkit-transform: scale(1.01);
        transform: scale(1.01);
    }

    .services {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
    }

    .tabs-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        overflow-x: visible;
    }

    .tabs {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .tab-content {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        overflow-x: visible;
    }

    .table-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .table-container::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 15px;
        height: 100%;
        background: none;
        pointer-events: none;
    }

    .table-container::-webkit-scrollbar {
        height: 8px;
    }

    .table-container::-webkit-scrollbar-thumb {
        background-color: #ddebca;
        border-radius: 10px;
    }

    .table-container::-webkit-scrollbar-track {
        background-color: #2a2a2a;
    }

    .scroll-indicator {
        display: block;
    }

    .image-overlay {
        height: 200px;
    }

    .image-overlay .overlay-text h3 {
        font-size: 1rem;
        width: 80%;
    }

    .hero .carousel-btn.prev {
        left: 10px;
    }

    .hero .carousel-btn.next {
        right: 10px;
    }

    .additional-carousel .carousel .carousel-btn.prev {
        left: 10px;
    }

    .additional-carousel .carousel .carousel-btn.next {
        right: 10px;
    }

    .carousel-image-overlay .overlay-text h2 {
        font-size: 1.5rem;
    }

    .carousel-image-overlay .overlay-text h3 {
        font-size: 1.2rem;
    }

    .footer-logo {
        max-height: 60px;
    }

    .footer-links {
        gap: 15px;
        /* Ensure gap works with flex */
    }

    .footer-links a {
        font-size: 14px;
    }

    .modal {
        height: 100%;
    }

    .modal-content {
        margin: 20% auto 0;
        width: 90%;
    }

    .close-modal {
        font-size: 2rem;
    }

    .modal iframe {
        height: 100%;
    }

    .additional-carousel {
        padding-bottom: 20px;
        margin-bottom: -10px;
    }

    .opening-hours {
        padding: 40px 20px;
        min-height: auto;
    }

    .hours-container {
        width: 100%;
        max-width: 500px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .hours-container table {
        display: block;
        width: auto;
        min-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .hours-container table td {
        padding: 8px 12px;
        font-size: 1rem;
        min-width: 100px;
    }

    .hours-container table td:last-child {
        padding-right: 30px;
        /* Prevent cutoff */
    }

    .hours-container::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 15px;
        height: 100%;
        background: none;
        pointer-events: none;
    }

    .hours-container::-webkit-scrollbar {
        height: 8px;
    }

    .hours-container::-webkit-scrollbar-thumb {
        background-color: #ddebca;
        border-radius: 10px;
    }

    .hours-container::-webkit-scrollbar-track {
        background-color: #2a2a2a;
    }

    .philosophy-history {
        padding: 40px 20px;
        min-height: auto;
    }

    .philosophy-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        gap: 20px;
    }

    .philosophy-text {
        text-align: center;
        font-size: 1rem;
    }

    .philosophy-image {
        max-width: 100%;
    }

    .philosophy-image img {
        border-radius: 5px;
    }

    .video-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        z-index: 9998;
        -webkit-transition: opacity 0.4s ease;
        transition: opacity 0.4s ease;
    }

    .video-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-video {
        width: 90%;
        max-width: 900px;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 10px;
        -o-object-fit: cover;
        object-fit: cover;
        z-index: 9999;
    }

    .play-toggle {
        position: absolute;
        bottom: 20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 20px;
        cursor: pointer;
        z-index: 10000;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    }

    .play-toggle:hover {
        -webkit-transform: translateX(-50%) scale(1.05);
        transform: translateX(-50%) scale(1.05);
    }

    .close-video {
        display: none;
    }

    .jobs-hero {
        height: 100vh;
        padding: 0 20px;
    }

    .jobs-hero-content {
        padding: 0 15px;
    }

    .jobs-hero h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .jobs-hero p {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .jobs-hero ul {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin: 0.75rem 0;
        max-width: 100%;
        padding-left: 1.25rem;
        text-align: left;
    }

    .jobs-hero li {
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .news-hero {
        height: 100vh;
        padding: 0 20px;
    }

    .news-hero-content {
        padding: 0 15px;
    }

    .news-hero h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .news-hero p {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .home__gallery {
        display: none;
    }

    .additional-carousel .slider {
        padding-top: 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .additional-carousel .carousel__nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 12px;
    }

    .additional-carousel h1 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 2.5rem;
        text-align: center;
        width: 100%;
    }

    .additional-carousel .row.align-items-center {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .additional-carousel .col-md-4 {
        margin-bottom: 2rem;
        width: 100%;
    }

    /* Make carousel slider full width and height */
    .additional-carousel .carousel__slider {
        width: 100vw;
        margin-left: -20px;
        margin-right: -20px;
        min-height: 50vh;
        height: 50vh;
    }

    /* Make carousel items full width and height */
    .additional-carousel .carousel__item {
        width: 100vw;
        min-height: 50vh;
        height: 50vh;
        border-radius: 40px;
        border-left: none;
        border-right: none;
    }

    /* Make images fill the entire container */
    .additional-carousel .carousel-image-overlay {
        border-radius: 0;
        width: 100%;
        height: 100%;
    }

    .additional-carousel .carousel-image-overlay img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    /* Adjust overlay text for mobile */
    .additional-carousel .carousel-image-overlay .overlay-text {
        padding: 15px;
        border-radius: 0;
    }

    .additional-carousel .carousel-image-overlay .overlay-text h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .additional-carousel .carousel-image-overlay .overlay-text h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .additional-carousel .carousel-image-overlay .overlay-text p {
        font-size: 1rem;
    }
}

/* Existing Tablet Breakpoint: 769-1024px (enhanced) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .table-container {
        width: 100%;
        height: auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-content {
        width: 100%;
        min-width: 0;
        overflow-x: visible;
    }

    table {
        display: block;
        width: auto;
        min-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        margin-top: 15px;
        -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    table th,
    table td {
        padding: 8px 12px;
        font-size: 1rem;
        min-width: 100px;
    }

    table th:last-child,
    table td:last-child {
        padding-right: 30px;
    }

    .jobs-hero-content {
        max-width: 700px;
        padding: 0 25px;
    }

    .jobs-hero h1 {
        font-size: 2.5rem;
        text-align: left;
    }

    .jobs-hero p {
        font-size: 1.1rem;
        text-align: left;
    }

    .jobs-hero ul {
        font-size: 1.1rem;
        max-width: 500px;
        text-align: left;
    }

    .jobs-hero li {
        text-align: left;
    }

    .news-hero-content {
        max-width: 700px;
        padding: 0 25px;
    }

    .news-hero h1 {
        font-size: 2.5rem;
        text-align: left;
    }

    .news-hero p {
        font-size: 1.1rem;
        text-align: left;
    }

    .home__gallery {
        display: none;
    }

    .additional-carousel .carousel__slider {
        min-height: 500px;
    }

    .additional-carousel .carousel__item {
        min-height: 500px;
    }

    .modal {
        height: 100%;
    }

}