:root {
    --primary: #E8430A;
    --primary-light: #FFF0E8;
    --pill-bg: #FDECD8;
    --pill-text: #C84B11;
    --navy: #16213E;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-peach: #FFF0E8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.7);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base for rem */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.2;
}

footer .footer-col h3 {
    font-family: 'Poppins', sans-serif;
}

section {
    padding: 60px 20px;
    width: 100%;
}

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

.section-light {
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* --- Components --- */

.pill-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--pill-bg);
    color: var(--pill-text);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232, 67, 10, 0.3);
}

.btn-primary:hover {
    background-color: #d13d09;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 67, 10, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--white);
    color: var(--navy);
    border: 1px solid #DDD;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* --- Navbar --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    padding: 10px 0;
    background: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

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

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

header.scrolled .nav-links a {
    color: var(--navy);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--white);
}

header.scrolled .nav-call {
    color: var(--navy);
}

header.scrolled .nav-call svg {
    fill: var(--navy);
}

.nav-order-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
}

header.scrolled .logo {
    color: var(--navy);
}

.logo span {
    color: var(--primary);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

header.scrolled .hamburger span {
    background-color: var(--navy);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(22, 33, 62, 0.85); /* Premium Dark Navy */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 120px 40px 60px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.4s ease;
}

.mobile-menu.active .mobile-menu-close {
    transform: rotate(90deg);
}

.mobile-menu-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle divider */
    padding-bottom: 16px;
}

.mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

/* Stagger Animation Durations */
.mobile-menu.active .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-item:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-item:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-menu-item:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.mobile-menu-link:hover, .mobile-menu-link:active {
    color: var(--primary);
    transform: scale(1.05);
}

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

.mobile-menu-cta {
    width: 100%;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.6s;
}

.mobile-menu.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #E8430A, #FF6A2C);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(232, 67, 10, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu ul li a:hover {
    color: var(--primary);
}

/* --- Hero --- */

.hero-logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-logo-raw {
    height: 160px; /* Increased for mobile visibility */
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/herobg.png') center/cover no-repeat;
    color: var(--white);
    padding: 80px 20px 60px; /* Further reduced top padding */
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out;
    gap: 8px;
}

.flag-icon {
    font-size: 1.2rem;
}

#hero h1 {
    color: var(--white);
    font-size: 2.2rem; /* More compact for mobile fit */
    margin-bottom: 12px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

#hero p {
    font-size: 0.95rem; /* More compact body text */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    .hero-cta .btn-primary, .hero-cta .btn-outline {
        width: auto;
        min-width: 180px;
    }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* --- About Us --- */

#about .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.checkmark-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 480px) {
    .checkmark-list {
        grid-template-columns: 1fr;
    }
}

.checkmark-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--navy);
}

.checkmark-circle {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkmark-circle svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

/* --- Menu Section --- */

#menu {
    text-align: center;
}

#menu h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.menu-subtext {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.menu-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.menu-card:hover .menu-image-container img {
    transform: scale(1.1);
}

.menu-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-details {
    padding: 20px;
}

.menu-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.menu-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    height: 2.7em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.menu-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Skeleton Loading */
.skeleton-card {
    height: 380px;
    background: #eee;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.skeleton-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

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

.view-all-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    margin-top: 20px;
}

/* --- Why Choose Us --- */

#features {
    text-align: center;
}

#features h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border: 1px solid #EEE;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon-box {
    width: 54px;
    height: 54px;
    background: var(--bg-peach);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.feature-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Contact --- */

#contact {
    padding-bottom: 100px;
}

.contact-container {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    width: 100%;
}

@media (max-width: 480px) {
    .contact-info {
        padding: 30px 20px;
    }
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background: var(--bg-peach);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-label {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    display: block;
}

.contact-value {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
}

.status-open {
    background: #E6F4EA;
    color: #1E8E3E;
}

.status-closed {
    background: #FCE8E6;
    color: #D93025;
}

#menu, #features {
    text-align: center;
}

.menu-subtext, .features-subtext {
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0.8;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #DDD;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 67, 10, 0.1);
}

textarea.form-input {
    height: 120px;
    resize: none;
}

/* --- Footer --- */

footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-brand {
    grid-column: 1 / -1;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-brand h2 span {
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.opening-hours {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.floating-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1100;
}

.floating-call-btn {
    background: #28a745;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    animation: pulse-glow-green 2s infinite;
    font-size: 1.5rem;
    transition: var(--transition);
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background: #218838;
}

.floating-order-btn {
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(232, 67, 10, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse-glow 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.floating-order-btn:hover {
    transform: scale(1.05);
    background: #c83608;
}

@keyframes pulse-glow-green {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 10px 40px rgba(40, 167, 69, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4); }
}

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(232, 67, 10, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 10px 40px rgba(232, 67, 10, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(232, 67, 10, 0.4); }
}

@media (max-width: 480px) {
    .floating-actions-container {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }
    .floating-call-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .floating-order-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Desktop Media Queries --- */

@media (min-width: 768px) {
    section { padding: 100px 40px; }
    #hero h1 { font-size: 4rem; }
    .nav-links, .nav-actions { display: flex; }
    .hamburger { display: none; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer-brand { grid-column: auto; }
    .contact-info, .contact-form { flex: 1; }
    #about .container { flex-direction: row-reverse; display: flex; align-items: center; gap: 80px; }
    .about-text, .about-image { flex: 1; }
    .about-image img { height: auto; max-height: 700px; border-radius: 24px; }
}

@media (min-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-logo-raw { height: 140px; }
}
