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

:root {
    --primary-color: #8B0000;
    --secondary-color: #FF6347;
    --accent-color: #FFD700;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Source Sans Pro', arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), #6B0000);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-container h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-color), #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

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

/* Hero Section with Indian cuisine background */
main {
    margin-top: 70px;
}

.hero {
    background:
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)),
        url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover,
        #1a1a1a;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero overlay - Only Leicester Clock Tower */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 300px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><g stroke="%23FFD700" stroke-width="2.5" fill="%23FFD700" fill-opacity="0.05" opacity="0.15"><!-- Tower base --><rect x="75" y="150" width="50" height="150" rx="3"/><!-- Clock section --><rect x="65" y="120" width="70" height="40" rx="3"/><!-- Clock face --><circle cx="100" cy="140" r="25" fill="none" stroke-width="3"/><circle cx="100" cy="140" r="2"/><path d="M100 140 l0 -12 M100 140 l8 6" stroke-width="2.5"/><!-- Roof --><path d="M60 120 L100 80 L140 120 Z"/><!-- Spire --><rect x="95" y="60" width="10" height="30"/><path d="M95 60 L100 45 L105 60 Z"/><!-- Windows --><rect x="85" y="170" width="10" height="15" fill="%238B0000" fill-opacity="0.3"/><rect x="105" y="170" width="10" height="15" fill="%238B0000" fill-opacity="0.3"/><rect x="85" y="200" width="10" height="15" fill="%238B0000" fill-opacity="0.3"/><rect x="105" y="200" width="10" height="15" fill="%238B0000" fill-opacity="0.3"/></g></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 1px 1px 3px rgba(0,0,0,0.9);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

/* Hero title with better visibility */
.hero-title {
    color: #FFD700 !important;
    text-shadow:
        4px 4px 8px rgba(0,0,0,1),
        2px 2px 4px rgba(0,0,0,1),
        0px 0px 20px rgba(0,0,0,0.8) !important;
    word-break: break-word;
}

/* Royal divider styling */
.royal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 3rem;
    position: relative;
}

.divider-text {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 0 1rem;
    font-size: 1.2rem;
    font-style: italic;
    color: #FFD700;
    white-space: nowrap;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.divider-ornament {
    flex: 1;
    max-width: 200px;
    height: 40px;
    position: relative;
}

.divider-ornament.left {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><path d="M200 20 C150 20, 100 15, 50 10 Q25 8, 10 10 Q5 10, 5 15 Q5 20, 10 20 Q25 22, 50 20 C100 15, 150 20, 200 20" stroke="%23FFD700" stroke-width="2" fill="none" opacity="0.6"/><circle cx="30" cy="20" r="3" fill="%23FFD700" opacity="0.4"/></svg>') right center no-repeat;
    background-size: contain;
}

.divider-ornament.right {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><path d="M0 20 C50 20, 100 15, 150 10 Q175 8, 190 10 Q195 10, 195 15 Q195 20, 190 20 Q175 22, 150 20 C100 15, 50 20, 0 20" stroke="%23FFD700" stroke-width="2" fill="none" opacity="0.6"/><circle cx="170" cy="20" r="3" fill="%23FFD700" opacity="0.4"/></svg>') left center no-repeat;
    background-size: contain;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #B00000);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139,0,0,0.4);
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #B00000, var(--primary-color));
    box-shadow: 0 6px 25px rgba(139,0,0,0.5);
}

/* Section styling with subtle backgrounds */
section {
    padding: 4rem 0;
    background: white;
}

section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Features section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Special Offers Section with background */
.specials {
    background:
        linear-gradient(rgba(248,249,250,0.95), rgba(248,249,250,0.97)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    padding: 4rem 1rem;
    position: relative;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.special-card.highlight {
    background: linear-gradient(135deg, #FFF9E6, #FFFDF7);
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.special-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(255,99,71,0.3);
}

/* Menu Section with subtle background */
#menu {
    background:
        linear-gradient(rgba(248,249,250,0.97), rgba(248,249,250,0.98)),
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    position: relative;
    padding: 4rem 0;
}

.menu-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-color);
    color: white;
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-dish {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-left: 3px solid var(--primary-color);
}

.menu-dish:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.dish-header h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.dish-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.dish-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.dish-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 15px;
}

.tag.spicy {
    background: #FFE0E0;
    color: #C00;
}

.tag.veg {
    background: #E0FFE0;
    color: #060;
}

/* Dietary indicators */
.dietary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.dietary.veg {
    background: #22C55E;
    color: white;
    border: 2px solid #16A34A;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

.dietary.non-veg {
    background: #EF4444;
    color: white;
    border: 2px solid #DC2626;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.dietary:not(.veg):not(.non-veg) {
    background: #F59E0B;
    color: white;
    border: 2px solid #D97706;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

/* Alternative vegetarian marker style */
.veg-marker {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #22C55E;
    border-radius: 2px;
    position: relative;
    margin-left: 8px;
    vertical-align: middle;
}

.veg-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
}

/* Dietary information footer */
.dietary-info {
    margin-top: 3rem;
    padding: 2rem 1rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 10px;
    text-align: center;
    border-top: 2px solid rgba(139, 0, 0, 0.1);
}

.dietary-info p {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.dietary-info p:first-child {
    margin-bottom: 0.75rem;
}

.dietary-info .dietary {
    margin: 0 0.25rem;
    vertical-align: middle;
}

/* Contact Section */
#contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

footer h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

footer p, footer ul {
    color: #bbb;
    line-height: 1.8;
}

footer ul {
    list-style: none;
}

footer ul li {
    padding: 0.25rem 0;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
        max-width: 100%;
    }

    html, body {
        width: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    main {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    header {
        width: 100%;
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
        width: 100%;
        flex-direction: row;
    }

    .nav-container h1 {
        order: 2;
        flex: 1;
        text-align: center;
    }

    .mobile-menu-toggle {
        order: 1;
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -240px;
        width: 240px;
        height: auto;
        min-height: fit-content;
        background: rgba(139, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 4rem 0 2rem;
        box-shadow: 5px 0 15px rgba(0,0,0,0.3);
        transition: left 0.3s ease-in-out;
        z-index: 999;
        display: flex;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
        display: block;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    /* Overlay for mobile menu */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .hero {
        width: 100%;
        padding: 4rem 1rem;
        min-height: 350px;
        margin: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        margin: 0 auto;
        text-align: center;
    }

    .hero h2 {
        font-size: clamp(1.8rem, 5.5vw, 2.2rem);
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
        padding: 0 0.5rem;
        line-height: 1.25;
        color: #FFFFFF;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 1px 1px 3px rgba(0,0,0,1);
    }

    .hero-overlay::after {
        display: none;
    }

    .royal-divider {
        margin: 1rem 0 2rem;
    }

    .divider-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .divider-ornament {
        max-width: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .cta-button {
        width: calc(100% - 2rem);
        max-width: 250px;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        margin: 0 auto;
    }

    section {
        width: 100%;
        padding: 2rem 1rem;
        margin: 0;
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .special-card {
        width: 100%;
        padding: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .special-card.highlight {
        transform: scale(1);
    }

    .menu-tabs {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        margin: 0 auto;
    }

    .tab-button {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .menu-dish {
        padding: 1rem;
    }

    .dish-header h4 {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        text-align: center;
        width: 100%;
    }

    .special-card h3 {
        font-size: 1.2rem;
    }

    .dietary-info {
        margin-top: 2rem;
        padding: 1.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .dietary-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-container h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h2 {
        font-size: 1.6rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        letter-spacing: 0;
    }

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

    section {
        padding: 3rem 1rem;
    }
}