/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Casual Restaurant Theme */
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ff5252;
    --secondary-color: #ffc107;
    --secondary-dark: #ffa000;
    --accent-color: #4caf50;

    /* Neutral Colors */
    --text-dark: #212121;
    --text-light: #757575;
    --text-white: #ffffff;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET / NORMALIZE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== BASE STYLES ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn--secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* ===== TAGS ===== */
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
}

.tag--halal {
    background: var(--accent-color);
    color: var(--text-white);
}

.tag--popular {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.tag--recommended {
    background: var(--primary-color);
    color: var(--text-white);
}

.tag--vegan {
    background: #8bc34a;
    color: var(--text-white);
}

.tag--mention {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.navbar__logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-fast);
}

.navbar__menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar__link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__link--order {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.navbar__link--order::after {
    display: none;
}

.navbar__link--order:hover {
    background: var(--primary-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://lh3.googleusercontent.com/p/AF1QipPrqpSDXCnKEP8j6W0OLi2zUvXPSURKCCFDMCD8=w1920-h1080-k-no');
    background-size: cover;
    background-position: center;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.8), rgba(183, 28, 28, 0.9));
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.hero__stat-stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin: 0.25rem 0;
}

.hero__stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.hero__scroll-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-white);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.about__highlights {
    display: grid;
    gap: var(--spacing-md);
}

.about__highlight {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.about__highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about__highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.about__highlight p {
    color: var(--text-light);
}

.about__features {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.about__features-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.about__features-list {
    display: grid;
    gap: 0.75rem;
}

.about__features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-light);
}

.feature-icon {
    font-size: 1.5rem;
}

/* ===== MENU SECTION ===== */
.menu {
    background: var(--bg-light);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.menu__item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.menu__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu__item-image {
    height: 200px;
    overflow: hidden;
}

.menu__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu__item:hover .menu__item-image img {
    transform: scale(1.1);
}

.menu__item-content {
    padding: var(--spacing-sm);
}

.menu__item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.menu__item-description {
    color: var(--text-light);
    font-size: 0.938rem;
    margin-bottom: 0.75rem;
}

.menu__item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu__note {
    background: var(--bg-white);
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
}

.menu__note p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.menu__note strong {
    color: var(--text-dark);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--bg-white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.15);
}

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--text-white);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.lightbox__close:hover,
.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__close {
    top: 2rem;
    right: 2rem;
}

.lightbox__nav--prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: var(--bg-light);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.reviews__overall {
    text-align: center;
}

.reviews__overall-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reviews__overall-stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.reviews__overall-count {
    color: var(--text-light);
    font-size: 0.938rem;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.reviews__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews__bar-label {
    min-width: 40px;
    font-size: 0.938rem;
    color: var(--text-light);
}

.reviews__bar-track {
    flex: 1;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.reviews__bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.reviews__bar-count {
    min-width: 30px;
    text-align: right;
    font-size: 0.938rem;
    color: var(--text-light);
}

.reviews__carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.reviews__item {
    background: var(--bg-white);
    padding: var(--spacing-sm);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.reviews__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviews__item-stars {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.reviews__item-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.reviews__item-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.reviews__item-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.reviews__item-context {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviews__navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.reviews__nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

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

.reviews__tags {
    text-align: center;
}

.reviews__tags h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.reviews__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* ===== HOURS SECTION ===== */
.hours {
    background: var(--bg-white);
}

.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.hours__schedule {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours__day:last-child {
    border-bottom: none;
}

.hours__day-name {
    font-weight: 600;
    color: var(--text-dark);
}

.hours__day-time {
    color: var(--text-light);
}

.hours__popular {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.hours__popular h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hours__popular-note {
    color: var(--text-light);
    font-size: 0.938rem;
    margin-bottom: var(--spacing-sm);
}

.hours__chart {
    display: grid;
    gap: 0.75rem;
}

.hours__chart-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.hours__chart-label {
    font-weight: 600;
    color: var(--text-dark);
}

.hours__chart-info {
    color: var(--text-light);
    font-size: 0.938rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-light);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.contact__info {
    display: grid;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: 1rem;
    background: var(--bg-white);
    padding: var(--spacing-sm);
    border-radius: 12px;
}

.contact__item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact__item-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact__item-content p,
.contact__item-content a {
    color: var(--text-light);
    line-height: 1.6;
}

.contact__item-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact__item-content a:hover {
    text-decoration: underline;
}

.contact__item-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.25rem;
}

.contact__map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer__section h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.footer__section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.footer__section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.footer__section ul {
    display: grid;
    gap: 0.5rem;
}

.footer__section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer__section a:hover {
    color: var(--secondary-color);
}

.footer__anniversary {
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

.footer__note {
    font-size: 0.875rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet: 768px - 1023px */
@media (max-width: 1023px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .about__content,
    .hours__content,
    .contact__content {
        grid-template-columns: 1fr;
    }

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

/* Mobile: 320px - 767px */
@media (max-width: 767px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
    }

    .navbar__menu.active {
        max-height: 500px;
    }

    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .menu__grid,
    .reviews__carousel {
        grid-template-columns: 1fr;
    }

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

    .lightbox__close {
        top: 1rem;
        right: 1rem;
    }

    .lightbox__nav {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .lightbox__nav--prev {
        left: 0.5rem;
    }

    .lightbox__nav--next {
        right: 0.5rem;
    }

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