* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #770707;
    padding: 12px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 { color: #e05c5c; font-style: italic; }
.logo span { color: #e0b45c; font-size: 12px; }

.delivery { color: #fff; margin-left: 20px; }
.delivery small { font-size: 12px; }
.delivery p { font-size: 12px; font-weight: bold; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}
.nav-links a:hover { color: #e0b45c; }

.nav-right { display: flex; align-items: center; gap: 15px; }
.user-icon {
    width: 40px; height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; cursor: pointer;
}
.order-btn {
    background: #eee;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: 0.3s;
}
.order-btn:hover { background: #e05c5c; }

/* ===== CART ICON IN NAVBAR ===== */
.cart-icon-wrap {
    position: relative;
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: background 0.2s;
    user-select: none;
}
.cart-icon-wrap:hover { background: rgba(255,255,255,0.15); }

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e0b45c;
    color: #3a0a0a;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s;
}
.cart-badge.pop {
    animation: badgePop 0.3s ease;
}
@keyframes badgePop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.5); }
    100% { transform: scale(1); }
}

/* ===== CART OVERLAY ===== */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 8000;
    backdrop-filter: blur(2px);
}
.cart-overlay.active { display: block; }

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100vh;
    background: #f5efe6;
    z-index: 8500;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { right: 0; }

.cart-header {
    background: #770707;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #e0b45c;
    font-size: 1.4rem;
    font-style: italic;
}
.cart-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.2s;
}
.cart-close:hover { color: #e0b45c; }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-empty {
    text-align: center;
    color: #999;
    font-size: 15px;
    margin-top: 60px;
}

/* Each cart item row */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid #e8d5b5;
    animation: slideIn 0.25s ease;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.cart-item-info { flex: 1; }
