:root {
    --gold: #d4af37;
    --dark-bg: #0a0a0a;
    --card-bg: #161616;
    --text-gray: #b5b5b5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--dark-bg);
    color: #fff;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

/* --- Desktop Navbar (General Styles) --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    /* Reduced slightly to prevent overflow on laptops */
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Hide the checkbox input globally */
#check {
    display: none;
}

/* Navbar Link Styling */
nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    /* Reduced margin for laptop screens */
    font-size: 13px;
    /* Reduced font-size for better fit */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: 0.4s;
    white-space: nowrap;
}

/* Animated Underline Effect */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.4s ease-in-out;
}

nav a:hover,
nav a.active {
    color: var(--gold);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Auth Buttons Container */
.auth-buttons {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

/* Hamburger Menu Toggle (Hidden on large screens) */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1100;
}

/* --- Laptop Screen Specific Adjustment (1025px to 1200px) --- */
@media (max-width: 1200px) {
    nav a {
        margin: 0 6px;
        font-size: 11px;
    }

    header {
        padding: 15px 3%;
    }

    .logo {
        font-size: 20px;
    }
}

/* --- Tablet & Mobile Responsive (Checkbox Hack) --- */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        /* Show hamburger button */
    }

    /* Mobile Sidebar Navigation */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 1000;
        backdrop-filter: blur(15px);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    /* Logic: Slide in nav when checkbox is checked */
    #check:checked~nav {
        right: 0;
    }

    /* Highlight toggle color when menu is open */
    #check:checked~.menu-toggle {
        color: var(--gold);
    }

    nav a {
        margin: 15px 0;
        font-size: 18px;
    }

    .auth-buttons {
        margin-left: 0;
        margin-top: 25px;
        flex-direction: column;
        gap: 15px;
    }

    /* Ensure header stays as a row on mobile */
    header {
        padding: 15px 20px;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}

/* Hero Section with Fixed Background */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Keeps the background image fixed during scroll */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Rhythmic styling for Hero title */
.hero-content h1 {
    font-size: clamp(40px, 8vw, 85px);
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    /* Shadow added for better readability */
}

.hero-content p {
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 6px;
    /* Increased spacing for premium feel */
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn {
    padding: 12px 24px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: 0.4s;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    font-size: 14px;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
}

/* Section Layout */
section {
    padding: 100px 8%;
}

.title-box {
    text-align: center;
    margin-bottom: 60px;
}

.title-box h2 {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .title-box {
            margin-bottom: 40px;
        }
    .title-box h2 {
            font-size: 28px;
        }
}

.title-box .separator {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* Grid Layouts */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

/* Parallax Effect Styling */
.parallax-bg {
    height: 400px;
    /* Background image height */
    background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1600&q=80');
    background-attachment: fixed;
    /* Fixed background for parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    margin: 40px 0;
}

.parallax-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 50px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold);
}

/* Search Box Styling */
.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border-radius: 30px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

/* Classic Menu Section Styles */
.classic-menu-section {
    background: #121214;
    /* Dark theme background */
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.menu-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 60px;
    gap: 50px;
}

/* Reverse row for zigzag pattern */
.menu-row.reverse {
    flex-direction: row-reverse;
}

.menu-text-col {
    flex: 1;
    padding: 0 20px;
}

.menu-img-col {
    flex: 1;
}

.menu-img-col img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 20px 20px 0px rgba(197, 157, 95, 0.2);
    /* Subtle gold shadow */
}

/* Category Title (e.g., Refreshing Mocktails) */
.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c59d5f;
    /* Golden color from your brand */
    margin-bottom: 40px;
}

/* Individual Item Styling */
.menu-item {
    margin-bottom: 30px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(197, 157, 95, 0.3);
    margin-bottom: 10px;
}

.item-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #c59d5f;
    margin: 0;
}

.item-price {
    font-weight: 600;
    font-size: 1.3rem;
    color: #c59d5f;
}

.menu-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #aaa;
    /* Dimmed text for description */
    line-height: 1.6;
}

/* Responsive for Mobile */
@media (max-width: 768px) {

    .menu-row,
    .menu-row.reverse {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .menu-img-col img {
        height: 300px;
    }

    .category-title {
        font-size: 2rem;
    }
}

/* Banquet & Catering Cards */
.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 5px;
    border: 1px solid #222;
    transition: 0.4s;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(40%);
    transition: 0.5s;
}

