/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1544148103-0773bf10d330?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    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(26, 46, 36, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--clr-white);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--clr-accent);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text, .about-image {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--clr-primary);
}

.about-text p {
    color: var(--clr-text-light);
    font-size: 1.1rem;
}

.about-image img {
    box-shadow: 20px 20px 0px var(--clr-accent);
    border-radius: 4px;
}

/* Menu Section (Premium Card Design) */
.menu {
    background-color: var(--clr-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.menu-item {
    background-color: var(--clr-light);
    border-radius: 8px;
    overflow: hidden; /* Potong gambar otomatis mengikuti lengkungan border radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(26, 46, 36, 0.05);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 46, 36, 0.1);
}

.menu-img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Gambar tetap proporsional dan tidak gepeng */
    transition: var(--transition);
}

.menu-item:hover .menu-img {
    transform: scale(1.03); /* Efek zoom tipis saat card di-hover */
}

.menu-content {
    padding: 25px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-header h3 {
    font-size: 1.4rem;
    color: var(--clr-primary);
    font-weight: 600;
}

.price {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 1.25rem;
    background: rgba(214, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.menu-desc {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

.menu-action {
    text-align: center;
}

/* ==========================================================================
   CTA SECTION STYLING
   ========================================================================== */
.cta {
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
    text-align: center;
    color: var(--clr-white);
}

.cta-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(26, 46, 36, 0.85); /* Efek gelap warna hijau Edenia */
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--clr-accent);
}

.cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ==========================================================================
   MENU PAGE ADDITIONAL STYLES
   ========================================================================== */

/* Banner atas halaman menu (dibuat lebih pendek dari hero utama) */
.menu-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu-category-block {
    margin-bottom: 60px;
}

/* Style Judul Kategori (Appetizers, Main Course, dll) */
.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-primary);
    border-bottom: 2px solid var(--clr-accent);
    padding-bottom: 10px;
    margin-bottom: 35px;
}

.category-title span {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    margin-left: 10px;
}