/* assets/css/style.css - Optimized Premium Restaurant Theme */
:root {
    --primary: #8B7355;
    --primary-dark: #6B5B3E;
    --primary-light: #A89276;
    --secondary: #1a1a1a;
    --accent: #5D4037;
    --light: #f8f5f2;
    --dark: #2d2d2d;
    --text: #333333;
    --text-light: #777777;
    --gold: #B8860B;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.section-padding {
    padding: 100px 0;
}

/* Remove outlines from all social links and navigation */
.social-link:focus,
.nav-link:focus,
.top-bar-item a:focus,
.reservation-btn:focus,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Alternative: Add custom focus styles instead of removing */
.social-link:focus {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.nav-link:focus {
    color: var(--primary) !important;
    background: rgba(139, 115, 85, 0.05) !important;
}

/* Ensure no focus outlines on buttons */
.btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25) !important;
}

/* Body padding to account for fixed elements */
body {
    padding-top: 120px;
}

/* Smooth scrolling for navigation */
html {
    scroll-padding-top: 140px;
}

/* ===== FULL PAGE LOADER ===== */
body {
    visibility: visible !important;
    opacity: 1 !important;
}

.fullpage-loader {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.fullpage-loader.loaded {
    opacity: 0 !important;
    visibility: hidden !important;
}

.fullpage-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 50%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullpage-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo Styling */
.loader-logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.loader-logo h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Spinner Animation */
.loader-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.spinner-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(139, 115, 85, 0.4);
}

.spinner-circle:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--primary-light);
}

.spinner-circle:nth-child(3) {
    animation-delay: 0.4s;
    background: var(--gold);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Loading Text */
.loader-text {
    color: var(--light);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loading-text {
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 300;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Progress Bar */
.loading-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(139, 115, 85, 0.6);
}

/* Background Elements */
.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.loader-float-1,
.loader-float-2,
.loader-float-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.1);
    animation: float 8s ease-in-out infinite;
}

.loader-float-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.loader-float-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.loader-float-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

/* Enhanced float animation for loader */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Loading completion styles */
.loader-complete .loader-logo h1 {
    animation: logoComplete 0.8s ease-out forwards;
}

.loader-complete .loader-spinner {
    animation: fadeOutUp 0.6s ease-out forwards;
}

.loader-complete .loader-text {
    animation: fadeOutDown 0.6s ease-out forwards;
}

@keyframes logoComplete {
    to {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes fadeOutUp {
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

@keyframes fadeOutDown {
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .loader-logo h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .loader-spinner {
        margin-bottom: 2rem;
    }

    .loader-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .spinner-circle {
        width: 12px;
        height: 12px;
    }

    .loader-float-1 {
        width: 100px;
        height: 100px;
    }

    .loader-float-2 {
        width: 70px;
        height: 70px;
    }

    .loader-float-3 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .loader-logo h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .loader-text {
        font-size: 0.8rem;
    }
}

/* ===== FIXED TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    transition: all 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-info,
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Fix for right side alignment */
.top-bar-social {
    justify-content: flex-end;
    width: 100%;
}

.top-bar-social .social-icons {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

/* Ensure proper spacing between address and social icons */
.top-bar-social .top-bar-item {
    margin-right: 20px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-bar-item i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--primary);
}

.top-bar-social .social-link {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-bar-social .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== FIXED NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 242, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    position: fixed;
    top: 40px;
    /* Height of top bar */
    width: 100%;
    z-index: 1030;
}

.navbar.scrolled {
    top: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: top 0.3s ease;
}

/* Brand Styling */
.brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    padding: 15px 0;
}

.brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: -2px;
}

.brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Navigation Links */
.navbar-nav {
    gap: 5px;
}

.navbar .nav-link {
    font-weight: 500;
    color: var(--secondary);
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 25px 20px !important;
    border-radius: 8px;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    width: 30px;
}

.navbar .nav-link:hover {
    color: var(--primary);
    background: rgba(139, 115, 85, 0.05);
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    color: var(--primary);
    background: rgba(139, 115, 85, 0.08);
    font-weight: 600;
}

/* Reservation Buttons */
.reservation-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.reservation-btn:hover::before {
    left: 100%;
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.4);
}