.gallery-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Info Boxes (Visiting Hours / Contact) */
.info-box {
    background: var(--card-bg);
    padding: 30px;
    border-left: 4px solid var(--gold);
    margin-bottom: 20px;
}

.info-box h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* Booking Form */
/* Booking Form */

/* online oder section */

/* 1. Main Container and Grid Setup */
.rt-order-system {
    background-color: #010103;
    /* Dark Background */
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

.rt-container {
    display: flex;
    /* Flexbox used for 3-column layout */
    max-width: 1300px;
    margin: 0 auto;
    gap: 25px;
    padding: 0 20px;
    align-items: flex-start;
}

/* 2. Left Sidebar (Categories) */
.rt-sidebar {
    width: 220px;
    position: sticky;
    top: 100px;
    background: #0a0a0c;
    padding: 20px;
    border-radius: 10px;
}

.rt-side-title {
    color: #c59d5f;
    /* Golden Color */
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.rt-cat-list {
    list-style: none;
    padding: 0;
}

.rt-cat-list li {
    margin-bottom: 10px;
}

.rt-cat-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.rt-cat-list li.active a,
.rt-cat-list li a:hover {
    color: #ff4d6d;
    /* Highlight Color */
}

/* 3. Middle Menu Section */
.rt-menu-main {
    flex: 1;
    /* Occupies the middle space */
}

.rt-search-box input {
    width: 100%;
    padding: 12px 20px;
    background: #1a1a1d;
    border: 1px solid #333;
    border-radius: 30px;
    color: white;
    margin-bottom: 30px;
}

.rt-group-title {
    color: #ffffff;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Food Card Design */
.rt-item-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rt-card-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rt-info h4 {
    margin: 5px 0;
    font-size: 1.1rem;
    color: #111;
}

.rt-price {
    font-weight: 600;
    color: #ff4d6d;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rt-img-hold img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

.rt-add-btn {
    background: #ff4d6d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

/* 4. Right Sidebar (Order Summary/Cart) */
.rt-cart-sidebar {
    width: 320px;
    position: sticky;
    top: 100px;
}

.rt-cart-box {
    background: #121214;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
}

.rt-cart-box h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.rt-total-box {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.rt-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4d6d;
}

.rt-order-now {
    width: 100%;
    background: #ff4d6d;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
}

/* Veg/Non-veg Symbol Styling */
.rt-symbol {
    width: 12px;
    height: 12px;
    display: block;
    border: 1px solid;
    padding: 2px;
}

.rt-symbol.non-veg {
    border-color: red;
}

.rt-symbol.non-veg::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
    margin: auto;
}

/* ============================================================
   MOBILE RESPONSIVE STYLES (Royal Taste Order System)
   ============================================================ */

/* Target devices with screen width 768px or smaller */
@media (max-width: 768px) {

    /* 1. Layout Adjustment: Switch from Row to Column */
    .rt-container {
        flex-direction: column;
        padding: 0 15px;
        gap: 20px;
    }

    /* 2. Sidebar (Categories): Reset width and position */
    .rt-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        padding: 15px;
        margin-bottom: 10px;
    }

    /* Horizontal Category Scroll for better Mobile UX */
    .rt-cat-list {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling for iOS */
    }

    .rt-cat-list li {
        margin-bottom: 0;
        white-space: nowrap;
    }

    /* 3. Main Menu: Occupy full width of the screen */
    .rt-menu-main {
        width: 100%;
    }

    .rt-search-box input {
        margin-bottom: 20px;
        padding: 12px 15px;
    }

    /* 4. Food Item Cards: Scaling for smaller displays */
    .rt-item-card {
        padding: 12px;
        margin-bottom: 15px;
    }

    .rt-img-hold img {
        width: 80px;
        height: 80px;
    }

    .rt-info h4 {
        font-size: 1rem;
    }

    .rt-price {
        font-size: 1.1rem;
    }

    /* 5. Cart Sidebar (Order Summary): Stack below the menu */
    .rt-cart-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .rt-cart-box {
        padding: 15px;
        /* Shadow adds depth when items are stacked */
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    }

    /* 6. Navigation Header: Center elements for mobile view */
    header {
        flex-direction: column;
        padding: 15px;
        text-align: center;
    }

    nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        font-size: 14px;
    }
}

/* Specific adjustments for very small screens (320px - 480px) */
@media (max-width: 480px) {
    .rt-card-flex {
        gap: 8px;
    }

    .rt-add-btn {
        padding: 6px 15px;
        font-size: 12px;
    }

    .rt-group-title {
        font-size: 1.4rem;
    }
}

/* Contact Form Box Styling */
.contact-form-box {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-form-box input,
.contact-form-box textarea {
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    width: 100%;
    outline: none;
    transition: 0.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: var(--gold);
}

/* Responsive adjustment */
@media(max-width: 768px) {
    .contact-form-box {
        margin-top: 30px;
    }
}
/* Footer */

/* Modern Multi-Column Footer */
.footer-section {
    background: #050505;
    padding: 80px 8% 30px;
    border-top: 1px solid #222;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
}

.footer-col p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Social Icons in Footer */
.social-icons {
    margin-top: 20px;
}

.social-icons i {
    color: var(--gold);
    font-size: 20px;
    margin-right: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* Newsletter Styling */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    width: 70%;
    margin-bottom: 0;
}

.newsletter-form .btn {
    width: 30%;
    padding: 12px;
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #555;
    font-size: 13px;
}

/* Responsive Footer */
@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}

/* Responsive Styles */
@media(max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    section {
        padding: 70px 20px;
    }

    nav a {
        font-size: 12px;
        margin: 5px;
    }
}

/* separet-section */
/* Mini Hero Banner */
.mini-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.mini-hero-content h1 {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 10px;
}

.mini-hero-content p {
    color: #fff;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Item Details Section */
.item-details {
    padding: 80px 8%;
    background: #0a0a0a;
}

.detail-img-wrapper {
    overflow: hidden;
    border: 1px solid var(--gold);
    padding: 15px;
    position: relative;
}

.detail-img-wrapper img {
    width: 100%;
    transition: transform 0.8s ease;
    display: block;
}

/* Image Hover Effect */
.detail-img-wrapper:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gold-text {
    color: var(--gold);
    font-size: 35px;
    margin-bottom: 15px;
}

.rating-box {
    color: #ffcc00;
    margin-bottom: 20px;
}

.rating-box span {
    color: #888;
    margin-left: 10px;
    font-size: 14px;
}

.description {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.price {
    font-size: 30px;
    color: #fff;
    margin-bottom: 25px;
}

.features-list {
    margin-bottom: 40px;
}

.features-list span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 14px;
}

.features-list i {
    margin-right: 10px;
}

/* Responsive Design */
@media(max-width: 768px) {
    .mini-hero-content h1 {
        font-size: 35px;
    }

    .item-details {
        padding: 50px 20px;
    }
}



/* Universal Mini Banner Styling */
.mini-banner {
    height: 45vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect for desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
    padding: 0 20px; /* Safe space for content */
}

.banner-content {
    z-index: 2;
    transition: transform 0.5s ease;
    width: 100%; /* Ensures content stays centered */
}

.mini-banner:hover .banner-content {
    transform: translateY(-10px);
}

.banner-title {
    font-size: 55px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s;
    line-height: 1.2; /* Better spacing for multi-line titles */
}

.mini-banner:hover .banner-title {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    margin: 0 10px;
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
    font-weight: 600;
}

/* --- Responsive adjustment for Mobile and Tablets --- */
@media(max-width: 768px) {
    .mini-banner {
        height: 40vh;
        background-attachment: scroll; /* Disables parallax on mobile for better performance */
    }

    .banner-title {
        font-size: 32px; /* Reduced to fit in small screens */
        letter-spacing: 1px;
        margin-bottom: 10px;
        padding: 0 10px;
        word-wrap: break-word; /* Prevents long words from overflowing */
    }

    .breadcrumb {
        font-size: 11px; /* Smaller breadcrumbs for mobile */
    }
}

/* For Extra Small Devices (iPhone/Android Small) */
@media(max-width: 480px) {
    .banner-title {
        font-size: 26px;
    }
    
    .mini-banner {
        height: 50vh;
    }
}