/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9AB81;
    --gold-dark: #B8935A;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --text-gray: #999999;
    --white: #FFFFFF;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #D4A574 0%, #C9985E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    animation: rotate 1.2s linear infinite;
    margin-bottom: 50px;
}

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

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 18px;
    color: rgba(0, 0, 0, 0.926);
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    cursor: pointer;
}

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

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-5px);
}

.scroll-top a {
    color: var(--black);
    font-size: 18px;
    text-decoration: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.top-info-bar {
    position: relative;
    z-index: 10;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-info-bar p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.top-info-bar i {
    color: var(--gold);
    margin-right: 8px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: relative;
    z-index: 10;
    padding: 25px 0;
    background: transparent;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 20px;
    padding: 8px 0 !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* ========== HERO CONTENT ========== */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeInUp 1s ease 0.3s both;
}

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

.hero-subtitle {
    font-size: 11px;
    letter-spacing: 8px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.separator-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-primary-gold {
    display: inline-block;
    padding: 16px 45px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
}

.btn-primary-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 171, 129, 0.3);
}

.btn-outline-gold {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 171, 129, 0.3);
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.scroll-indicator i {
    font-size: 28px;
    color: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 52px;
    }
    
    .nav-link {
        margin: 10px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 5px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .loader-text {
        font-size: 48px;
        letter-spacing: 12px;
    }
    
    .loader-circle {
        width: 100px;
        height: 100px;
    }
    
    .btn-primary-gold,
    .btn-outline-gold {
        padding: 14px 35px;
        font-size: 12px;
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: #0F0F0F;
}

.about-content-left {
    padding: 100px 80px;
    max-width: 600px;
}

.about-content-left .section-subtitle {
    text-align: left;
}

.about-content-left .separator {
    margin: 15px 0;
}

.about-content-left .section-title {
    text-align: left;
}

.about-image-right {
    position: relative;
    height: 100%;
    min-height: 700px;
}

.about-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.since-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.badge-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    animation: rotate-badge 20s linear infinite;
}

@keyframes rotate-badge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-text-top,
.badge-text-bottom {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
}

.badge-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin: 5px 0;
}

@media (max-width: 991px) {
    .about-content-left {
        padding: 60px 40px;
    }
    
    .about-image-right {
        min-height: 500px;
    }
    
    .since-badge {
        top: 20px;
        right: 20px;
    }
    
    .badge-circle {
        width: 110px;
        height: 110px;
    }
    
    .badge-year {
        font-size: 20px;
    }
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 120px 0;
    background: var(--black);
}

