/* ===== CSS Variables ===== */
:root {
    --primary-red: #D32027;
    --primary-red-dark: #B01B21;
    --accent-gold: #D4A84B;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #FFF9F9;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-red-dark);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-dark);
    padding: 12px 0;
}

.btn-play .play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-img {
    height: 45px;
    width: auto;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-leaf {
    position: absolute;
    width: 300px;
    height: 500px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200"><path fill="%23D32027" d="M50 0C30 40 0 80 0 120c0 40 22 60 50 80 28-20 50-40 50-80 0-40-30-80-50-120z"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.1;
}

.hero-leaf-left {
    left: -150px;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
}

.hero-leaf-right {
    right: -150px;
    top: 20%;
    transform: rotate(20deg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.leaf-icon {
    color: var(--primary-red);
}

.hero-description {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(211, 32, 39, 0.2);
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-img-grid img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 200px;
}

.about-img-1 {
    grid-row: span 2;
    height: 415px !important;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    font-style: italic;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ===== Category Section ===== */
.category {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-center {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-description {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.category-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-red);
    background: var(--white);
    color: var(--primary-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex: 1;
}

.category-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

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

.category-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.category-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.category-count {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Menu Section ===== */
.menu {
    padding: 100px 0;
    background: var(--white);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 25px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.menu-item-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.menu-item-cal {
    color: var(--text-light);
    font-size: 12px;
}

.menu-item-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.menu-more {
    text-align: center;
    margin-top: 50px;
}

/* ===== Order Now Section ===== */
.order-now {
    padding: 100px 0;
    background: var(--bg-light);
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 220px;
}

.order-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.order-btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-btn-content {
    display: flex;
    flex-direction: column;
}

.order-btn-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.order-btn-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.order-btn-gofood:hover {
    border-left: 4px solid #00AA13;
}

.order-btn-grab:hover {
    border-left: 4px solid #00B14F;
}

.order-btn-shopee:hover {
    border-left: 4px solid #EE4D2D;
}

/* ===== Location Section ===== */
.location {
    padding: 100px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
    border-radius: 20px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.location-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(211, 32, 39, 0.1);
    transform: translateX(5px);
}

.location-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.location-details h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.location-details p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.location-btn {
    margin-top: 10px;
    gap: 10px;
}

.location-btn i {
    font-size: 16px;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-red);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

.footer-leaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path fill="%23B01B21" opacity="0.3" d="M0 50 Q25 0 50 50 Q75 0 100 50 L100 0 L0 0 Z"/></svg>') repeat-x;
    background-size: 200px;
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-form {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.footer-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 14px;
}

.footer-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.footer-form button {
    padding: 12px 20px;
    background: var(--accent-gold);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s;
}

.footer-form button:hover {
    background: #c49a3d;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links li i {
    margin-top: 3px;
    color: var(--accent-gold);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-gallery {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.footer-gallery img:hover {
    transform: scale(1.05);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-image {
        order: -1;
        text-align: center;
    }

    .hero-image img {
        max-width: 350px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-map iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-icons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title,
    .section-title-center {
        font-size: 32px;
    }

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

    .category-slider {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider-btn {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-form {
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .order-buttons {
        flex-direction: column;
        align-items: center;
    }

    .order-btn {
        width: 100%;
        max-width: 300px;
    }

    .location-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        gap: 5px;
    }

    .menu-tab {
        padding: 8px 15px;
        font-size: 13px;
    }

}