.reservation-btn-mobile {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover {
    background: var(--primary);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 242, 0.98) 100%);
        backdrop-filter: blur(20px);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        padding: 20px;
        margin-top: 10px;
        border: 1px solid rgba(139, 115, 85, 0.1);
    }

    .navbar .nav-link {
        padding: 15px 20px !important;
        margin: 2px 0;
        border-radius: 8px;
    }

    .navbar .nav-link::before {
        bottom: 8px;
    }

    .reservation-btn-mobile {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
}


/* ===== PREMIUM BUTTONS ===== */
.small-heading {
    color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.1), transparent);
    transition: 0.5s;
}

.btn-outline-primary:hover:before {
    left: 100%;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.3);
}

/* ===== PREMIUM BUTTONS ===== */
.small-heading {
    color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
    padding: 14px 35px;
    font-weight: 500;
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.1), transparent);
    transition: 0.5s;
}

.btn-outline-primary:hover:before {
    left: 100%;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.3);
}

/* ===== SECTION TITLES ===== */
.section-title {
    position: relative;
    margin-bottom: 80px;
    text-align: center;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
        url('../images/banner-img1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    transform: none !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 115, 85, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 15px 15px 0;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.5);
}

.hero-buttons .btn-outline-primary.bg-white {
    background: white;
    border: 2px solid white;
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview {
    background: linear-gradient(135deg, #f8f5f2 0%, #f0ebe6 100%);
    position: relative;
}

.about-preview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-preview:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.3), rgba(139, 115, 85, 0.6), rgba(139, 115, 85, 0.3), transparent);
}

.about-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.about-img-main {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.about-img-main img {
    transition: transform 1s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-container:hover .about-img-main img {
    transform: scale(1.05);
}

.experience-badge {
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.experience-badge .theme-bg-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon {
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.2);
    background-color: var(--primary);
}

.feature-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.3);
}

.stats-section {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    padding: 20px 0;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* ===== REVAMPED MENU PREVIEW SECTION ===== */
.menu-preview {
    background: var(--light);
    position: relative;
}

.menu-preview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Menu Cards */
.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 115, 85, 0.2);
}

.menu-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.menu-card-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.menu-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.menu-card-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-card-content {
    padding: 25px;
    position: relative;
}

.menu-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.menu-card-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.menu-card-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.menu-card-rating i {
    margin-right: 2px;
}

/* Menu Tabs Navigation */
.menu-tabs-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.menu-tabs-nav .nav-link {
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.4s ease;
    background: transparent;
}

.menu-tabs-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(139, 115, 85, 0.05);
}

.menu-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
    transform: translateY(-2px);
}

/* Swiper Customization for Menu */
.featuredSwiper,
.bestsellersSwiper,
.seasonalSwiper {
    padding: 20px 10px 60px;
}

.featuredSwiper .swiper-slide,
.bestsellersSwiper .swiper-slide,
.seasonalSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.featuredSwiper .swiper-button-next,
.featuredSwiper .swiper-button-prev,
.bestsellersSwiper .swiper-button-next,
.bestsellersSwiper .swiper-button-prev,
.seasonalSwiper .swiper-button-next,
.seasonalSwiper .swiper-button-prev {
    color: var(--primary);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: -25px;
}

.featuredSwiper .swiper-button-next:after,
.featuredSwiper .swiper-button-prev:after,
.bestsellersSwiper .swiper-button-next:after,
.bestsellersSwiper .swiper-button-prev:after,
.seasonalSwiper .swiper-button-next:after,
.seasonalSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.featuredSwiper .swiper-button-next:hover,
.featuredSwiper .swiper-button-prev:hover,
.bestsellersSwiper .swiper-button-next:hover,
.bestsellersSwiper .swiper-button-prev:hover,
.seasonalSwiper .swiper-button-next:hover,
.seasonalSwiper .swiper-button-prev:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.featuredSwiper .swiper-pagination,
.bestsellersSwiper .swiper-pagination,
.seasonalSwiper .swiper-pagination {
    bottom: 20px;
}

