:root {
    --primary: #0a0a0a;
    --accent: #d4af37; /* Logo Gold */
    --accent-dark: #b8962e;
    --text-light: #f4f4f4;
    --text-muted: #888;
    --bg-light: #ffffff;
    --bg-soft: #fcfcfc;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Header */
.main-header {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-meta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.est {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.cta-mini {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

/* --- Professional Footer Styling --- */
.main-footer {
    background: #0a0a0a; /* Deep black for luxury feel */
    color: #ffffff;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Small, professional icon image */
.footer-brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.footer-brand h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #d4af37; /* Gold accent */
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.8;
    max-width: 320px;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 25px;
    display: block;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 18px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #d4af37;
}

/* Halal Badge Professionalism */
.halal-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.halal-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-size: 0.65rem;
    text-align: center;
    line-height: 1.1;
}

.halal-text span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.halal-text small {
    color: #888;
    font-size: 0.75rem;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Hero */
.hero {
    height: 85vh;
    background: url('1000172631.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.pre-title {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.sub-title {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 16px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: white;
    transform: translateY(-5px);
}

.btn-secondary {
    border: 1px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Showcase */
.showcase {
    padding: 100px 20px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.tagline {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.showcase h2 {
    font-size: 3.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.food-card {
    background: white;
    overflow: hidden;
    transition: 0.4s;
}

.food-img-wrap {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
}

.food-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.food-card:hover img {
    transform: scale(1.1);
}

.food-info {
    padding: 25px 0;
}

.food-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.food-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Order Section */
.order-section {
    background: var(--bg-soft);
    padding: 120px 0;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.order-info h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    margin-top: 40px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-list i {
    color: var(--accent);
}

/* Form Styling */
.form-container {
    background: white;
    padding: 50px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    border-top: 6px solid var(--accent);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.item-row {
    display: grid;
    grid-template-columns: 2fr 1fr 40px;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.btn-add {
    background: none;
    border: 1px dashed var(--accent);
    color: var(--accent);
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.btn-add:hover {
    background: #fffdf5;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 20px;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-submit:hover {
    background: var(--accent);
}

/* Status Messages */
.status-box {
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
}

.status-box.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.status-box.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Footer */
.main-footer {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-motto {
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 40px;
}

.footer-copyright {
    font-size: 0.65rem;
    color: #444;
    border-top: 1px solid #222;
    padding-top: 30px;
}

@media (max-width: 992px) {
    .order-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-container { padding: 30px 20px; }
}