/* Ayurveda Restaurant - Enhanced UX CSS */
/* Phase 3: User Experience Enhancements */

/* ================================
   HERO SECTION IMPROVEMENTS
   ================================ */

/* Hero Section Container */
#hero-section {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

#heroCarousel {
    height: 100vh;
    min-height: 600px;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(252,119,0,0.3) 100%);
    z-index: 1;
}

/* Hero Content */
#heroCarousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    padding: 30px;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

/* Hero Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.hero-title .highlight {
    color: #f1c619;
    position: relative;
    display: inline-block;
}

#heroCarousel .hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    font-weight: 400;
    opacity: 0.95;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #fc7700 0%, #ff8c1a 100%);
    color: #fff;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, #fc7700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(252,119,0,0.5);
    color: #fff;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: #fff;
    color: #fc7700;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.4);
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 8px;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: #f1c619;
    width: 40px;
    border-radius: 6px;
}

/* Carousel Controls */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(252,119,0,0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

#heroCarousel .carousel-control-prev {
    left: 30px;
}

#heroCarousel .carousel-control-next {
    right: 30px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: #fc7700;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: fadeInUp 1s ease;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: backwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    #heroCarousel .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    #heroCarousel {
        height: 80vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    #heroCarousel .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
    }
    
    #heroCarousel {
        height: 70vh;
        min-height: 400px;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
        opacity: 0.7;
    }
    
    #heroCarousel .carousel-control-prev {
        left: 15px;
    }
    
    #heroCarousel .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    #heroCarousel .hero-subtitle {
        font-size: 0.95rem;
    }
    
    #heroCarousel .carousel-caption {
        padding: 15px;
    }
}

/* ================================
   HOME ABOUT SECTION IMPROVEMENTS
   ================================ */

#home-about {
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    position: relative;
    overflow: hidden;
}

#home-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252,119,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
}

