/* ===== CSS Variables ===== */
:root {
    --gold: #c8a97e;
    --gold-light: #e8d5b5;
    --gold-dark: #a07d50;
    --dark: #0a0a0a;
    --dark-2: #121212;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --cream: #f5f0e8;
    --cream-dark: #e8ddd0;
    --white: #ffffff;
    --text: #b0b0b0;
    --text-light: #d0d0d0;
    --red: #c0392b;
    --green: #27ae60;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark);
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Custom Cursor ===== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--transition), height 0.4s var(--transition), border-color 0.3s, background 0.3s;
}

.cursor-dot.hover {
    width: 50px;
    height: 50px;
    background: rgba(200, 169, 126, 0.15);
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
    background: rgba(200, 169, 126, 0.05);
}

.cursor-dot.text-hover {
    width: 80px;
    height: 80px;
    background: rgba(200, 169, 126, 0.08);
    mix-blend-mode: normal;
}

.cursor-ring.text-hover {
    width: 90px;
    height: 90px;
    border-color: transparent;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s, visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-circle {
    animation: preloaderDraw 2s ease forwards;
}

@keyframes preloaderDraw {
    to { stroke-dashoffset: 0; }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.ampersand {
    color: var(--gold);
    font-style: italic;
    margin: 0 2px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

.nav-cta {
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s;
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('images/Allotheritems.jpg') center center / cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.title-line {
    display: inline-block;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-ampersand {
    display: inline-block;
    font-family: var(--font-script);
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    font-size: 0.6em;
    margin: 0 0.1em;
    vertical-align: middle;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 169, 126, 0.3);
}

.btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 169, 126, 0.2);
}

.hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-info-icon {
    font-size: 1.2rem;
}

.hero-info-divider {
    width: 1px;
    height: 20px;
    background: var(--gold);
    opacity: 0.3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-indicator.faded {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-chevron {
    display: block;
    width: 22px;
    height: 22px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: chevronPulse 2s infinite;
    opacity: 0;
}

.scroll-chevron:nth-child(1) {
    animation-delay: 0s;
    margin-bottom: -10px;
}

.scroll-chevron:nth-child(2) {
    animation-delay: 0.2s;
    margin-bottom: -10px;
}

.scroll-chevron:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes chevronPulse {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 0.8; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
}

.about-img-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about-img-wrapper.img-1 {
    width: 65%;
    height: 70%;
    top: 0;
    left: 0;
}

.about-img-wrapper.img-2 {
    width: 55%;
    height: 55%;
    bottom: 0;
    right: 0;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    transition: transform 0.6s var(--transition);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-floating-badge {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(200, 169, 126, 0.3);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(200, 169, 126, 0.15);
    border-radius: 15px;
    transition: all 0.4s;
}

.about-feature:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 126, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-feature h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--text);
}

.about-company {
    font-size: 0.9rem;
    color: var(--text);
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 169, 126, 0.1);
}

.about-company strong {
    color: var(--gold);
}

/* ===== Marquee ===== */
.marquee-section {
    padding: 2rem 0;
    background: var(--gold);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.marquee-dot {
    font-size: 1rem !important;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 8rem 0;
    background: var(--dark-2);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text);
    letter-spacing: 1px;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* Menu Cards */
.menu-panel {
    display: none;
    animation: menuFadeIn 0.5s var(--transition);
}

.menu-panel.active {
    display: block;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-grid-title {
    grid-column: 1 / -1;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.menu-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s var(--transition);
}

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

.menu-card-inner {
    padding: 2rem;
    background: var(--dark-3);
    border: 1px solid rgba(200, 169, 126, 0.08);
    border-radius: 15px;
    height: 100%;
    position: relative;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.menu-card:hover .menu-card-inner {
    border-color: rgba(200, 169, 126, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.menu-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text);
}

.menu-badge {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.25rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

.menu-badge.popular {
    background: rgba(200, 169, 126, 0.15);
    color: var(--gold);
}

.menu-badge.premium {
    background: rgba(192, 57, 43, 0.15);
    color: #e74c3c;
}

.menu-badge.veg {
    background: rgba(39, 174, 96, 0.15);
    color: var(--green);
}

.menu-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== Coffee Section ===== */
.coffee-section {
    padding: 8rem 0;
    background: var(--dark);
}

.coffee-section .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* ===== Drinks Section ===== */
.drinks-section {
    padding: 8rem 0;
    background: var(--dark);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.drinks-category {
    background: var(--dark-3);
    border: 1px solid rgba(200, 169, 126, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.4s, transform 0.4s;
}

.drinks-category:hover {
    border-color: rgba(200, 169, 126, 0.2);
    transform: translateY(-5px);
}

.drinks-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

.drinks-category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
}

.drinks-icon {
    font-size: 2rem;
}

.drinks-subcategory {
    margin-bottom: 1.5rem;
}

.drinks-subcategory h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.drinks-pricing {
    font-size: 0.75rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.drinks-list {
    list-style: none;
}

.drinks-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px dotted rgba(200, 169, 126, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.drinks-list li:hover {
    color: var(--white);
}

.drink-price {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    margin-left: 1rem;
}

/* ===== Breakfast Section ===== */
.breakfast-section {
    padding: 8rem 0;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.breakfast-price-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.breakfast-price-badge {
    text-align: center;
}

.breakfast-price-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.breakfast-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.breakfast-price.kids {
    color: var(--gold-light);
}

.breakfast-price-label {
    display: block;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.breakfast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.breakfast-card {
    background: var(--dark-3);
    border: 1px solid rgba(200, 169, 126, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.breakfast-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.breakfast-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 126, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.breakfast-card:hover::before {
    opacity: 1;
}

.breakfast-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breakfast-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.breakfast-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 8rem 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 15px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-item h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(200, 169, 126, 0.08);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-company {
    color: var(--gold) !important;
    font-size: 0.85rem !important;
    margin-top: 0.5rem !important;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-hours p {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 169, 126, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== Tilt Effect for Cards ===== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ===== Magnetic Button Effect ===== */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s var(--transition);
}

/* ===== Menu Card Images ===== */
.menu-card-img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--transition);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.03);
}

/* Biryani images */
.veg-biryani-img { background-image: url('https://images.unsplash.com/photo-1563379091339-03b21ab4a4f8?w=600&h=400&fit=crop'); }
.egg-biryani-img { background-image: url('images/Egg Biryani.jpg'); }
.chicken-biryani-img { background-image: url('images/Chicken Biryani.jpg'); }
.lamb-biryani-img { background-image: url('images/Lamb Biryani.jpg'); }
.prawn-biryani-img { background-image: url('images/Prawn Biryani.jpg'); }

/* Burger images */
.grilled-chicken-burger-img { background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=600&h=400&fit=crop'); }
.crispy-burger-img { background-image: url('https://images.unsplash.com/photo-1606755962773-d324e0a13086?w=600&h=400&fit=crop'); }
.veg-burger-img { background-image: url('https://images.unsplash.com/photo-1520072959219-c595e6cdc923?w=600&h=400&fit=crop'); }
.beef-burger-img { background-image: url('https://images.unsplash.com/photo-1553979459-d2229ba7433b?w=600&h=400&fit=crop'); }
.double-burger-img { background-image: url('https://images.unsplash.com/photo-1586816001966-79b736744398?w=600&h=400&fit=crop'); }

/* Wrap images */
.grilled-wrap-img { background-image: url('https://images.unsplash.com/photo-1626700051175-6818013e1d4f?w=600&h=400&fit=crop'); }
.crispy-wrap-img { background-image: url('images/meueites/Crispy spicy mayo chicken wrap.jpg'); }
.bbq-wrap-img { background-image: url('https://images.unsplash.com/photo-1529006557810-274b9b2fc783?w=600&h=400&fit=crop'); }
.tikka-wrap-img { background-image: url('https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?w=600&h=400&fit=crop'); }
.veg-wrap-img { background-image: url('https://images.unsplash.com/photo-1600850056064-a8b380df8395?w=600&h=400&fit=crop'); }

/* Panini images */
.bbq-panini-img { background-image: url('https://images.unsplash.com/photo-1528735602780-2552fd46c7af?w=600&h=400&fit=crop'); }
.grilled-panini-img { background-image: url('https://images.unsplash.com/photo-1509722747041-616f39b57569?w=600&h=400&fit=crop'); }
.crispy-panini-img { background-image: url('https://images.unsplash.com/photo-1481070555726-e2fe8357b3e3?w=600&h=400&fit=crop'); }
.tikka-panini-img { background-image: url('https://images.unsplash.com/photo-1554433607-66b5a6df0378?w=600&h=400&fit=crop'); }
.veg-panini-img { background-image: url('https://images.unsplash.com/photo-1485451456034-3f9391c6f769?w=600&h=400&fit=crop'); }

/* Rice images */
.chicken-rice-img { background-image: url('https://images.unsplash.com/photo-1603133872878-684f208fb84b?w=600&h=400&fit=crop'); }
.egg-rice-img { background-image: url('https://images.unsplash.com/photo-1512058564366-18510be2db19?w=600&h=400&fit=crop'); }
.chilli-rice-img { background-image: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=600&h=400&fit=crop'); }
.katsu-rice-img { background-image: url('https://images.unsplash.com/photo-1569058242567-93de6f36f8eb?w=600&h=400&fit=crop'); }
.burrito-rice-img { background-image: url('https://images.unsplash.com/photo-1543339308-d595c4975lg3?w=600&h=400&fit=crop'); }

/* Pizza & Bowl images */
.pizza-img { background-image: url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=600&h=400&fit=crop'); }
.custom-bowl-img { background-image: url('images/meueites/Custom bowl.jpg'); }

/* Meat & Sides images */
.wings-img { background-image: url('https://images.unsplash.com/photo-1567620832903-9fc6debc209f?w=600&h=400&fit=crop'); }
.strips-img { background-image: url('https://images.unsplash.com/photo-1562967914-608f82629710?w=600&h=400&fit=crop'); }
.nuggets-img { background-image: url('https://images.unsplash.com/photo-1585325701956-60dd9c8553bc?w=600&h=400&fit=crop'); }
.sausage-img { background-image: url('images/meueites/Sausages & chips.jpg'); }
.fries-img { background-image: url('https://images.unsplash.com/photo-1573080496219-bb080dd4f877?w=600&h=400&fit=crop'); }
.onion-rings-img { background-image: url('https://images.unsplash.com/photo-1639024471283-03518883512d?w=600&h=400&fit=crop'); }
.spring-rolls-img { background-image: url('https://images.unsplash.com/photo-1548507200-aaeb54cf76b9?w=600&h=400&fit=crop'); }
.corn-img { background-image: url('images/meueites/Corn on cob.jpg'); }
.garlic-bread-img { background-image: url('https://images.unsplash.com/photo-1619535860434-ba1d8fa12536?w=600&h=400&fit=crop'); }

/* Dessert images */
.cheesecake-img { background-image: url('https://images.unsplash.com/photo-1524351199678-941a58a3df50?w=600&h=400&fit=crop'); }
.toffee-pudding-img { background-image: url('images/meueites/Sticky toffee pudding.jpg'); }
.apple-crumble-img { background-image: url('https://images.unsplash.com/photo-1568571780765-9276ac8b75a2?w=600&h=400&fit=crop'); }
.brownie-img { background-image: url('https://images.unsplash.com/photo-1564355808539-22fda35bed7e?w=600&h=400&fit=crop'); }
.icecream-img { background-image: url('https://images.unsplash.com/photo-1497034825429-c343d7c6a68f?w=600&h=400&fit=crop'); }

/* Coffee images */
.coffee-img { background-image: url('https://images.unsplash.com/photo-1510707577719-ae7c14805e3a?w=600&h=400&fit=crop'); }
.americano-img { background-image: url('https://images.unsplash.com/photo-1521302080334-4bebac2763a6?w=600&h=400&fit=crop'); }
.doubleespresso-img { background-image: url('https://images.unsplash.com/photo-1485808191679-5f86510681a2?w=600&h=400&fit=crop'); }
.latte-img { background-image: url('https://images.unsplash.com/photo-1461023058943-07fcbe16d735?w=600&h=400&fit=crop'); }
.cappuccino-img { background-image: url('https://images.unsplash.com/photo-1572442388796-11668a67e53d?w=600&h=400&fit=crop'); }
.flatwhite-img { background-image: url('https://images.unsplash.com/photo-1577968897966-3d4325b36b61?w=600&h=400&fit=crop'); }
.hotchoc-img { background-image: url('https://images.unsplash.com/photo-1517578239113-b03992dcdd25?w=600&h=400&fit=crop'); }
.tea-img { background-image: url('https://images.unsplash.com/photo-1556679343-c7306c1976bc?w=600&h=400&fit=crop'); }
.fruittea-img { background-image: url('https://images.unsplash.com/photo-1544787219-7f47ccb76574?w=600&h=400&fit=crop'); }

/* Fallback background for all menu images */
.menu-card-img {
    background-color: var(--dark-4);
}

/* Gradient overlay on card images */
.menu-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.6) 100%);
    border-radius: 10px;
}

/* ===== Sky Sports Banner ===== */
.skysports-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, #001f5b, #c0392b);
    overflow: hidden;
}

.skysports-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.skysports-img {
    max-width: 350px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.skysports-text {
    text-align: left;
    max-width: 400px;
}

.skysports-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.skysports-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ===== Order Online Section ===== */
.order-online {
    padding: 6rem 0;
    background: var(--dark-3);
}

.order-platforms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.order-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: var(--dark-2);
    border: 1px solid rgba(200, 169, 126, 0.1);
    border-radius: 20px;
    transition: all 0.4s var(--transition);
}

.order-platform-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.platform-logo {
    width: 200px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s;
}

.order-platform-card:hover .platform-logo {
    transform: scale(1.05);
}

.platform-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        height: 400px;
    }

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

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

@media (max-width: 768px) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    a, button {
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .about-images {
        height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
    }

    .breakfast-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .menu-tabs {
        gap: 0.3rem;
    }

    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .skysports-content {
        flex-direction: column;
        text-align: center;
    }

    .skysports-text {
        text-align: center;
    }

    .order-platforms {
        flex-direction: column;
        align-items: center;
    }

    .breakfast-price-badges {
        gap: 2rem;
    }

    .breakfast-price-divider {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-info {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-info-divider {
        display: none;
    }
}