.featuredSwiper .swiper-pagination-bullet,
.bestsellersSwiper .swiper-pagination-bullet,
.seasonalSwiper .swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.featuredSwiper .swiper-pagination-bullet-active,
.bestsellersSwiper .swiper-pagination-bullet-active,
.seasonalSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive Design for Menu Section */
@media (max-width: 768px) {
    .menu-card-img {
        height: 200px;
    }

    .menu-card-content {
        padding: 20px;
    }

    .menu-card-title {
        font-size: 1.2rem;
    }

    .menu-tabs-nav .nav-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .featuredSwiper .swiper-button-next,
    .featuredSwiper .swiper-button-prev,
    .bestsellersSwiper .swiper-button-next,
    .bestsellersSwiper .swiper-button-prev,
    .seasonalSwiper .swiper-button-next,
    .seasonalSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
}

@media (max-width: 576px) {
    .menu-tabs-nav {
        padding: 6px;
    }

    .menu-tabs-nav .nav-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .menu-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .menu-card-footer .btn {
        align-self: stretch;
        text-align: center;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)),
        url('../images/testimonial-bg.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 115, 85, 0.1), transparent);
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: white;
    position: relative;
    z-index: 2;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    margin: 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.testimonial-slide.swiper-slide-active {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 115, 85, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--light);
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--light);
    color: var(--secondary);
    text-align: center;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.3), rgba(139, 115, 85, 0.6), rgba(139, 115, 85, 0.3), transparent);
}

.cta-section h2 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 100px 0 30px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer h5 {
    color: var(--light);
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-links p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-links p i {
    margin-top: 5px;
    margin-right: 10px;
    color: var(--primary);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 115, 85, 0.3);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 80px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* ===== SWIPER STYLES ===== */
.swiper {
    width: 100%;
    height: 100%;
    padding: 20px 10px 60px;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== UTILITY CLASSES ===== */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.theme-primary {
    color: var(--primary);
}

.theme-bg-primary {
    background-color: var(--primary);
}

.counter {
    font-variant-numeric: tabular-nums;
}

/* ===== ABOUT PAGE STYLES ===== */
.page-header {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
        url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 10px;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.story-section,
.philosophy-section {
    position: relative;
}

.story-section:after,
.philosophy-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.3), rgba(139, 115, 85, 0.6), rgba(139, 115, 85, 0.3), transparent);
}

.story-img-main,
.philosophy-img-main {
    height: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.story-img-main img,
.philosophy-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-main:hover,
.philosophy-img-main:hover {
    transform: translateY(-5px);
}

.philosophy-section .icon-wrapper {
    background-color: var(--primary);
    transition: all 0.3s ease;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-item:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.3);
}

/* Fix Menu Tabs */
.menu-tabs-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 115, 85, 0.1);
    /* Remove any bottom borders */
    border-bottom: none;
}

.menu-tabs-nav .nav-link {
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.4s ease;
    /* Ensure no borders */
    border-bottom: none !important;
}

.menu-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
    transform: translateY(-2px);
    /* Remove any active state borders */
    border: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    margin-top: -25px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: var(--primary) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: white !important;
}

/* Specific fixes for testimonial swiper */
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

.testimonials-slider .swiper-button-next:hover,
.testimonials-slider .swiper-button-prev:hover {
    background: var(--primary) !important;
    color: white !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-img-container,
    .story-img-main,
    .philosophy-img-main {
        height: 400px;
    }

    .menu-card-img {
        height: 220px;
    }

    .testimonial-slide {
        padding: 30px;
        margin: 10px;
    }
}

/* Menu Navigation Styles */
.menu-navigation-section {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: linear-gradient(135deg, rgba(248, 245, 242, 0.98) 0%, rgba(240, 235, 230, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-nav-sticky {
    padding: 15px 0;
    transition: all 0.4s ease;
}

.menu-nav-sticky.sticky {
    /* background: rgba(255, 255, 255, 0.98); */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.menu-nav-container {
    max-width: 800px;
    margin: 0 auto;
}

.menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
}

.menu-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-radius: 15px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 100px;
}

.menu-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

.menu-nav-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.menu-nav-link:hover::before {
    opacity: 0.05;
}

.menu-nav-link:hover .nav-icon {
    transform: scale(1.1);
    color: var(--primary);
}

.menu-nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
    transform: translateY(-2px);
}

.menu-nav-link.active::before {
    opacity: 0;
}

.menu-nav-link.active .nav-icon {
    transform: scale(1.1);
    color: white;
}

.menu-nav-link.active .nav-text {
    color: white;
    font-weight: 600;
}

.nav-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin-bottom: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.menu-nav-link.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-icon i {
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.nav-text {
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
}

/* Active indicator */
.menu-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.menu-nav-link.active::after {
    width: 30px;
    background: white;
}

/* Menu Sections */
.menu-sections {
    padding-top: 40px;
}

.menu-category {
    margin-bottom: 100px;
    scroll-margin-top: 160px;
    padding: 0 10px;
}

.menu-category-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(139, 115, 85, 0.15);
    position: relative;
    text-align: center;
}

.menu-category-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.menu-category-title i {
    color: var(--primary);
    margin-right: 15px;
}

/* Enhanced menu items */
.menu-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 30px;
    border: 1px solid rgba(139, 115, 85, 0.08);
    display: flex;
    align-items: center;
    padding: 25px;
    height: 160px;
    position: relative;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 115, 85, 0.2);
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.menu-item-card:hover::before {
    opacity: 1;
}