.about-label {
    display: inline-block;
    color: #fc7700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.8rem;
    color: #f1c619;
    font-family: 'Lobster', cursive;
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fc7700 0%, #f1c619 100%);
    margin: 25px 0;
    border-radius: 2px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.about-text strong {
    color: #fc7700;
    font-weight: 600;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(252, 119, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(252, 119, 0, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: #fc7700;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* About Button */
.btn-about-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #fc7700 0%, #ff8c1a 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 119, 0, 0.3);
    margin-top: 20px;
    border: none;
}

.btn-about-primary:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, #fc7700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(252, 119, 0, 0.5);
    color: #fff;
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #fc7700 0%, #ff8c1a 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(252, 119, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.about-badge i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.9rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Target existing HTML tags in About section */
#home-about h6 {
    display: inline-block;
    color: #fc7700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

#home-about h2 {
    font-size: 2.8rem;
    color: #f1c619;
    font-family: 'Lobster', cursive;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

#home-about h4 {
    font-size: 1.3rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
}

#home-about h4::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fc7700 0%, #f1c619 100%);
    margin: 25px 0;
    border-radius: 2px;
}

#home-about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

#home-about .btn {
    background: linear-gradient(135deg, #fc7700 0%, #ff9f40 100%) !important;
    color: white !important;
    border: none !important;
    padding: 14px 35px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 20px rgba(252, 119, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

#home-about .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(252, 119, 0, 0.4) !important;
    background: linear-gradient(135deg, #ff9f40 0%, #fc7700 100%) !important;
}

/* ========================================
   SPECIAL DISHES SECTION IMPROVEMENTS
   ======================================== */

#special-product {
    background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
    padding: 80px 0;
    position: relative;
}

#special-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at top center, rgba(241, 198, 25, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Headers */
.special-product-top {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    color: #fc7700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Dish Cards */
.dish-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(252, 119, 0, 0.2);
}

/* Image Wrapper */
.dish-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.dish-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image-wrapper img {
    transform: scale(1.1);
}

/* Badges */
.dish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dish-badge.vegetarian {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.dish-badge.popular {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
}

.dish-badge.spicy {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
}

.dish-badge i {
    font-size: 1rem;
}

/* Dish Content */
.dish-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dish-name {
    font-family: 'Lobster', cursive;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 12px;
}

.dish-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Dish Footer */
.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.dish-price {
    font-size: 1.5rem;
    color: #fc7700;
    font-weight: 700;
}

.btn-dish-order {
    background: linear-gradient(135deg, #fc7700 0%, #ff9f40 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 119, 0, 0.3);
}

.btn-dish-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 119, 0, 0.4);
    background: linear-gradient(135deg, #ff9f40 0%, #fc7700 100%);
    color: white;
}

/* View Menu Button */
.btn-view-menu {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-view-menu:hover {
    background: white;
    color: #fc7700;
    border-color: #fc7700;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 119, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .dish-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    #special-product {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .dish-card {
        margin-bottom: 20px;
    }
    
    .dish-image-wrapper {
        height: 220px;
    }
    
    .dish-name {
        font-size: 1.5rem;
    }
    
    .dish-price {
        font-size: 1.3rem;
    }
    
    .btn-view-menu {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* ================================
   0. ENHANCED NAVIGATION STYLES
   ================================ */

/* Navbar CTA Button */
.nav-cta-btn {
    background: linear-gradient(135deg, #fc7700 0%, #ff8c1a 100%) !important;
    border: none !important;
    padding: 10px 24px !important;
    margin-left: 15px;
    border-radius: 25px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(252, 119, 0, 0.3);
    transition: all 0.3s ease;
    color: #fff !important;
}

.nav-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(252, 119, 0, 0.5);
    background: linear-gradient(135deg, #ff8c1a 0%, #fc7700 100%) !important;
}

.nav-cta-btn:active {
    transform: translateY(-1px);
}

/* Nav Link Improvements */
.navbar-nav .nav-link {
    padding: 10px 18px !important;
    margin: 0 5px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover {
    color: #fc7700 !important;
    background-color: rgba(252, 119, 0, 0.08);
}

/* Active nav item underline effect */
.navbar-nav .nav-item.active .nav-link {
    color: #fc7700 !important;
    font-weight: 600;
}

.navbar-nav .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #fc7700, #f1c619);
    border-radius: 2px;
}

/* Navbar logo improvements */
.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navbar on scroll improvements */
.main-nav.scrolled {
    background-color: #fc7700 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Ensure nav links are visible when scrolled (white text on orange bg) */
.main-nav.scrolled .navbar-nav .nav-link {
    color: #fff !important;
}

.main-nav.scrolled .navbar-nav .nav-item.active .nav-link {
    color: #fff !important;
    font-weight: 700;
}

.main-nav.scrolled .navbar-nav .nav-item.active .nav-link::after {
    background: #fff;
}

.main-nav.scrolled .navbar-nav .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Search icon visibility when scrolled (white on orange) */
.main-nav.scrolled .nav-search-toggle {
    color: #fff !important;
}

.main-nav.scrolled .nav-search-toggle:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* Book Table button on scrolled navbar */
.main-nav.scrolled .nav-cta-btn {
    background: #fff !important;
    color: #fc7700 !important;
}

.main-nav.scrolled .nav-cta-btn:hover {
    background: #f8f8f8 !important;
    color: #fc7700 !important;
}

/* Mobile menu improvements */
@media (max-width: 768px) {
    .nav-cta-btn {
        margin: 10px 0 !important;
        display: block;
        text-align: center;
        width: calc(100% - 30px);
        margin-left: 15px !important;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        margin: 2px 0;
    }
    
    .navbar-nav {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-item.active .nav-link::after {
        bottom: 8px;
        left: 20px;
        transform: none;
    }
}

/* Toggler icon improvements */
.navbar-toggler {
    border: 2px solid rgba(252, 119, 0, 0.3);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(252, 119, 0, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(252, 119, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav Search Styles */
.nav-search-toggle {
    color: #333 !important;
    font-size: 18px;
    padding: 10px 15px !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-search-toggle:hover {
    color: #fc7700 !important;
    background-color: rgba(252, 119, 0, 0.08) !important;
    border-radius: 5px;
}

.nav-search-box {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    width: 320px;
    z-index: 1000;
    margin-top: 10px;
    animation: slideDown 0.3s ease;
}

.nav-search-box.active {
    display: block;
}

.nav-search-box input {
    border: 2px solid #fc7700;
    border-radius: 25px;
    padding: 10px 45px 10px 20px;
}

.nav-search-box input:focus {
    box-shadow: 0 0 0 0.2rem rgba(252, 119, 0, 0.25);
}

.nav-search-box .btn-close {
    position: absolute;
    top: 23px;
    right: 30px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .nav-search-box {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
    }
    
    .nav-search-toggle {
        width: 100%;
        text-align: left;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   1. BACK TO TOP BUTTON
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #fc7700;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-size: 20px;
}

.back-to-top:hover {
    background-color: #e66900;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top:focus {
    outline: 3px solid #f1c619;
    outline-offset: 2px;
}

/* ================================
   2. SKIP TO MAIN CONTENT
   ================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #fc7700;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100000;
    border-radius: 0 0 4px 0;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #f1c619;
}

/* ================================
   3. ENHANCED FORM STYLES
   ================================ */
.form-control:focus {
    border-color: #fc7700;
    box-shadow: 0 0 0 0.2rem rgba(252, 119, 0, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   4. NOTIFICATION TOAST
   ================================ */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background-color: #17a2b8;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 350px;
    font-family: 'Nunito', sans-serif;
}

.notification-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-toast i {
    margin-right: 10px;
    font-size: 18px;
}

/* ================================
   5. ENHANCED NAVIGATION
   ================================ */
.main-nav {
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #f1c619;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .active .nav-link::after {
    width: 80%;
}

.navbar-nav .nav-link:focus {
    outline: 2px solid #f1c619;
    outline-offset: 4px;
}

/* ================================
   6. IMPROVED MOBILE MENU
   ================================ */
.navbar-toggler {
    border: 2px solid #fff;
    padding: 8px 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: 3px solid #f1c619;
    outline-offset: 2px;
}

.navbar-toggler.active {
    transform: rotate(90deg);
}

.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .navbar-collapse {
        background-color: rgba(0,0,0,0.95);
        padding: 20px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px;
        margin: 5px 0;
        border-radius: 4px;
        transition: all 0.2s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(252, 119, 0, 0.2);
        transform: translateX(10px);
    }
}

/* ================================
   7. BUTTON ENHANCEMENTS
   ================================ */
.btn-default,
.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-default::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-default:hover::before,
.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-default:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-default:active,
.btn-primary:active {
    transform: translateY(0);
}

.btn-default:focus,
.btn-primary:focus {
    outline: 3px solid #f1c619;
    outline-offset: 2px;
}

/* ================================
   8. ENHANCED IMAGES
   ================================ */
img {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.zoom-effect {
    animation: zoomPulse 0.3s ease;
}

@keyframes zoomPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ================================
   9. ANIMATE ON SCROLL
   ================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   10. IMPROVED CAROUSEL
   ================================ */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(252, 119, 0, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(252, 119, 0, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: 3px solid #f1c619;
    outline-offset: 2px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

/* ================================
   11. SOCIAL MEDIA ICONS
   ================================ */
.social li a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social li a:hover {
    transform: translateY(-5px) rotate(5deg);
}

.social li a:focus {
    outline: 3px solid #f1c619;
    outline-offset: 2px;
}

/* ================================
   12. LOADING STATE
   ================================ */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f1c619;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================
   13. IMPROVED FOCUS STATES
   ================================ */
*:focus {
    outline: 2px solid #fc7700;
    outline-offset: 2px;
}

a:focus,
button:focus {
    outline: 3px solid #f1c619;
    outline-offset: 3px;
}

/* ================================
   14. RESPONSIVE IMPROVEMENTS
   ================================ */
@media (max-width: 767px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .notification-toast {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* ================================
   15. ACCESSIBILITY IMPROVEMENTS
   ================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-default,
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .navbar-nav .nav-link::after {
        height: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   ENHANCED FOOTER STYLES
   ======================================== */

#footer {
    background: linear-gradient(135deg, #158809 0%, #0f6806 100%);
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f1c619 0%, #fc7700 50%, #f1c619 100%);
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-title {
    font-family: 'Lobster', cursive;
    font-size: 1.5rem;
    color: #f1c619;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f1c619 0%, #fc7700 100%);
    border-radius: 2px;
}

.footer-text {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: #f1c619;
    color: #158809;
    transform: translateY(-5px) rotate(5deg);
    border-color: #fc7700;
    box-shadow: 0 8px 20px rgba(241, 198, 25, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-family: 'Nunito', sans-serif;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 0.7rem;
    color: #f1c619;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #f1c619;
    padding-left: 5px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: #f1c619;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact li span {
    line-height: 1.6;
}

/* Footer Form */
.footer-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #f1c619;
    box-shadow: 0 0 0 0.2rem rgba(241, 198, 25, 0.25);
    color: #fff;
}

.btn-footer-submit {
    background: linear-gradient(135deg, #f1c619 0%, #fc7700 100%);
    color: #158809;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 198, 25, 0.3);
}

.btn-footer-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 198, 25, 0.5);
    background: linear-gradient(135deg, #fc7700 0%, #f1c619 100%);
    color: #fff;
}

/* Footer End Section */
#footer-end {
    background: #0d5e04;
    padding: 20px 0;
}

.footer-copyright {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
    font-family: 'Nunito', sans-serif;
}

.footer-copyright i {
    color: #f1c619;
}

.footer-links-bottom {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
}

.footer-links-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-links-bottom a:hover {
    color: #f1c619;
}

/* Responsive */
@media (max-width: 768px) {
    #footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li a,
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-copyright,
    .footer-links-bottom {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

/* ================================
   16. PRINT STYLES
   ================================ */
@media print {
    .navbar,
    .back-to-top,
    .notification-toast,
    .skip-link {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Hero Section */
.top-wrapper .overlay .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    font-weight: 400;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

/* About Welcome Section */
.about-welcome {
    background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
}

.lead-text {
    font-size: 1.3rem;
    color: #fc7700;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Lobster', cursive;
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-paragraph strong {
    color: #fc7700;
    font-weight: 700;
}

.divider-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fc7700 0%, #f1c619 100%);
    border-radius: 2px;
}

/* Feature Badges Inline */
.about-features-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(252, 119, 0, 0.1) 0%, rgba(241, 198, 25, 0.1) 100%);
    border-radius: 25px;
    border: 2px solid rgba(252, 119, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 119, 0, 0.2);
    border-color: #fc7700;
}

.feature-badge i {
    color: #fc7700;
    font-size: 1.3rem;
}

.feature-badge span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.about-image-grid img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image-grid img:hover {
    transform: scale(1.03);
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(252, 119, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fc7700 0%, #ff9f40 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(252, 119, 0, 0.3);
}

.feature-card h5 {
    font-family: 'Lobster', cursive;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, #fff 0%, #fffbf5 100%);
}

.events-image-wrapper img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.events-image-wrapper img:hover {
    transform: scale(1.03);
}

.capacity-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(252, 119, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #fc7700;
}

.capacity-item i {
    font-size: 2.5rem;
    color: #fc7700;
}

.capacity-item h6 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.capacity-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.btn-about-cta {
    background: linear-gradient(135deg, #fc7700 0%, #ff9f40 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(252, 119, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(252, 119, 0, 0.4);
    background: linear-gradient(135deg, #ff9f40 0%, #fc7700 100%);
    color: white;
}

/* Press Section */
.press-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.press-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.press-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #158809 0%, #0f6806 100%);
    border-radius: 12px;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.press-card h5 {
    font-family: 'Lobster', cursive;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.press-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-press-link {
    color: #fc7700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-press-link:hover {
    color: #158809;
    gap: 12px;
}

.btn-press-link i {
    font-size: 0.8rem;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #158809 0%, #0f6806 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 198, 25, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta h2 {
    font-family: 'Lobster', cursive;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.about-cta p {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.btn-cta-light {
    background: white;
    color: #158809;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-light:hover {
    background: #f1c619;
    color: white;
    border-color: #f1c619;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(241, 198, 25, 0.4);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: #158809;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-features-inline {
        flex-direction: column;
    }
    
    .feature-badge {
        justify-content: center;
    }
    
    .capacity-info {
        gap: 15px;
    }
    
    .capacity-item {
        padding: 15px;
    }
    
    .capacity-item i {
        font-size: 2rem;
    }
    
    .about-cta h2 {
        font-size: 1.75rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-light,
    .btn-cta-outline {
        justify-content: center;
    }
}



/* ========================================
   MENU PAGE STYLES
   ======================================== */

/* Menu Navigation */
.menu-nav-section {
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu-categories-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: #fc7700 #f0f0f0;
}

.menu-categories-nav::-webkit-scrollbar {
    height: 6px;
}

.menu-categories-nav::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.menu-categories-nav::-webkit-scrollbar-thumb {
    background: #fc7700;
    border-radius: 10px;
}

.menu-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.menu-nav-link:hover {
    background: linear-gradient(135deg, #fc7700 0%, #ff9f40 100%);
    border-color: #fc7700;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 119, 0, 0.3);
}

.menu-nav-link i {
    font-size: 1.1rem;
}

/* Menu Sections */
.menu-section {
    scroll-margin-top: 120px;
}

.menu-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-section-header .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Menu Item Cards */
.menu-item-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-left: 4px solid #fc7700;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 119, 0, 0.15);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.menu-item-name {
    font-family: 'Lobster', cursive;
    font-size: 1.4rem;
    color: #333;
    margin: 0;
    flex: 1;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fc7700;
    white-space: nowrap;
}

.menu-item-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Menu Badges */
.menu-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
    margin-top: 8px;
}

.menu-badge.vegan {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
}

.menu-badge.vegetarian {
    background: linear-gradient(135deg, #8bc34a 0%, #aed581 100%);
    color: white;
}

.menu-badge.spicy {
    background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
    color: white;
}

.menu-badge.popular {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    color: white;
}

.menu-badge.new {
    background: linear-gradient(135deg, #fc7700 0%, #ff9f40 100%);
    color: white;
}

.menu-badge i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-categories-nav {
        gap: 8px;
    }
    
    .menu-nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-item-name {
        font-size: 1.2rem;
    }
    
    .menu-item-price {
        font-size: 1.3rem;
    }
    
    .menu-item-card {
        padding: 20px;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(252, 119, 0, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fc7700 0%, #f1c619 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 15px rgba(252, 119, 0, 0.3);
}

.contact-info-card h5 {
    font-family: 'Lobster', cursive;
    color: #fc7700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Reservation Image Section */
.reservation-image {
    position: relative;
}

.reservation-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.reservation-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #fc7700 0%, #f1c619 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.reservation-badge i {
    font-size: 2rem;
}

.reservation-badge span {
    font-family: 'Lobster', cursive;
    font-size: 1.3rem;
}

/* Form Sections */
.form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.reservation-form .form-floating > label,
.contact-form .form-floating > label {
    color: #666;
}

.reservation-form .form-control:focus,
.contact-form .form-control:focus {
    border-color: #fc7700;
    box-shadow: 0 0 0 0.2rem rgba(252, 119, 0, 0.15);
}

.reservation-form .form-control,
.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.reservation-form .form-control:hover,
.contact-form .form-control:hover {
    border-color: #fc7700;
}

.reservation-form textarea.form-control,
.contact-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Map Section */
.map-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.map-section h3 {
    font-family: 'Lobster', cursive;
    color: #fc7700;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 119, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #158809 0%, #22a612 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 5px 15px rgba(21, 136, 9, 0.3);
}

.feature-card h5 {
    font-family: 'Lobster', cursive;
    color: #333;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #fc7700 0%, #f1c619 100%);
    border: none;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(252, 119, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 119, 0, 0.4);
    background: linear-gradient(135deg, #f1c619 0%, #fc7700 100%);
}

.btn-outline-primary {
    color: #fc7700;
    border: 2px solid #fc7700;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #fc7700;
    border-color: #fc7700;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 119, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .reservation-image img {
        height: 350px;
    }
    
    .reservation-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .reservation-badge i {
        font-size: 1.5rem;
    }
    
    .reservation-badge span {
        font-size: 1.1rem;
    }
    
    .form-section, .map-section {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .reservation-image img {
        height: 250px;
    }
    
    .form-section, .map-section {
        padding: 25px 15px;
    }
}

/* ========================================
   Gallery Page Styles
   ======================================== */

/* Gallery Filters */
.gallery-filters {
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.gallery-filter-btn:hover {
    border-color: #fc7700;
    color: #fc7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 119, 0, 0.2);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, #fc7700 0%, #f1c619 100%);
    border-color: #fc7700;
    color: white;
    box-shadow: 0 5px 15px rgba(252, 119, 0, 0.3);
}

.gallery-filter-btn i {
    font-size: 0.9rem;
}

/* Gallery Grid */
.gallery-grid {
    margin-bottom: 40px;
}

.gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 119, 0, 0.9) 0%, rgba(241, 198, 25, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-icon {
    transform: scale(1);
}

/* Gallery Modal/Lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

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

.gallery-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

.gallery-close {
    position: fixed;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(252, 119, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: #fc7700;
    transform: rotate(90deg);
}

.mySlides {
    display: none;
    text-align: center;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mySlides img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.slide-number {
    color: #f1c619;
    font-size: 14px;
    padding: 8px 16px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    font-weight: 600;
}

.gallery-prev,
.gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(252, 119, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 10001;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #fc7700;
    transform: scale(1.1);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .gallery-card {
        height: 250px;
    }
    
    .gallery-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 3px;
    }
    
    .gallery-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .gallery-card {
        height: 200px;
    }
    
    .gallery-filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .gallery-filter-btn i {
        display: none;
    }
    
    .gallery-modal {
        padding-top: 30px;
    }
    
    .gallery-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}
