/* CSS Variables & Theming */
:root {
    --bg-color: #0d0d0d;
    --surface-color: #1a1a1a;
    --primary-accent: #d4af37; /* Gold */
    --primary-accent-hover: #f0c952;
    --text-primary: #fdfbf7;
    --text-secondary: #a0a0a0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

/* Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.mt-5 {
    margin-top: 3rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
}

.logo-halal-text {
    font-family: var(--font-heading);
    color: var(--primary-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a[href="#booking"] {
    background: var(--primary-accent);
    color: var(--bg-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-links a:not([href="#booking"])::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-accent);
    transition: width var(--transition-speed);
}

.nav-links a:not([href="#booking"]):hover::after {
    width: 100%;
}

.nav-links a:not([href="#booking"]):hover {
    color: var(--primary-accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border: 1px solid var(--primary-accent);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-accent);
    color: var(--bg-color);
    font-weight: 600;
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-accent);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* Slight zoom for premium feel */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.6) 100%);
}

.hero-content {
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

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

.halal-badge-large {
    display: inline-block;
    color: var(--primary-accent);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.8);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 2.5rem;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background-color: var(--surface-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-accent);
}

.about-text .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--primary-accent);
}

.about-images-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.chef-main-img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.5s;
}

.about-images-split:hover .chef-main-img {
    transform: scale(1.02);
}

.news-img-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chef-news-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.news-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
}

/* Menu Section */
.menu-section {
    padding: 8rem 0;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.halal-text-accent {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 4rem;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.menu-category {
    font-size: 2rem;
}

.sub-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-accent);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

/* Left Column Styling */
.highlight-column {
    background: rgba(26, 26, 26, 0.5);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-accent);
}

.menu-item {
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateX(10px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-header h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.signature h4 {
    color: var(--primary-accent);
}

.signature h4::before {
    content: '★ ';
    font-size: 1rem;
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 95%;
}

/* Event Grid Container & Cards Styles */
.event-category {
    margin-bottom: 3.5rem;
}

.event-category-title {
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

.event-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    background: #000;
}

.event-card-content {
    padding: 1rem;
}

.event-card-content h5 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.event-card-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.menu-footer-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* Booking Section */
.booking-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(to bottom, var(--bg-color), var(--surface-color));
}

.booking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-header h2 {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.booking-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.catering-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(13, 13, 13, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-accent);
}

.form-group select option {
    background-color: var(--surface-color);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    border-radius: 4px;
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #080808;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    text-align: center;
    color: #4a4a4a;
    font-size: 0.85rem;
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
}

/* Menu Images & Placeholders */
.menu-inline-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-placeholder-img {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile fallback */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