.menu-item-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 25px;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
    position: relative;
    z-index: 2;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item-card:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
    line-height: 1.3;
}

.menu-item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    margin-left: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item-desc {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.menu-item-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

.menu-item-badge.vegetarian {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.menu-item-badge.gluten-free {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

.menu-item-badge.chef-special {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.menu-item-badge.signature {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.menu-item-badge.popular {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.menu-item-badge.seasonal {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-navigation-section {
        top: 70px;
    }

    .menu-nav {
        gap: 5px;
        padding: 0 10px;
    }

    .menu-nav-link {
        padding: 12px 15px;
        min-width: 80px;
    }

    .nav-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .nav-icon i {
        font-size: 1rem;
    }

    .nav-text {
        font-size: 0.75rem;
    }

    .menu-category-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .menu-item-card {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 25px 20px;
    }

    .menu-item-img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .menu-item-header {
        flex-direction: column;
    }

    .menu-item-price {
        margin-left: 0;
        margin-top: 8px;
    }

    .menu-category {
        scroll-margin-top: 130px;
        margin-bottom: 80px;
    }

    .special-offer-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .menu-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-nav-link {
        min-width: 70px;
        padding: 10px 12px;
    }

    .nav-icon {
        width: 35px;
        height: 35px;
    }

    .nav-text {
        font-size: 0.7rem;
    }
}

/* Special Offers Section */
.special-offers-section {
    background: linear-gradient(135deg, #f8f5f2 0%, #f0ebe6 100%);
    position: relative;
}

.special-offers-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.special-offer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.special-offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.offer-img {
    height: 250px;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-offer-card:hover .offer-img img {
    transform: scale(1.1);
}

.offer-content {
    padding: 30px;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.offer-content h4 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.offer-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.offer-features span {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.offer-features i {
    color: var(--primary);
    margin-right: 5px;
}

/* Reservation Page Specific Styles */
.reservation-section {
    background: linear-gradient(135deg, #f8f5f2 0%, #f0ebe6 100%);
    position: relative;
}

.reservation-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.reservation-content h2 {
    color: var(--secondary);
    margin-bottom: 30px;
}

.reservation-content .lead {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.7;
}

.reservation-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

.feature-text h5 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Reservation Form */
.reservation-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.reservation-form-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.form-header h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: var(--text-light);
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group {
    position: relative;
}

.input-group-text {
    background: rgba(139, 115, 85, 0.05);
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-right: none;
    color: var(--primary);
    min-width: 50px;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-control {
    border: 1px solid rgba(139, 115, 85, 0.2);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.1);
    background: white;
}

.input-group:focus-within .input-group-text {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Private Dining Section */
.private-dining-section {
    position: relative;
}

.private-dining-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.private-dining-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dining-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.dining-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.private-dining-card:hover .dining-img img {
    transform: scale(1.1);
}

.dining-content {
    padding: 30px;
    position: relative;
}

.dining-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dining-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.dining-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.dining-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.dining-features span {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.dining-features i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

/* FAQ Section */
.faq-section {
    background: var(--light);
}

.faq-accordion {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item {
    background: white;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(139, 115, 85, 0.02);
}

.faq-header {
    padding: 0;
}

.faq-button {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-button:hover {
    color: var(--primary);
    background: rgba(139, 115, 85, 0.03);
}

.faq-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(139, 115, 85, 0.05);
}

.faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-button i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-collapse {
    transition: all 0.3s ease;
}

.faq-body {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
    margin-top: -1px;
}

/* Form Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
}

.is-valid {
    border-color: #198754 !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.was-validated .form-control:invalid~.invalid-feedback {
    display: block;
}

/* Success Message */
.reservation-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.reservation-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.reservation-success h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reservation-form-wrapper {
        padding: 30px 25px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .faq-button {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-body {
        padding: 0 25px 20px;
    }

    .dining-content {
        padding: 25px 20px;
    }

    .private-dining-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .reservation-form-wrapper {
        padding: 25px 20px;
        margin: 0 -15px;
        border-radius: 15px;
    }

    .form-header h4 {
        font-size: 1.3rem;
    }

    .faq-button {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-body {
        padding: 0 20px 18px;
    }
}

/* Contact Page Specific Styles */
.contact-info-section {
    background: linear-gradient(135deg, #f8f5f2 0%, #f0ebe6 100%);
    position: relative;
}

.contact-info-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(139, 115, 85, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-content h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-content h2 {
    color: var(--secondary);
    margin-bottom: 30px;
}

.contact-content .lead {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.2);
}

.detail-text h5 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links h5 {
    color: var(--secondary);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.form-header h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: var(--text-light);
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group {
    position: relative;
}

.input-group-text {
    background: rgba(139, 115, 85, 0.05);
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-right: none;
    color: var(--primary);
    min-width: 50px;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-control {
    border: 1px solid rgba(139, 115, 85, 0.2);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.1);
    background: white;
}

.input-group:focus-within .input-group-text {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-section .social-links .social-icons {
    display: flex;
    gap: 15px;
}

.contact-section .social-links .social-link {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-section .social-links .social-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 115, 85, 0.4);
    border-color: var(--primary);
}

/* Remove outlines from social links */
.contact-section .social-links .social-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.contact-section .social-links .social-link:focus-visible {
    background: white !important;
    color: var(--primary) !important;
    transform: translateY(-5px) !important;
    outline: 2px solid var(--primary) !important;
    outline-offset: 2px !important;
}


/* FAQ Section */
.contact-faq-section {
    background: var(--light);
}

.faq-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.2);
}

.faq-content h5 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Form Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
}

.is-valid {
    border-color: #198754 !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.was-validated .form-control:invalid~.invalid-feedback {
    display: block;
}

/* Success Message */
.contact-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.contact-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.contact-success h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 30px 25px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .detail-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .map-container {
        height: 400px;
    }

    .map-content h3 {
        font-size: 2rem;
    }

    .map-features {
        flex-direction: column;
        gap: 15px;
    }

    .faq-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .faq-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 25px 20px;
        margin: 0 -15px;
        border-radius: 15px;
    }

    .form-header h4 {
        font-size: 1.3rem;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .map-container {
        height: 350px;
    }

    .map-content h3 {
        font-size: 1.8rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ===== PREMIUM TEAM SECTION ===== */
.team-section {
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Premium Team Card */
.team-card.premium-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(139, 115, 85, 0.1);
    height: 100%;
    position: relative;
}

.team-card.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 115, 85, 0.2);
}

.team-card.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    z-index: 2;
}

/* Team Image Container */
.team-img-container {
    position: relative;
    overflow: hidden;
}

.team-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(20%);
}

.team-card.premium-card:hover .team-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Team Overlay */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card.premium-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.team-card.premium-card:hover .team-social {
    transform: translateY(0);
}

.team-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-social .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Team Badge */
.team-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
    z-index: 3;
}

/* Team Content */
.team-content {
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Team Signature */
.team-signature {
    border-top: 1px solid rgba(139, 115, 85, 0.1);
    padding-top: 20px;
}

.signature-img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.team-card.premium-card:hover .signature-img {
    opacity: 1;
}

/* Team Stats */
.team-stats {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.team-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-img-wrapper {
        height: 300px;
    }

    .team-content {
        padding: 30px 20px 20px;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .team-stats {
        padding: 30px 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .team-img-wrapper {
        height: 250px;
    }

    .team-content {
        padding: 25px 15px 15px;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-social .social-link {
        width: 40px;
        height: 40px;
    }
}