/* Color Palette & Base Setup - Dark Cozy Library Vibe */
:root {
    --bg-dark: #160f0b; /* Very dark espresso base */
    --bg-gradient: linear-gradient(135deg, #130d09 0%, #241810 100%); /* Deep woody gradient */
    --text-light: #E8D4C0; /* Soft parchment paper color */
    --accent-color: #D4A373; /* Warm amber/gold */
    --card-bg: rgba(38, 25, 18, 0.85); /* Dim mahogany panels */
    --card-border: #422d1e; /* Wood grain panel accent borders */
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
}

/* Header & Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 5%;
    border-bottom: 2px solid var(--card-border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    max-height: 90px;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.7));
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(212, 163, 115, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
}
.whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25D366;
    color: #fff;
}

.maps-link {
    background: rgba(212, 163, 115, 0.08);
}

.hero-content {
    text-align: center;
    margin-bottom: 12vh;
}

/* Bigger, noticeable brand styling */
.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 3px 3px 20px rgba(0,0,0,0.95), 0 0 40px rgba(212, 163, 115, 0.2);
    line-height: 1.1;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-subtext {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 35px;
    color: #e3d5ca;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(212, 163, 115, 0.25);
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #e0b083;
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.45);
}

/* Sections */
section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 2px solid var(--card-border);
    transition: transform 0.3s, border-color 0.3s;
}

.gallery-img:hover {
    transform: scale(1.02);
    border-color: var(--accent-color);
}

/* Menu Accordion */
.menu-section {
    max-width: 800px;
    margin: 0 auto;
}

.menu-subtitle {
    text-align: center;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    color: #a89587;
    font-style: italic;
}

.menu-category {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    overflow: hidden;
}

.menu-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.menu-header:hover {
    background: rgba(66, 45, 30, 0.5);
}

.menu-icon {
    color: var(--accent-color);
    transition: transform var(--transition-speed);
}

.menu-category.active .menu-icon {
    transform: rotate(180deg);
}

.menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-out;
    background: rgba(18, 12, 8, 0.95);
}

.menu-inner {
    padding: 20px 25px;
    border-top: 1px solid var(--card-border);
}

.menu-note {
    font-size: 0.9rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
    font-style: italic;
    background: var(--accent-color);
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--card-border);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 400;
}

.item-price {
    font-weight: 600;
    color: var(--accent-color);
    text-align: right;
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccbebc;
}

.review-card h4 {
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: #0b0705;
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem;
    border-top: 2px solid var(--card-border);
}

.footer-logo {
    max-height: 85px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.tagline {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(212, 163, 115, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.location-btn {
    background: rgba(212, 163, 115, 0.05);
    border-color: rgba(212, 163, 115, 0.25);
}

.footer-social {
    display: inline-block;
    color: #a39182;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-social:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.35;
}

/* Responsiveness adjustments */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 4rem; }
    .hero-tagline { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.2rem; }
    .nav-links span { display: none; }
    .nav-links .social-icon { padding: 10px; }
    .menu-item { flex-direction: column; align-items: flex-start; gap: 5px; }
    .item-price { text-align: left; }
    .contact-info { flex-direction: column; gap: 12px; align-items: center; }
    .contact-link { width: 100%; max-width: 280px; justify-content: center; }
}