/* --- GLOBAL STYLES & THEME --- */
:root {
    --primary-red: #d32f2f;
    --primary-green: #2e7d32;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-dark: #333;
    --text-light: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- NAVIGATION --- */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-container {
    background-color: var(--primary-green);
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    background-color: var(--primary-red);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
}

.brand-name span {
    color: var(--primary-green);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul a {
    font-weight: 600;
    transition: color 0.3s;
}

nav ul a:hover {
    color: var(--primary-red);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(/images/haji-ali-background.png) center/cover no-repeat;
    height: 70vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffeb3b;
    font-style: italic;
}

.tagline-badge {
    background-color: var(--primary-green);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
}

/* --- SECTION STRUCTURE --- */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- ABOUT US --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.features-list {
    margin-top: 20px;
    list-style-type: "✓ ";
    padding-left: 20px;
    color: var(--primary-green);
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- MENU HIGHLIGHTS --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-bottom: 4px solid var(--primary-green);
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-info {
    padding: 20px;
}

.menu-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.menu-info p {
    font-size: 0.95rem;
    color: #666;
}

/* --- LOCATIONS --- */
.locations-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.location-item {
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 5px;
    font-weight: 600;
    border-left: 4px solid var(--primary-red);
}

/* --- FOOTER / CONTACT --- */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-sect h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffeb3b;
}

.footer-sect p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}