/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #272727;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .navbar-dark {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1050 !important;
        background: var(--dark) !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed !important;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        background: var(--dark);
        border-radius: 8px;
        padding: 15px;
        margin-top: 10px;
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 15px 20px;
        margin-left: 0;
        margin-bottom: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-size: 16px;
        text-align: center;
        display: block;
        border: 1px solid transparent;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        background: rgba(254, 161, 22, 0.1);
        border-color: var(--primary);
        transform: translateX(5px);
    }

    .navbar-dark .navbar-brand img {
        max-height: 60px;
        height: 60px;
    }

    /* Mobile navbar toggler improvements */
    .navbar-toggler {
        border: 2px solid var(--primary);
        padding: 8px 12px;
        border-radius: 5px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(254, 161, 22, 0.25);
    }

    .navbar-toggler .fa-bars {
        color: var(--primary);
        font-size: 18px;
    }

    /* Language switcher mobile styles */
    .language-switcher {
        margin-top: 15px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding-top: 15px;
    }

    .language-switcher .dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }

    .language-switcher .dropdown-menu {
        width: 100%;
        text-align: center;
        border: 1px solid var(--primary);
        background: var(--dark);
        margin-top: 5px;
        position: static !important;
        transform: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .language-switcher .dropdown-item {
        padding: 12px 20px;
        color: var(--light);
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .language-switcher .dropdown-item:hover,
    .language-switcher .dropdown-item.active {
        background: var(--primary);
        color: white;
    }

    .language-switcher .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Mobile navbar container adjustments */
    .navbar .container-fluid {
        position: relative;
        padding: 10px 15px;
        display: flex;
        align-items: center;
    }

    /* Logo positioning on mobile - centered */
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    /* Mobile toggle button positioning */
    .navbar-toggler {
        position: absolute;
        right: 15px;
        z-index: 11;
    }
}

/* Additional mobile-specific improvements */
@media (max-width: 767.98px) {
    .navbar-dark .navbar-brand img {
        max-height: 50px;
        height: 50px;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 15px;
        padding: 12px 15px;
    }

    .language-switcher .dropdown-toggle,
    .language-switcher .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* Ensure proper spacing on very small screens */
    .navbar {
        padding: 8px 0;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .navbar-dark .navbar-brand img {
        max-height: 45px;
        height: 45px;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px 12px;
        margin-bottom: 3px;
    }

    .navbar-toggler {
        padding: 6px 10px;
        right: 10px;
    }

    .navbar-toggler .fa-bars {
        font-size: 16px;
    }

    .language-switcher .dropdown-toggle,
    .language-switcher .dropdown-item {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar-dark .navbar-brand img {
        max-height: 40px;
        height: 40px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }

    .navbar-dark .navbar-collapse {
        padding: 10px;
        margin-top: 5px;
    }

    .language-switcher {
        margin-top: 10px;
        padding-top: 10px;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Add padding to body or main container to prevent content hidden behind fixed navbar */
    body {
        padding-top: 70px; /* Adjust based on navbar height */
    }

    .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Smooth mobile menu animation */
    .navbar-collapse {
        transition: all 0.3s ease-in-out;
    }

    .navbar-collapse.collapsing {
        transition: height 0.3s ease;
    }

    /* Prevent horizontal scroll on mobile */
    .navbar {
        overflow-x: hidden;
    }

    /* Better mobile menu spacing */
    .navbar-nav {
        width: 100%;
        text-align: center;
    }

    /* Mobile menu backdrop */
    .navbar-collapse.show {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Ensure mobile menu appears above other content */
    .navbar-collapse {
        z-index: 1060 !important;
        position: relative;
    }
    
    /* Fix navbar toggler z-index on mobile */
    .navbar-toggler {
        z-index: 1070 !important;
        position: relative;
    }

    /* Fix for mobile menu button active state */
    .navbar-toggler[aria-expanded="true"] {
        background-color: rgba(254, 161, 22, 0.1);
    }

    /* Improve mobile menu item spacing */
    .navbar-nav .nav-item:last-child {
        margin-bottom: 0;
    }

    /* Mobile-specific hover effects */
    .navbar-dark .navbar-nav .nav-link:active {
        background: rgba(254, 161, 22, 0.2);
        transform: translateX(3px);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1030;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
        z-index: 1030;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(39,39,39,255), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Quote Section ***/
.quote-section {
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary), #ff6b35) !important;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.quote-content {
    position: relative;
    z-index: 2;
}

.quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: white;
}

/*** Feature Boxes ***/
.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254,161,22,0.1), transparent);
    transition: 0.5s;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: 0.3s;
    transform: translate(-50%, -50%);
}

.feature-box:hover .feature-icon::before {
    width: 100%;
    height: 100%;
}

.feature-box h4 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/*** Hot Items ***/
.hot-item {
    position: relative;
    padding: 20px;
}

.rotating-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), #ff6b35, var(--primary));
    background-size: 300% 300%;
    animation: rotateGradient 20s ease-in-out infinite;
    padding: 5px;
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
        transform: rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        transform: rotate(180deg);
    }
    100% {
        background-position: 0% 50%;
        transform: rotate(360deg);
    }
}