.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #3a0a0a;
    font-weight: 600;
}
.cart-item-price {
    font-size: 13px;
    color: #8b1a1a;
    font-weight: 700;
    margin-top: 3px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-qty-btn {
    width: 26px; height: 26px;
    border: 1.5px solid #770707;
    background: none;
    border-radius: 50%;
    color: #770707;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.cart-qty-btn:hover { background: #770707; color: #e0b45c; }
.cart-qty {
    font-size: 14px;
    font-weight: 700;
    color: #3a0a0a;
    min-width: 20px;
    text-align: center;
}
.cart-remove-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 16px;
    cursor: pointer;
    margin-left: 6px;
    transition: color 0.2s;
}
.cart-remove-btn:hover { color: #e05c5c; }

/* Cart Footer */
.cart-footer {
    padding: 16px 20px 24px;
    border-top: 2px solid #e8d5b5;
    background: #f5efe6;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #3a0a0a;
    margin-bottom: 14px;
}
.cart-total span:last-child { color: #8b1a1a; }

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    background: #770707;
    color: #e0b45c;
    border: none;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 8px;
}
.cart-checkout-btn:hover { background: #9e1515; }

.cart-clear-btn {
    width: 100%;
    padding: 10px;
    background: none;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.cart-clear-btn:hover { border-color: #e05c5c; color: #e05c5c; }

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #e0b45c;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BOOKING MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: #f5efe6;
    border-radius: 6px;
    width: min(480px, 94vw);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.93) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    background: #770707;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #e0b45c;
    font-size: 1.5rem;
    font-style: italic;
}
.modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 2px 8px;
    transition: color 0.2s;
}
.modal-close:hover { color: #e0b45c; }

.modal-body { padding: 24px 28px 10px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #770707;
}
.form-group input,
.form-group select {
    padding: 10px 12px;
    border: 1.5px solid #d9c5a0;
    border-radius: 3px;
    font-size: 0.88rem;
    background: white;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    font-family: Arial, sans-serif;
}
.form-group input:focus,
.form-group select:focus { border-color: #770707; }

.modal-footer { padding: 14px 28px 24px; }
.btn-confirm-booking {
    width: 100%;
    padding: 13px;
    background: #770707;
    color: #e0b45c;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Cinzel', serif;
}
.btn-confirm-booking:hover { background: #9e1515; }

/* ===== HERO SECTION — FULL SCREEN ===== */
.hero-section {
    margin-top: 65px;
    width: 100%;
    height: 100vh;
    background: #0a0000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    z-index: 0;
    filter: brightness(0.5);
}

#star-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-title {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    text-align: center;
}

.hero-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 110px;
    color: maroon;
    text-align: center;
    opacity: 1;
    font-style: italic;
    letter-spacing: 6px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

/* ===== SCROLLING BAR ===== */
.scroll-container {
    width: 100%;
    overflow: hidden;
    background-color: #5a1f1f;
    padding: 12px 0;
}
.scroll-content {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}
.scroll-content span {
    color: gold;
    font-weight: bold;
    font-size: 18px;
    margin: 0 40px;
    white-space: nowrap;
}
@keyframes scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* ===== WHY NISA SULTAN ===== */
.section-heading {
    text-align: center;
    padding: 60px 20px 10px;
    background: #e9e5e5;
}
.section-heading h2 {
    font-size: 42px;
    color: #6d0303;
    font-style: italic;
    letter-spacing: 2px;
}
.section-heading p {
    color: #000;
    font-size: 15px;
    margin-top: 10px;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
}
.gold-divider {
    width: 80px;
    height: 3px;
    background: #e0b45c;
    margin: 18px auto;
}
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px;
    background: #1a0a0a;
}
.feat-card {
    background: #2a0f0f;
    border: 1px solid #5a1f1f;
    border-radius: 12px;
    padding: 30px 24px;
    width: 220px;
    text-align: center;
    transition: 0.3s;
}
.feat-card:hover { border-color: #e0b45c; transform: translateY(-5px); }
.feat-icon { font-size: 36px; margin-bottom: 12px; }
.feat-card h3 { color: #6d0303; font-size: 16px; margin-bottom: 8px; }
.feat-card p { color: #aaa; font-size: 13px; line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery-section {
    background: #f0e9e9;
    padding: 60px 40px;
    text-align: center;
}
.gallery-section h2 { font-size: 36px; color: #6d0303; font-style: italic; margin-bottom: 8px; }
.gallery-section > p { color: #000; font-size: 14px; margin-bottom: 30px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #5a1f1f;
    aspect-ratio: 4/3;
}
.gallery-item img, .gallery-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(107,30,30,0.9));
    padding: 12px;
    opacity: 0;
    transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: #e0b45c; font-size: 13px; font-weight: bold; }

/* ===== MENU PREVIEW ===== */
.menu-preview {
    background: #e4dddd;
    padding: 60px 40px;
    text-align: center;
}
.menu-preview h2 { font-size: 36px; color: #6d0303; font-style: italic; }
.menu-preview > p { color: #0a0000; font-size: 14px; margin: 10px 0 40px; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.menu-card {
    background: #2a0f0f;
    border: 1px solid #5a1f1f;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: 0.3s;
}
.menu-card:hover { border-color: #f80505; }
.menu-card img, .menu-card video { width: 100%; height: 180px; object-fit: cover; }
.menu-info { padding: 16px; }
.menu-info h3 { color: #b38633; font-size: 16px; margin-bottom: 6px; }
.menu-info p { color: #aaa; font-size: 12px; margin-bottom: 10px; line-height: 1.5; }

/* Price + Button row */
.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 8px;
}
.menu-price { color: #e0b45c; font-weight: bold; font-size: 15px; white-space: nowrap; }

/* ===== ADD TO CART BUTTON ===== */
.add-to-cart-btn {
    background: #770707;
    color: #e0b45c;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.add-to-cart-btn:hover {
    background: #e0b45c;
    color: #3a0a0a;
    transform: scale(1.05);
}
.add-to-cart-btn.added {
    background: #2a6e2a;
    color: #fff;
}

/* ===== FULL MENU SECTION ===== */
.full-menu-section {
    background: #f5efe6;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.full-menu-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0.3'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0.3'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0.2'/%3E%3Cpath d='M100 20 L190 100 L100 180 L10 100 Z' fill='none' stroke='%23c9a86c' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}
.full-menu-header {
    text-align: center;
    padding: 0 40px 60px;
    position: relative;
    z-index: 1;
}
.menu-label-top {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: #8b1a1a;
    margin-bottom: 16px;
    opacity: 0.8;
}
.full-menu-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: #3a0a0a;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}
.menu-category-row {
    display: flex;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(139,26,26,0.15);
    min-height: 380px;
}
.menu-category-row:last-child { border-bottom: 1px solid rgba(139,26,26,0.15); }
.menu-cat-content {
    flex: 1;
    padding: 60px 60px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.menu-category-row.reverse .menu-cat-content { padding: 60px 80px 60px 60px; }
.menu-cat-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-height: 350px;
}
.menu-cat-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: sepia(15%) contrast(1.05);
}
.menu-category-row:hover .menu-cat-image img { transform: scale(1.04); }
.menu-cat-image video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: sepia(15%) contrast(1.05);
}
.menu-category-row:hover .menu-cat-image video { transform: scale(1.04); }
.menu-cat-number {
    position: absolute;
    top: 30px; left: 70px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(139,26,26,0.1);
    font-weight: 600;
    line-height: 1;
    user-select: none;
}
.menu-category-row.reverse .menu-cat-number { left: auto; right: 70px; }
.menu-cat-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: #3a0a0a;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.2;
}
.menu-cat-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #5a3a2a;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 420px;
}
.menu-explore-btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #8b1a1a;
    border: 1px solid rgba(139,26,26,0.4);
    padding: 10px 24px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}
.menu-explore-btn:hover { background: #8b1a1a; color: #f5efe6; border-color: #8b1a1a; }
.menu-items-list {
    display: none;
    margin-top: 24px;
    border-top: 1px solid rgba(139,26,26,0.2);
    padding-top: 20px;
    animation: fadeDown 0.3s ease;
}
.menu-items-list.open { display: block; }
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(139,26,26,0.2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #3a0a0a;
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-row span:last-child {
    color: #8b1a1a;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 20px;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: #3a0a0a;
    padding: 70px 0 0;
    overflow: hidden;
}
.insta-header { text-align: center; padding: 0 40px 50px; }
.insta-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    color: #e0b45c;
    font-style: italic;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 18px;
}
.insta-header p { color: #f5e0c0; font-size: 15px; line-height: 1.7; margin-bottom: 30px; }
.insta-follow-btn {
    display: inline-block;
    background: #f5efe6;
    color: #3a0a0a;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 16px 48px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
}
.insta-follow-btn:hover { background: #e0b45c; color: #3a0a0a; }
.insta-carousel-wrapper { width: 100%; overflow: hidden; }
.insta-carousel-wrapper:hover .insta-carousel-track { animation-play-state: paused; }
.insta-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: instaScroll 22s linear infinite;
    padding: 0 8px;
}
@keyframes instaScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.insta-img-item {
    width: 260px; height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}
.insta-img-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: sepia(10%) contrast(1.05);
}
.insta-img-item:hover img { transform: scale(1.08); }
.insta-overlay {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(58,10,10,0.75);
    color: #e0b45c;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.insta-img-item:hover .insta-overlay { opacity: 1; }

/* ===== CTA ===== */
.cta-section {
    background: #3a0404;
    padding: 70px 20px;
    text-align: center;
}
.cta-section h2 { font-size: 38px; color: #e0b45c; font-style: italic; margin-bottom: 12px; }
.cta-section p { color: #f5e0c0; font-size: 15px; margin-bottom: 28px; max-width: 500px; margin-inline: auto; }
.cta-btn {
    background: #e0b45c;
    color: #3a0a0a;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: 0.3s;
}
.cta-btn:hover { background: #fff; }

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #3a0a0a;
    padding: 90px 60px;
    position: relative;
    overflow: hidden;
}
.about-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20px 20px, rgba(201,168,108,0.07) 2px, transparent 2px),
        radial-gradient(circle at 60px 60px, rgba(201,168,108,0.05) 2px, transparent 2px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}
.about-section::before {
    content: '';
    position: absolute;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,108,0.08);
    pointer-events: none;
    z-index: 0;
}
.about-section::after {
    content: '';
    position: absolute;
    right: -50px; top: 50%;
    transform: translateY(-50%);
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,108,0.06);
    pointer-events: none;
    z-index: 0;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.about-media { flex-shrink: 0; }
.about-arch {
    width: 340px; height: 460px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    border: 2px solid rgba(201,168,108,0.3);
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
#about-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content { flex: 1; }
.about-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: #c9a86c;
    margin-bottom: 20px;
    opacity: 0.85;
}
.about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    color: #c9a86c;
    font-weight: 600;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 20px;
}
.about-divider {
    width: 2px; height: 60px;
    background: linear-gradient(to bottom, #c9a86c, transparent);
    margin-bottom: 28px;
}
.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #e8d5b5;
    line-height: 1.8;
    max-width: 480px;
}
.about-highlight { color: #c9a86c; font-style: italic; font-weight: 600; }
.about-signature { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(201,168,108,0.2); }
.about-ceo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #c9a86c;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 6px;
}
.about-ceo-title { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; color: #8a6a3a; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .delivery { display: none; }
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 13px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-right { display: none; }
    .delivery { display: none; }
    .nav-links {
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: #5a0808;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 16px;
        gap: 0;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.3s;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 28px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links li:last-child a { border-bottom: none; }

    .cart-sidebar { width: 100%; right: -100%; }

    .hero-title h1 { font-size: 52px; letter-spacing: 3px; }
    .about-container { flex-direction: column; gap: 40px; }
    .about-arch { width: 260px; height: 360px; }
    .about-heading { font-size: 42px; }
    .full-menu-header h2 { font-size: 32px; }
    .menu-category-row,
    .menu-category-row.reverse { flex-direction: column; }
    .menu-cat-image { height: 220px; }
    .menu-cat-content { padding: 40px 30px !important; }
    .menu-cat-number { left: 20px !important; right: auto !important; font-size: 60px; }
    .menu-cat-content h3 { font-size: 26px; }
    .insta-header h2 { font-size: 28px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .navbar { padding: 12px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-title h1 { font-size: 38px; }
    .menu-card-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}