/* ============================================
   LOQUM STEAKHOUSE - MAIN STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --obsidian: #0c0a09;
    --obsidian-light: #1c1917;
    --obsidian-card: #18181b;
    --ember-primary: #dc2626;
    --ember-glow: #ef4444;
    --ember-dim: #7f1d1d;
    --gold-accent: #d4af37;
    --gold-text: #fbbf24;
    --smoke-text: #d6d3d1;
    --smoke-sub: #a8a29e;
    --green-halal: #22c55e;
    --green-dark: #166534;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--obsidian);
    color: var(--smoke-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: white;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--smoke-sub);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ember-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.halal-badge-nav {
    display: none;
    padding: 0.5rem 1rem;
    background: rgba(22, 101, 52, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.halal-badge-nav span {
    color: var(--green-halal);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 10, 9, 0.98);
    z-index: 200;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.halal-badge-mobile {
    padding: 0.75rem 1.5rem;
    background: rgba(22, 101, 52, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: var(--green-halal);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 1rem 0;
}

.mobile-menu ul a {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 10, 9, 0.7) 0%,
        rgba(12, 10, 9, 0.5) 50%,
        rgba(12, 10, 9, 0.9) 100%
    );
}

.hero-fire-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.ember-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ember-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ember-glow);
    border-radius: 50%;
    animation: floatUp 8s linear infinite;
    filter: blur(1px);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
}

.halal-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(22, 101, 52, 0.4);
    border: 1px solid rgba(34, 197, 94, 0.5);
    margin-bottom: 2rem;
}

.halal-badge span {
    color: var(--green-halal);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-tagline {
    color: var(--gold-text);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero h1 .text-white {
    display: block;
    color: white;
}

.hero h1 .text-gradient {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #dc2626 50%, #7f1d1d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: var(--smoke-sub);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--smoke-sub);
    animation: bounce 2s infinite;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--ember-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--ember-glow);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold-text);
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.btn-outline:hover {
    background: rgba(251, 191, 36, 0.1);
}

.btn-full {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 500;
}

.link-arrow:hover {
    color: var(--gold-accent);
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-tag {
    display: block;
    color: var(--gold-text);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Cuisine Section */
.cuisine-section {
    padding: 5rem 0;
    background: var(--obsidian);
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cuisine-card {
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cuisine-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.cuisine-card i {
    font-size: 2.5rem;
    color: var(--ember-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.cuisine-card:hover i {
    color: var(--gold-text);
}

.cuisine-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cuisine-card p {
    color: var(--smoke-sub);
    font-size: 0.875rem;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--obsidian), var(--obsidian-light));
}

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

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--smoke-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 10;
}

.cta-section h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--smoke-sub);
    margin-bottom: 2rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--obsidian);
    text-align: center;
}

.page-header-bg {
    position: relative;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--smoke-sub);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: 3rem 0 5rem;
    background: var(--obsidian);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.menu-tab {
    padding: 0.75rem 1rem;
    background: rgba(28, 25, 23, 0.5);
    border: none;
    color: var(--smoke-sub);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-tab:hover {
    color: white;
    background: rgba(28, 25, 23, 0.8);
}

.menu-tab.active {
    background: var(--ember-primary);
    color: white;
}

.category-description {
    text-align: center;
    color: var(--smoke-sub);
    margin-bottom: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.menu-item {
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.menu-item h3 {
    font-size: 1rem;
}

.menu-item .price {
    color: var(--gold-text);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.menu-item p {
    color: var(--smoke-sub);
    font-size: 0.875rem;
    line-height: 1.6;
}

.halal-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1rem 1.5rem;
    background: rgba(22, 101, 52, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.halal-indicator {
    width: 12px;
    height: 12px;
    background: var(--green-halal);
    border-radius: 50%;
}

.halal-note span {
    color: var(--green-halal);
    font-size: 0.875rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 3rem 0;
    background: var(--obsidian);
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.halal-badge-image {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(22, 101, 52, 0.9);
    border: 1px solid var(--green-halal);
}

.halal-badge-image span {
    color: var(--green-halal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-text h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--smoke-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-green {
    color: var(--green-halal) !important;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--obsidian-light);
}

.values-section h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-card {
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--ember-primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--smoke-sub);
    font-size: 0.875rem;
}

/* Kitchen Section */
.kitchen-section {
    padding: 5rem 0;
    background: var(--obsidian);
}

.kitchen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.kitchen-text h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.kitchen-text p {
    color: var(--smoke-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.kitchen-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation-section {
    padding: 3rem 0 5rem;
    background: var(--obsidian);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--gold-text);
    margin-bottom: 0.75rem;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-card p {
    color: var(--smoke-sub);
    font-size: 0.875rem;
}

.reservation-card {
    background: linear-gradient(145deg, rgba(28, 25, 23, 0.8), rgba(12, 10, 9, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5));
}

.form-header i {
    color: var(--ember-primary);
    font-size: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--smoke-sub);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(28, 25, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--smoke-sub);
}

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

.form-group textarea {
    resize: none;
}

.halal-note-form {
    margin-top: 2rem;
    text-align: center;
}

.alternative-contact {
    text-align: center;
    margin-top: 2rem;
    color: var(--smoke-sub);
}

.alternative-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-text);
    margin-top: 0.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 3rem 0 5rem;
    background: var(--obsidian);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--ember-primary);
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.contact-details address {
    font-style: normal;
    color: var(--smoke-text);
    line-height: 1.8;
}

.contact-details a {
    color: var(--smoke-text);
    font-size: 1.125rem;
}

.contact-details a:hover {
    color: var(--gold-text);
}

.contact-details .small {
    color: var(--smoke-sub);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.hours {
    margin-bottom: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    color: var(--smoke-text);
    margin-bottom: 0.25rem;
}

.hour-row strong {
    color: white;
}

.halal-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(22, 101, 52, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.halal-info-card strong {
    display: block;
    margin-bottom: 0.25rem;
}

.halal-info-card p {
    color: var(--smoke-sub);
    font-size: 0.875rem;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    background: rgba(28, 25, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    height: 350px;
}

.map-container iframe {
    filter: grayscale(1) opacity(0.8);
    transition: all 0.5s ease;
}

.map-container iframe:hover {
    filter: grayscale(0) opacity(1);
}

.cuisine-card-contact {
    background: rgba(28, 25, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
}

.cuisine-card-contact h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cuisine-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cuisine-tags span {
    padding: 0.5rem 1rem;
    background: rgba(28, 25, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--smoke-text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--obsidian);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--smoke-sub);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.halal-badge-footer {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(22, 101, 52, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.halal-badge-footer span {
    color: var(--green-halal);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--smoke-sub);
    font-size: 0.875rem;
}

.footer-col ul a:hover {
    color: var(--gold-text);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info i {
    color: var(--ember-primary);
    margin-top: 0.25rem;
}

.contact-info span,
.contact-info a {
    color: var(--smoke-sub);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 25, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--smoke-sub);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--ember-primary);
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--smoke-sub);
    font-size: 0.875rem;
}

.footer-halal {
    color: var(--smoke-sub);
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .halal-badge-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .cuisine-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image img {
        height: 400px;
    }
    
    .page-header h1 {
        font-size: 3.5rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reservation-card {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 6rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .kitchen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--ember-dim);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ember-primary);
}

/* Selection */
::selection {
    background: var(--ember-primary);
    color: white;
}