.hot-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.hot-item:hover img {
    transform: scale(1.1);
}

.hot-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hot-content p {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.hot-content h6 {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.hot-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
}




/*** Stats Counter ***/
.stats-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stats-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stats-icon i {
    font-size: 2rem;
    color: white;
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.stats-item h5 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.stats-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/*** Process Steps ***/
.process-step {
    position: relative;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(254,161,22,0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.process-step:hover .step-icon {
    background: var(--primary);
}

.process-step:hover .step-icon i {
    color: white;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -25px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: translateY(-50%);
}

.process-step:last-child .step-connector {
    display: none;
}

.process-step h4 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 15px;
}

.process-step p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/*** Customer Reviews ***/
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-right: 3px;
}

.review-card p {
    color: #6c757d;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.author-info h6 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-info small {
    color: #6c757d;
    font-size: 0.85rem;
}

/*** 3D Menu Showcase ***/
.menu-3d-container {
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
}

.menu-cube {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    margin: 0 auto;
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid var(--primary);
}

.cube-face.front {
    transform: rotateY(0deg) translateZ(150px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(150px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(150px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(150px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

.face-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.face-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.face-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cube-face:hover .face-overlay {
    transform: translateY(0);
}

.cube-face:hover img {
    transform: scale(1.1);
}

.face-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.face-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.cube-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 400px;
}

.control-btn {
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(254,161,22,0.3);
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.control-btn:hover::before {
    width: 200px;
    height: 200px;
}

.control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254,161,22,0.4);
}

.control-btn.active {
    background: linear-gradient(135deg, #ff6b35, var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254,161,22,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-cube {
        width: 250px;
        height: 250px;
    }
    
    .cube-face {
        width: 250px;
        height: 250px;
    }
    
    .cube-face.front,
    .cube-face.back {
        transform: rotateY(0deg) translateZ(125px);
    }
    
    .cube-face.back {
        transform: rotateY(180deg) translateZ(125px);
    }
    
    .cube-face.right {
        transform: rotateY(90deg) translateZ(125px);
    }
    
    .cube-face.left {
        transform: rotateY(-90deg) translateZ(125px);
    }
    
    .cube-face.top {
        transform: rotateX(90deg) translateZ(125px);
    }
    
    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(125px);
    }
}

/*** Gallery ***/
.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

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

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

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-controls:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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



@media (max-width: 768px) {
    .gallery-slideshow {
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .slideshow-controls {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-content img {
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Quotes Section Decoration ***/
.quotes-section::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/*** Quotes Section Heading Style ***/
.quotes-heading {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

/*** Flag Icons ***/
.flag-icon {
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
