:root {
    --primary-gold: #d4af37;
    --primary-gold-rgb: 212, 175, 55;
    --deep-red: #8b0000;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Typography Helpers */
.section-subtitle {
    display: block;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('https://lh3.googleusercontent.com/p/AF1QipNJzFh8eOjA8lFNCTkihFIdqHagkK5ooLRPQUk=s1360-w1360-h1020-rw') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons & Links */
.back-home {
    position: absolute;
    top: 100px;
    /* Below navbar */
    left: 2rem;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    z-index: 10;
    font-weight: 600;
}

.back-home:hover {
    color: var(--primary-gold);
    transform: translateX(-5px);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    min-width: 160px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: #f0c94f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: var(--deep-red);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: #a30000;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--dark-bg);
}

/* Order Online Dropdown */
.order-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.order-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.order-dropdown-btn .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.order-dropdown-wrap:hover .fa-chevron-down,
.order-dropdown-wrap.open .fa-chevron-down {
    transform: rotate(180deg);
}

.order-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.order-dropdown-wrap.open .order-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.order-drop-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.order-drop-item i {
    width: 18px;
    text-align: center;
}

.order-drop-item.zomato:hover {
    background: #e23744;
    color: #fff;
    transform: scale(1.03);
}

.order-drop-item.swiggy:hover {
    background: #fc8019;
    color: #fff;
    transform: scale(1.03);
}

.order-drop-item.magicpin:hover {
    background: #FF3E6C;
    color: #fff;
    transform: scale(1.03);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.img-wrapper:hover img {
    transform: scale(1.05);
}

.img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
}

/* Dish Cards */
.bg-dark {
    background-color: var(--darker-bg);
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.dish-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.dish-img {
    height: 250px;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dish-card:hover .dish-img img {
    transform: scale(1.1);
}

.dish-info {
    padding: 2rem;
}

.dish-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.dish-card:hover .dish-info h3 {
    color: var(--text-white);
    transform: translateX(5px);
}

.dish-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.dish-card:hover .dish-info p {
    color: rgba(255, 255, 255, 0.9);
}

.dish-info .price {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-white);
    border-bottom: 2px solid var(--deep-red);
    padding-bottom: 5px;
}

/* Floating Actions */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-container-1 {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 999;
}

.float-call {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-call:hover {
    transform: scale(1.1) rotate(10deg);
}

.float-whatsapp {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Standardized Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
    will-change: auto;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

/* Ambience Gallery */
.ambience-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Premium Footer */
.footer-premium {
    background-color: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
    padding-bottom: 40px;
}

.footer-grid-premium {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--deep-red);
}

.footer-desc {
    color: var(--text-gray);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.social-links-premium {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-details p {
    display: flex;
    gap: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-details i {
    color: var(--primary-gold);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.order-pill {
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.pill-zomato {
    border: 1px solid #cb202d;
    color: #cb202d;
}

.pill-zomato:hover {
    background: #cb202d;
    color: white;
}

.pill-swiggy {
    border: 1px solid #fc8019;
    color: #fc8019;
}

.pill-swiggy:hover {
    background: #fc8019;
    color: white;
}

.pill-magicpin {
    border: 1px solid #FF3E6C;
    color: #FF3E6C;
}

.pill-magicpin:hover {
    background: #FF3E6C;
    color: white;
}

.footer-bottom-premium {
    position: relative;
}

.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 3rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* Glassmorphism Refinements */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

.review-stats {
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.interactive-rating {
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
}

.big-rating {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.interactive-rating:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.animated-stars i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin: 0 4px;
    animation: starPulse 2s infinite ease-in-out;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px var(--primary-gold));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 10px var(--primary-gold));
    }
}

.btn-review-google {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #4285F4;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-review-google:hover {
    background: #357ae8;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.review-card {
    background: white;
    color: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    max-width: 650px;
    margin: 4rem auto 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    border-top: 6px solid var(--primary-gold);
    transition: all 0.5s ease;
}

@media (min-width: 769px) {
    .review-card {
        padding: 3rem;
    }
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.stars-mini i {
    color: #fbbc05;
    font-size: 0.9rem;
}

.google-icon {
    font-size: 2rem;
    color: #4285F4;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Reservation Section Styles */
.reserve {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1544148103-0773bf10d330?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.reservation-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    max-width: 850px;
    margin: 0 auto;
}

.reservation-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reserve-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

/* Success Overlay */
.reservation-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.reservation-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-box {
    text-align: center;
    padding: 4rem;
    background: var(--dark-bg);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reservation-success-overlay.active .success-box {
    transform: scale(1);
}

.success-box i {
    font-size: 5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

@media (max-width: 768px) {
    .reservation-card {
        padding: 1.5rem 1rem;
    }

    .reserve-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Smooth Section Transitions */
section {
    position: relative;
    z-index: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

/* Reveal transitions moved to global animations section */

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-whatsapp {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Grid Fixes */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.2rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary,
    .hero-btns .order-dropdown-wrap,
    .hero-btns .order-dropdown-btn {
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box;
    }

    .order-dropdown-wrap {
        margin: 0;
        padding: 0;
    }

    .order-dropdown-btn {
        justify-content: center;
        box-sizing: border-box;
    }

    .nav-links {
        display: none;
        /* Mobile menu logic in script */
    }

    .desktop-only {
        display: none !important;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-white);
        margin: 5px 0;
        transition: 0.4s;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .interactive-rating {
        padding: 2rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .ambience-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        height: 300px;
    }

    .gallery-item {
        height: 200px;
    }

    .footer-grid-premium {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links-premium,
    .contact-details p {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .ambience-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item {
        grid-column: span 1;
        height: 250px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Rooftop Ambience Section */
.rooftop-ambience {
    background-color: #050505;
}

.rooftop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rooftop-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.rooftop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rooftop-item:hover img {
    transform: scale(1.1);
}

.rooftop-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--text-white);
    transform: translateY(20px);
    transition: var(--transition);
}

.rooftop-item:hover .rooftop-content {
    transform: translateY(0);
}

.rooftop-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.rooftop-content p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.section-tagline {
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .rooftop-grid {
        grid-template-columns: 1fr;
    }

    .rooftop-item {
        height: 350px;
    }

    .rooftop-content {
        padding: 1.5rem;
    }

    .rooftop-content h3 {
        font-size: 2rem;
    }

    /* Hero Responsive Overrides (All Types) */
    .hero h1,
    .menu-hero h1,
    .bar-hero h1,
    .menus-hero h1 {
        font-size: clamp(2.2rem, 12vw, 4.5rem);
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero h2,
    .menu-hero h2,
    .bar-hero h2,
    .menus-hero h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero p,
    .menu-hero p,
    .bar-hero p,
    .menus-hero p {
        font-size: 1rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .menu-hero,
    .bar-hero {
        height: 50vh;
        /* Increase height slightly for better presence on mobile */
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 2rem auto 0;
        gap: 1rem;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary,
    .hero-btns .btn-outline {
        width: 100%;
        min-width: unset;
        padding: 0.9rem 2rem;
    }

    .back-home {
        top: 80px;
        left: 1.5rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        bottom: 20px;
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-content {
        padding-top: 40px;
    }
}

/* Reservation Success Overlay */
.reservation-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: none;
    /* Control with .active */
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reservation-success-overlay.active {
    display: flex;
    opacity: 1;
}

.success-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reservation-success-overlay.active .success-box {
    transform: scale(1) translateY(0);
}

.success-box i.fa-check-circle {
    font-size: 3rem;
    color: #25D366;
    /* WhatsApp Green */
    margin-bottom: 1rem;
    animation: iconBounce 1s ease-out;
}

.success-box .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-gold);
}

.reservation-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 15px;
    margin: 1.2rem 0;
    text-align: left;
    border: 1px solid var(--glass-border);
    animation: slideUpFade 0.8s ease-out 0.2s both;
}

.reservation-summary p {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.reservation-summary b {
    color: var(--primary-gold);
}

.wa-confirm-btn {
    background: #25D366;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    border: none;
    cursor: pointer;
}

.wa-confirm-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    background: #1ebe5d;
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-overlay:hover {
    color: var(--text-white);
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 500px) {
    .success-box {
        padding: 2rem;
    }

    .success-box .section-title {
        font-size: 1.8rem;
    }

    .reservation-summary {
        padding: 1.2rem;
    }
}