/* ==========================================
   Hyderabadi House Kilbirnie — Premium Styles
   ========================================== */

:root {
    --primary-color: #b83526;
    --primary-dark: #962a1d;
    --secondary-color: #d4af37;
    --secondary-light: #f3d474;
    --accent-color: #304254;
    --accent-light: #3d5068;
    --text-dark: #1a1a1a;
    --text-light: #f9f9f9;
    --text-muted: #888;
    --bg-light: #ffffff;
    --bg-off-white: #f8f6f3;
    --bg-cream: #fdfbf7;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3d474 50%, #d4af37 100%);
    --red-gradient: linear-gradient(135deg, #b83526 0%, #d4483a 50%, #b83526 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 4px;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition), padding var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    transition: padding var(--transition);
}

header.scrolled .container {
    padding: 8px 20px;
}

.logo img {
    height: 75px;
    width: auto;
    transition: height var(--transition);
}

header.scrolled .logo img {
    height: 55px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav ul li a {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 6px;
    transition: color var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gold-gradient);
    transition: width var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.external-link {
    color: var(--primary-color);
    font-weight: 700;
}

/* Nav Order Now CTA */
.nav-cta {
    display: inline-block;
    padding: 10px 22px;
    background: var(--red-gradient);
    color: var(--text-light) !important;
    border-radius: 4px;
    font-size: 0.8rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition);
    box-shadow: 0 3px 10px rgba(184, 53, 38, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 53, 38, 0.4);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--accent-color);
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    transition: color var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* ---- Hero Section ---- */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(160deg, rgba(26, 26, 26, 0.75) 0%, rgba(48, 66, 84, 0.65) 100%),
        url('https://images.unsplash.com/photo-1563379091339-03b21ab4a4f8?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;
    color: var(--text-light);
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    height: 250px;
    width: auto;
    margin-bottom: 35px;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
}

.hero h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero h2 {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ---- CTA Buttons ---- */
.cta-button {
    display: inline-block;
    padding: 14px 36px;
    margin: 0 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--red-gradient);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(184, 53, 38, 0.3);
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 53, 38, 0.45);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--text-light);
}

.cta-button.secondary:hover {
    background-color: var(--text-light);
    color: var(--accent-color);
    border-color: var(--text-light);
}

.cta-button.small {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Fade-Up Animations ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Features Bar ---- */
.features-bar {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--text-light);
    padding: 60px 0;
    position: relative;
}

.features-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.feature-item {
    flex: 1;
    min-width: 220px;
    padding: 24px 20px;
    transition: transform var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item i {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: block;
}

.feature-item h3 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ---- About Section ---- */
.about {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--primary-color);
    letter-spacing: 2px;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin-top: 16px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(to top, rgba(184, 53, 38, 0.7), transparent 50%),
        url('https://images.unsplash.com/photo-1589302168068-964664d93dc0?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.image-placeholder span {
    color: var(--text-light);
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    padding: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ---- Specials Section ---- */
.specials {
    padding: 100px 0;
    background-color: var(--bg-off-white);
    text-align: center;
}

.specials h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.specials h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 16px auto 0;
}

.special-card {
    background: var(--bg-light);
    max-width: 620px;
    margin: 0 auto;
    padding: 48px 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.special-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.special-card::before {
    content: '★';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.special-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.special-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 8px;
}

.special-card small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Menu Section ---- */
.menu {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 14px auto 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 8px;
}

.tab-btn {
    padding: 10px 28px;
    background: none;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--red-gradient);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(184, 53, 38, 0.25);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.menu-item {
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-content {
    padding: 24px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    gap: 12px;
}

.menu-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.menu-price {
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
}

/* ---- Contact Section ---- */
.contact {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--accent-color) 0%, #1e2d3d 100%);
    color: var(--text-light);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    color: var(--secondary-color);
    margin-bottom: 32px;
    font-size: 2.4rem;
    letter-spacing: 2px;
}

.contact-info-box h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin-top: 14px;
}

.info-item {
    display: flex;
    margin-bottom: 28px;
    align-items: flex-start;
    transition: transform var(--transition);
}

.info-item:hover {
    transform: translateX(4px);
}

.info-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 4px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--secondary-light);
    margin-bottom: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.info-item a {
    color: var(--text-light);
    transition: color var(--transition);
}

.info-item a:hover {
    color: var(--secondary-color);
}

.map-box {
    flex: 1;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-box iframe {
    display: block;
}

footer {
    background-color: #111820;
    color: var(--text-light);
    padding: 80px 0 0;
    border-top: 2px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.footer-col ul li a {
    transition: color var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-col i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 5px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-brand .footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-light);
    transition: all var(--transition);
}

.footer-socials a i.fa-facebook-f {
    margin-left: -2px;
    /* Visual centering adjustment for the narrow 'f' icon */
}

.footer-socials a:hover {
    background: var(--red-gradient);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(184, 53, 38, 0.4);
}

.badge-new {
    background: var(--red-gradient);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-tagline i {
    font-size: 0.8rem;
    margin: 0 4px;
}

.developer-credit {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.developer-logo {
    height: 35px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1) invert(1);
    transition: all var(--transition);
}

.developer-logo:hover {
    opacity: 1;
    filter: grayscale(0) invert(0);
    transform: scale(1.05);
}

/* ---- Modal ---- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-light);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.5s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
    line-height: 1;
}

.close-btn:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.05);
}

.modal-body {
    display: flex;
}

.poster-image {
    width: 45%;
    min-height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}

.modal-text {
    flex: 1;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 4px;
    letter-spacing: 1.5px;
}

.modal-text h3 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.modal-text .highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.modal-text p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-text hr {
    border: none;
    height: 1px;
    background: var(--gold-gradient);
    margin: 14px 0;
    opacity: 0.5;
}

.modal-text .contact-info {
    margin: 10px 0;
}

.modal-text .contact-info p {
    font-size: 0.82rem;
    margin-bottom: 5px;
    color: #666;
}

.modal-text .contact-info i {
    color: var(--secondary-color);
    width: 18px;
    margin-right: 6px;
    font-size: 0.8rem;
}

.modal-text .features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0 16px;
}

.modal-text .features span {
    font-size: 0.78rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* ---- Floating Buttons Container ---- */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
    align-items: center;
}

.order-now-float {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.order-now-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.order-now-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

.order-now-float i {
    font-size: 1rem;
}

/* ---- Back to Top Button ---- */
.back-to-top {
    width: 48px;
    height: 48px;
    background: var(--red-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(184, 53, 38, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(184, 53, 38, 0.5);
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    nav.active {
        max-height: 350px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
    }

    nav ul li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .hero {
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .image-placeholder {
        height: 300px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .map-box {
        min-height: 300px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact li {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .footer-contact i {
        margin-right: 0;
    }

    /* Modal responsive */
    .modal-body {
        flex-direction: column;
    }

    .poster-image {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .modal-text {
        width: 100%;
        padding: 24px 20px;
    }

    .modal-text h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero h2 {
        font-size: 1.05rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 260px;
        text-align: center;
        margin: 0;
    }

    .features-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .feature-item {
        min-width: auto;
        padding: 16px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .special-card {
        padding: 32px 24px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-info-box h2 {
        font-size: 1.8rem;
    }

    .floating-btns {
        bottom: 20px;
        right: 20px;
    }

    .order-now-float {
        padding: 10px 18px;
        font-size: 0.72rem;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
    }

    .nav-cta {
        display: none !important;
    }
}