.feature-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-image {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.feature-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ========== SPECIAL DISH SECTION ========== */
.special-dish-section {
    background: var(--black);
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-content {
    padding: 80px 60px;
    background: #0F0F0F;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.special-badge img {
    width: 70px;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    font-size: 20px;
    color: #666;
    text-decoration: line-through;
    margin-right: 15px;
}

.new-price {
    font-size: 32px;
    color: var(--gold);
    font-weight: 600;
}

/* ========== MENU SECTION ========== */
.menu-section {
    padding: 120px 0;
    background: #0F0F0F;
}

.menu-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-category {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: rgba(255,255,255,0.7);
}

.menu-category:hover,
.menu-category.active {
    color: var(--gold);
}

.category-separator {
    color: var(--gold);
    font-size: 12px;
}

.menu-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-item h4 {
    font-size: 22px;
    color: var(--white);
    margin: 0;
}

.menu-price {
    font-size: 22px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.menu-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.badge-seasonal,
.badge-new {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 10px;
}

.menu-timing {
    font-size: 17px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.8);
}

.menu-timing span {
    color: var(--gold);
    font-weight: 600;
}

/* ========== CHEFS SECTION ========== */
.chefs-section {
    padding: 120px 0;
    background: var(--black);
}

.chef-card {
    text-align: center;
}

.chef-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}

.chef-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.chef-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chef-card:hover .chef-image img {
    transform: scale(1.1);
}

.chef-card:hover .chef-overlay {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
}

.chef-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.chef-role {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.chef-bio {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.testimonial-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.testimonial-content h2 {
    font-size: 38px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.testimonial-dots span {
    color: var(--gold);
    font-size: 14px;
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatars img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

/* ========== RESERVATION SECTION ========== */
.reservation-section {
    padding: 120px 0;
    background: var(--black);
}

.reservation-form-box {
    background: #0F0F0F;
    padding: 60px;
    border-radius: 8px;
}

.reservation-form-box h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
}

.reservation-subtitle {
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
}

.reservation-subtitle span {
    color: var(--gold);
    font-weight: 600;
}

.reservation-form-box input,
.reservation-form-box select,
.reservation-form-box textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 15px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.reservation-form-box input:focus,
.reservation-form-box select:focus,
.reservation-form-box textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.reservation-form-box input::placeholder,
.reservation-form-box textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-info-box {
    background: url('https://kalanidhithemes.com/live-preview/landing-page/delici/all-demo/Delici-Video-Hero-Center-Header/images/background/pattern-7.png');
    background-size: cover;
    padding: 60px 40px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    text-align: center;
}

.contact-info-box h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h5 {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.contact-item .highlight {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer-section {
    padding: 100px 0 40px;
    background: url('https://kalanidhithemes.com/live-preview/landing-page/delici/all-demo/Delici-Video-Hero-Center-Header/images/background/image-4.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.footer-section .container {
    position: relative;
    z-index: 10;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-main {
    text-align: center;
    background: url('https://kalanidhithemes.com/live-preview/landing-page/delici/all-demo/Delici-Video-Hero-Center-Header/images/background/pattern-7.png');
    padding: 50px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
}

.footer-logo {
    height: 50px;
    margin-bottom: 30px;
}

.footer-main p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.footer-dots span {
    color: var(--gold);
}

.footer-main h3 {
    font-size: 42px;
    font-weight: 300;
    margin: 20px 0;
}

.footer-main p span {
    color: var(--white);
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .section-title {
        font-size: 42px;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .special-content {
        padding: 60px 40px;
    }
    
    .reservation-form-box,
    .contact-info-box {
        padding: 40px 30px;
    }
    
    .footer-main {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 36px;
    }
    
    .testimonial-content h2 {
        font-size: 28px;
    }
    
    .menu-categories {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-separator {
        display: none;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item img {
        width: 100%;
        height: 200px;
    }
}

/* ========== VIDEO SECTION ========== */
.video-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}

.video-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.play-button {
    width: 120px;
    height: 120px;
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    cursor: pointer;
    transition: all 0.4s ease;
}

.play-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.play-button i {
    font-size: 40px;
    color: var(--white);
    margin-left: 5px;
}

.video-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.video-dots span {
    color: var(--gold);
    font-size: 14px;
}

.video-quote {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.5;
    margin: 30px 0;
}

.video-author {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 60px;
}

.stats-container {
    margin-top: 60px;
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    line-height: 1.6;
}

/* ========== EVENTS SECTION ========== */
.events-section {
    padding: 120px 0;
    background: var(--black);
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.event-category {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.event-content h4 {
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
    padding: 120px 0;
    background: #0F0F0F;
}

.strength-card {
    background: #1A1A1A;
    padding: 50px 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.strength-card:hover {
    background: #0A0A0A;
    transform: translateY(-10px);
}

.strength-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    transition: transform 0.5s ease;
}

.strength-card:hover .strength-icon {
    transform: rotate(360deg) scale(1.1);
}

.strength-card h4 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: var(--white);
}

.strength-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

/* ========== RESPONSIVE VIDEO & EVENTS ========== */
@media (max-width: 767px) {
    .video-quote {
        font-size: 26px;
    }
    
    .play-button {
        width: 90px;
        height: 90px;
    }
    
    .play-button i {
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .event-image img {
        height: 250px;
    }
}

/* ========== FEATURED MENU SECTIONS ========== */
.featured-menu-section {
    background: #0E0D0C;
}

.featured-box {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.featured-content {
    padding: 60px 40px;
    text-align: center;
    background: #0E0D0C;
    flex: 1;
}

.featured-content h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 15px 0;
    color: var(--white);
}

.featured-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 15px 0 25px;
}

.featured-image {
    height: 300px;
    overflow: hidden;
}

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

.featured-box:hover .featured-image img {
    transform: scale(1.1);
}

/* Featured Center (Full Image Background) */
.featured-box.featured-center {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.featured-center {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

.featured-content-center {
    position: relative;
    z-index: 10;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 500px;
}

.featured-content-center h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 15px 0;
    color: var(--white);
}

.featured-content-center p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 15px 0 25px;
}

@media (max-width: 991px) {
    .featured-box {
        min-height: 400px;
    }
    
    .featured-content,
    .featured-content-center {
        padding: 40px 30px;
        min-height: 400px;
    }
    
    .featured-image {
        height: 250px;
    }
}

/* ========== BEST SPECIALTIES SECTION ========== */
.specialties-section {
    padding: 120px 0;
    background: var(--black);
}

.specialty-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.specialty-card.specialty-offset {
    margin-top: 60px;
}

.specialty-card:hover {
    transform: translateY(-10px);
}

.specialty-image {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
    height: 350px;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.9;
}

.specialty-card h4 {
    font-size: 24px;
    font-weight: 300;
    margin: 20px 0 15px;
    color: var(--white);
}

.specialty-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .specialty-card.specialty-offset {
        margin-top: 0;
    }
    
    .specialty-image {
        height: 300px;
    }
}

/* ========== BEST SPECIALTIES SECTION ========== */
.specialties-section {
    padding: 120px 0;
    background: var(--black);
}

.specialty-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
}

.specialty-image {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}

.specialty-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.9;
}

.specialty-card h4 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--white);
}

.specialty-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .specialty-image img {
        height: 280px;
    }
    
    .col-lg-3.mt-lg-5 {
        margin-top: 0 !important;
    }
}

/* ========== SEPARATOR IMAGE ========== */
.separator {
    width: 100px;
    height: auto;
    display: block;
    margin: 15px auto;
}

.separator-line {
    width: 100px;
    height: auto;
    display: block;
    margin: 15px auto;
    background: url('https://kalanidhithemes.com/live-preview/landing-page/delici/all-demo/Delici-Video-Hero-Center-Header/images/icons/separator.svg') no-repeat center;
    background-size: contain;
    min-height: 15px;
}




/* ========== PROPER MOBILE FIXES (NO OVERFLOW HIDDEN) ========== */

/* Fix scroll-to-top button positioning */
@media (max-width: 767px) {
    .scroll-top {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-top a {
        font-size: 16px;
    }
}

/* Fix container-fluid with px-5 causing overflow */
@media (max-width: 991px) {
    .container-fluid.px-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Mobile responsive fixes */
@media (max-width: 767px) {
    /* Fix rows with g-0 that cause overflow */
    .row.g-0 {
        margin-left: 0;
        margin-right: 0;
    }
    
    .row.g-0 > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Fix hero title */
    .hero-title {
        font-size: 36px;
        white-space: normal;
        line-height: 1.2;
    }
    
    /* Fix section titles */
    .section-title {
        font-size: 32px;
        background: transparent;
        color: var(--white);
        -webkit-text-fill-color: var(--white);
        animation: none;
    }
    
    /* Fix buttons */
    .btn-primary-gold,
    .btn-outline-gold {
        padding: 12px 25px;
        font-size: 11px;
    }
    
    /* Fix hero buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Fix navbar */
    .navbar-brand img {
        height: 35px;
    }
    
    /* Fix menu items */
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item img {
        width: 100%;
        height: 200px;
    }
    
    /* Fix about and special sections */
    .about-content-left,
    .special-content {
        padding: 40px 20px;
    }
    
    /* Fix reservation */
    .reservation-form-box,
    .contact-info-box {
        padding: 30px 20px;
    }
    
    /* Fix footer */
    .footer-main {
        padding: 30px 20px;
    }
    
    /* Fix newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 4px;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
    
    /* Fix video section */
    .video-quote {
        font-size: 24px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    /* Fix menu categories */
    .menu-categories {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-separator {
        display: none;
    }
    
    /* Fix featured sections */
    .featured-content,
    .featured-content-center {
        padding: 40px 20px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
}


/* ========== HIDE SCROLLBAR ========== */

/* Prevent any overflow */
html {
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
html,
body {
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
}

/* Hide scrollbar for all scrollable elements */
*::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

* {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

/* Ensure no scrollbar appears */
::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

::-webkit-scrollbar-track {
    display: none !important;
}

::-webkit-scrollbar-thumb {
    display: none !important;
}

::-webkit-scrollbar-button {
    display: none !important;
}

::-webkit-scrollbar-corner {
    display: none !important;
}
