@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --primary-color: #dc2626;
    --primary-dark: #dc2626;
    --primary-light: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

/* Enhanced preloader with restaurant elements */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9990;
    transition: all 0.8s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.preloader-logo {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    font-family: "Playfair Display", serif;
    animation: logoFloat 2s ease-in-out infinite alternate;
}

.preloader-chef {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    animation: chefBounce 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.preloader-text {
    color: white;
    font-size: 1.2rem;
    opacity: 0.9;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes chefBounce {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes textPulse {
    0%,
    100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
    }
}

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

/* Mobile sidebar navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    z-index: 9998;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem 0;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.sidebar-brand {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    text-decoration: none;
}

.sidebar-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: white;
    transform: translateX(5px);
}

.custom-toggler {
    border: none;
    background: none;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero carousel with multiple banners */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: slideInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
}

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

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

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

.hero-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Enhanced specialty dishes section */
.specialty-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fef7ed, #fff7ed);
    position: relative;
    overflow: hidden;
}

.specialty-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(217, 119, 6, 0.05) 0%,
        transparent 70%
    );
    transform: rotate(15deg);
}

.specialty-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.specialty-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.specialty-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

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

.specialty-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.specialty-content {
    padding: 2rem;
}

.specialty-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.specialty-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.specialty-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.specialty-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.specialty-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.specialty-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Story section styles */
.story-section {
    padding: 8rem 0;
    background: white;
}

.story-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.story-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: translateY(-10px);
}

.story-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Enhanced menu section with better cards */
.menu-section {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.food-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.food-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.food-card:hover::before {
    opacity: 0.05;
}

.food-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.food-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.food-card:hover .food-image {
    transform: scale(1.05);
}

.food-card .card-body {
    position: relative;
    z-index: 2;
}

.food-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.food-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: white;
    overflow: hidden;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

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

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: white;
}

.map-wrapper {
    margin-top: 3rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced QR Code Section */
.qr-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.qr-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.qr-instructions {
    margin-top: 2rem;
}

.instruction-step {
    text-align: center;
    margin-bottom: 1rem;
}

.instruction-step i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .story-title,
    .section-title,
    .cta-title {
        font-size: 2.2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .specialty-section {
        padding: 4rem 0;
    }

    .navbar-toggler {
        display: none;
    }

    .custom-toggler {
        display: block;
    }

    .category-filter {
        justify-content: center;
    }

    .category-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .mobile-sidebar,
    .sidebar-overlay,
    .custom-toggler {
        display: none;
    }
}
.auth-container {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
        url("https://plus.unsplash.com/premium_photo-1661883237884-263e8de8869b?q=80&w=1189&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.auth-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin-top: 100px;
}

.auth-header {
    background: #ffffff;
    color: rgb(49, 49, 49);
    font-weight: 600;
    padding: 2rem;
    text-align: center;
}

.auth-logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #f39c12;
}

.auth-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: "Playfair", sans-serif;
}

.auth-subtitle {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.auth-form {
    padding: 0rem 2rem 2rem;
}

.auth-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.auth-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.auth-input:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0a0;
    font-size: 1.1rem;
}
.auth-button {
    width: 100%;
    padding: 12px;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.auth-button:hover {
    background: #2e2e2e;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(88, 88, 88, 0.3);
}

.auth-forgot {
    text-align: center;
    margin-top: 1rem;
}

.auth-forgot a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
}

.auth-forgot a:hover {
    text-decoration: underline;
}

.auth-footer {
    background: #f8f9fa;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6b6b6b;
}

@media (max-width: 576px) {
    .auth-container {
        padding: 10px;
    }

    .auth-form {
        padding: 1.5rem;
    }

    .auth-header {
        padding: 1.5rem;
    }
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
}
.toast:not(.showing):not(.show) {
    opacity: 0;
}
.toast.hide {
    display: none;
}

.toast-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}
.toast-container > :not(:last-child) {
    margin-bottom: 16px;
}

.toast-header {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
}
.toast-header .btn-close {
    margin-right: -0.375rem;
    margin-left: 0.75rem;
}

.toast-body {
    padding: 0.75rem;
    word-wrap: break-word;
}
iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
}

@media (max-width: 576px) {

    .contact-section {
        margin-top: 0rem;
        padding-top: 3rem;  
    }

    .contact-section .section-title {
        font-size: 1.5rem;
    }
    .contact-section .section-subtitle {
        font-size: 0.9rem;
    }
    .contact-section p,
    .contact-section .lead {
        font-size: 0.9rem;
    }
    .contact-section .contact-info h5 {
        font-size: 1rem;
    }
    .contact-section .contact-info p {
        font-size: 0.85rem;
    }
    .contact-section .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .contact-section .form-control,
    .contact-section .form-select,
    .contact-section textarea {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem; 
        height: auto; 
    }
    .contact-section textarea {
        min-height: 90px; 
    }
}

@media (max-width: 576px) {
    .story-section {
        margin-top: 0rem;
        padding-top: 3rem;  
    }

    .story-section .story-subtitle {
        font-size: 0.9rem;
    }
    .story-section .story-title {
        font-size: 1.5rem;
    }
    .story-section .lead {
        font-size: 0.9rem;
    }
    .story-section p {
        font-size: 0.9rem;
    }
    .story-section .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    /* Image spacing */
    .story-section .story-image img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .menu-section {
        margin-top: 0rem;
        padding-top: 3rem;  
    }
    .menu-section .section-title {
        font-size: 1.5rem;
    }
    .menu-section .section-subtitle {
        font-size: 0.9rem;
    }
    .menu-section .lead {
        font-size: 0.9rem;
    }

    .menu-section .category-btn {
        font-size: 0.85rem;
        padding: 0.2rem 0.75rem;
        margin: 0.1rem;
    }

    /* Food cards */
    .menu-section .food-card {
        padding: 0.5rem;
    }
    .menu-section .food-title {
        font-size: 0.95rem;
    }
    .menu-section .food-price {
        font-size: 0.85rem;
    }
    .menu-section small {
        font-size: 0.75rem;
    }

    .menu-section .food-image {
        height: 140px;       
        object-fit: cover;  
        border-radius: 0.5rem;
    }

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

@media (max-width: 576px) {
    footer {
        text-align: center; 
    }
    footer p {
        font-size: 0.85rem;  
        line-height: 1.4;   
    }
    footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    .site-name {
        font-size: 0.9rem;
    }
    .preloader-img {
        height: 30px;
        max-height: 30px;
    }
}



