:root {
    --primary-red: #ff5722;
    --primary-dark: #e64a19;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    max-height: 700px;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

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

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

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-family: 'Inter', sans-serif;
}

.hero-buttons .btn {
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Specialty Cards */
.specialty-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.specialty-image {
    height: 220px;
    overflow: hidden;
}

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

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

.specialty-content {
    padding: 1.5rem;
    background: white;
}

.specialty-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.specialty-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Chef's Special Dishes Section */
.chef-specials-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.chef-special-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255, 87, 34, 0.1);
}

.chef-special-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.2);
    border-color: rgba(255, 87, 34, 0.3);
}

.chef-special-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.chef-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.spice-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.spice-indicator i {
    color: #ff9800;
    margin-right: 0.3rem;
}

.chef-special-content {
    padding: 1.5rem;
}

.chef-dish-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.rating-badge {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.rating-badge i {
    font-size: 0.75rem;
}

.chef-dish-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.chef-dish-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chef-dish-tags .tag {
    background: #fff3f0;
    color: var(--primary-red);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

/* Gallery Cards */
.gallery-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

/* Contact Info */
.icon-box {
    width: 50px;
    height: 50px;
    background: #fff3f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

.icon-box i {
    color: var(--primary-red);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contact-form-wrapper {
    border: 1px solid #e0e0e0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 70px;
}

/* Menu Hero Section */
.menu-hero-section {
    position: relative;
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

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

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

.menu-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Testimonial */
.testimonial-card {
    border-left: 4px solid var(--primary-red);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Location Section */
.location-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.location-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3f0;
    border-radius: 12px;
    flex-shrink: 0;
    text-align: center;
}

.location-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.location-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.location-item:hover {
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.15);
    transform: translateY(-3px);
}

.map-container {
    border: 3px solid rgba(255, 87, 34, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: rgba(255, 87, 34, 0.3);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.2) !important;
}

.opening-hours-list {
    font-size: 0.95rem;
}

/* Menu Items (Text Only) */
.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-red);
    display: inline-block;
}

.menu-item {
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
}

.menu-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #ff5722;
}

.item-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    white-space: nowrap;
}

.item-description {
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .section-subtitle {
        font-size: clamp(0.85rem, 1.2vw, 1rem);
    }

    .specialty-content h4 {
        font-size: 1.1rem;
    }

    .specialty-content p {
        font-size: 0.85rem;
    }

    .chef-dish-title {
        font-size: 1.15rem;
    }

    .chef-dish-description {
        font-size: 0.85rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .item-name {
        font-size: 1rem;
    }

    .item-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }

    .hero-section {
        height: 50vh;
        min-height: 350px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
        margin-bottom: 1.25rem;
    }

    .menu-hero-section {
        height: 30vh;
        min-height: 220px;
        margin-top: 60px;
    }

    .menu-hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .menu-hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: clamp(0.8rem, 1.5vw, 0.95rem);
        margin-bottom: 1.5rem;
    }

    .specialty-image {
        height: 160px;
    }

    .specialty-content {
        padding: 1rem;
    }

    .specialty-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .specialty-content p {
        font-size: 0.8rem;
    }

    .chef-special-image {
        height: 200px;
    }

    .chef-special-content {
        padding: 1rem;
    }

    .chef-dish-title {
        font-size: 1.05rem;
    }

    .chef-dish-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .chef-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
        top: 10px;
        left: 10px;
    }

    .spice-indicator {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        bottom: 10px;
        right: 10px;
    }

    .rating-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .chef-dish-tags .tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .gallery-card {
        height: 180px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 1.5rem !important;
    }

    .location-item {
        padding: 1rem;
    }

    .location-icon {
        width: 45px;
        height: 45px;
    }

    .location-icon i {
        font-size: 1.3rem !important;
    }

    .map-container iframe {
        height: 300px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .menu-item {
        padding: 0.9rem;
    }

    .item-name {
        font-size: 0.95rem;
    }

    .item-description {
        font-size: 0.8rem;
    }

    .page-header {
        padding: 2rem 0 !important;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .page-header p {
        font-size: clamp(0.85rem, 1.5vw, 1rem);
    }

    .contact-form-wrapper {
        padding: 1.25rem !important;
    }

    .icon-box {
        width: 45px;
        height: 45px;
    }

    .icon-box i {
        font-size: 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.85rem;
    }

    .hero-section {
        height: 45vh;
        min-height: 300px;
        margin-top: 55px;
    }

    .hero-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
        margin-bottom: 1rem;
    }

    .menu-hero-section {
        height: 25vh;
        min-height: 180px;
        margin-top: 55px;
    }

    .menu-hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .menu-hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }

    .hero-buttons .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: clamp(0.75rem, 1.8vw, 0.9rem);
        margin-bottom: 1.25rem;
    }

    .specialty-image {
        height: 140px;
    }

    .specialty-content {
        padding: 0.85rem;
    }

    .specialty-content h4 {
        font-size: 0.95rem;
    }

    .specialty-content p {
        font-size: 0.75rem;
    }

    .chef-special-image {
        height: 170px;
    }

    .chef-special-content {
        padding: 0.85rem;
    }

    .chef-dish-title {
        font-size: 0.95rem;
    }

    .chef-dish-description {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }

    .chef-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.65rem;
        top: 8px;
        left: 8px;
    }

    .spice-indicator {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        bottom: 8px;
        right: 8px;
    }

    .rating-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .chef-dish-tags .tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .gallery-card {
        height: 160px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 1.25rem !important;
    }

    .contact-info .info-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .icon-box {
        margin: 0 auto 0.75rem;
        width: 40px;
        height: 40px;
    }

    .icon-box i {
        font-size: 0.9rem;
    }

    .location-item {
        padding: 0.85rem;
    }

    .location-icon {
        width: 40px;
        height: 40px;
    }

    .location-icon i {
        font-size: 1.1rem !important;
    }

    .map-container iframe {
        height: 250px;
    }

    .category-title {
        font-size: 1.15rem;
    }

    .menu-item {
        padding: 0.75rem;
    }

    .item-name {
        font-size: 0.9rem;
    }

    .item-description {
        font-size: 0.75rem;
    }

    .page-header {
        padding: 1.5rem 0 !important;
        margin-top: 55px;
    }

    .page-header h1 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
        margin-bottom: 0.5rem;
    }

    .page-header p {
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }

    .contact-form-wrapper {
        padding: 1rem !important;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-4 {
        margin-bottom: 1.25rem !important;
    }

    .mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .g-4 {
        gap: 1rem !important;
    }

    .g-3 {
        gap: 0.75rem !important;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .btn-lg {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }

    h1, .h1 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    h2, .h2 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    h3, .h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    }

    h4, .h4 {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    h5, .h5 {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    h6, .h6 {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }

    .display-4 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .display-5 {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
    }

    .lead {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}

.btn:active {
    transform: scale(0.98);
}

/* Additional Mobile Optimizations */
@media (max-width: 576px) {
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .rounded-pill {
        border-radius: 1rem !important;
    }

    .shadow-lg {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    .shadow {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .carousel-indicators {
        margin-bottom: 0.5rem;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
}