/* Google Fonts */
:root {
    --primary-color: #E25B24; /* Burnt Orange / Terracotta */
    --primary-hover: #D96130;
    --bg-color: #F5EBE1;      /* Soft Cream / Beige */
    --bg-alt: #FAF2E9;        /* Lighter Cream */
    --text-main: #2C1E16;     /* Deep Warm Brown */
    --text-muted: #5e463a;
    --card-bg: #FFFFFF;
    --glass-bg: rgba(245, 235, 225, 0.85);
    
    /* Sunlit Sharp Shadow (Chiaroscuro) */
    --sun-shadow: 12px 12px 0px rgba(44, 30, 22, 0.1);
    --sun-shadow-hover: 15px 15px 0px rgba(226, 91, 36, 0.15);
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Tajawal', sans-serif;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    box-shadow: 6px 6px 0px rgba(44, 30, 22, 0.1);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px rgba(44, 30, 22, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 4px 4px 0px rgba(226, 91, 36, 0.1);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 6px 6px 0px rgba(226, 91, 36, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(44,30,22,0.05);
}

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

/* Logo CSS */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    padding: 2px;
    position: relative;
}

.pane {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

.pane-open {
    transform-origin: left;
    transform: perspective(100px) rotateY(-30deg);
    background-color: var(--primary-color);
    opacity: 0.2;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text span {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/images/whj_hero_light.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(245, 235, 225, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    background: var(--glass-bg);
    padding: 40px;
    border: 2px solid #fff;
    box-shadow: var(--sun-shadow);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cream-bg {
    background-color: var(--bg-alt);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    border-right: 4px solid var(--primary-color);
    padding-right: 15px;
}

.image-wrapper {
    position: relative;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #e0d5c8;
}

.sun-shadow {
    box-shadow: var(--sun-shadow);
    transition: var(--transition);
}
.sun-shadow:hover {
    transform: translate(-5px, -5px);
    box-shadow: var(--sun-shadow-hover);
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 0; /* Boxy look for minimalism */
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-card {
    background-color: var(--card-bg);
    border: 1px solid #e0d5c8;
    box-shadow: var(--sun-shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: var(--sun-shadow-hover);
}

.card-image {
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid #e0d5c8;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
}

.price {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    border: 8px solid #fff;
    box-shadow: var(--sun-shadow);
    height: 300px;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translate(-5px, -5px);
    box-shadow: var(--sun-shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: var(--bg-alt);
    padding: 80px 0 20px;
    border-top: 2px solid #e0d5c8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--primary-color);
}

.social-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    padding: 10px 0;
}

.social-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0d5c8;
    color: var(--text-muted);
    font-weight: 500;
}

/* Animations & Responsive */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s forwards ease-out;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .hero-content { margin-top: 60px; }
}
