/* ===========================
   CSS VARIABLES
   =========================== */
:root {
    --primary-color: #d35400;
    --secondary-color: #e67e22;
    --accent-color: #f39c12;
    --dark-bg: #1a1a1a;
    --dark-section: #2c2c2c;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-gray: #7f8c8d;
    --success-color: #27ae60;
    --border-color: #e0e0e0;

    --font-primary: 'Georgia', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    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-speed);
}

a:hover {
    color: var(--primary-color);
}

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

.section {
    padding: 80px 0;
}

.section--dark {
    background-color: var(--dark-section);
    color: var(--text-light);
}

.section--light {
    background-color: var(--light-bg);
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: inherit;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-speed);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.navbar__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--accent-color);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: all var(--transition-speed);
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar__link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://lh3.googleusercontent.com/p/AF1QipO3-asWi-VkKfQ8PZ7dr3a8i_cs3fB4dNE0WhX9=w1920-h1080-k-no');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero__title {
    font-family: var(--font-primary);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.5rem;
    color: #ddd;
}

.star.filled {
    color: var(--accent-color);
}

.star.half {
    background: linear-gradient(90deg, var(--accent-color) 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.btn--primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.6);
}

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

.btn--secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about__content {
    display: grid;
    gap: 40px;
}

.about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card__text {
    color: var(--text-gray);
}

/* ===========================
   OFFERINGS SECTION
   =========================== */
.offerings__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.offering-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed);
}

.offering-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.offering-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.offering-card__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offering-card__text {
    opacity: 0.8;
}

.recommended-dishes {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.recommended-dishes__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.dishes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.dish-tag {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.dish-tag:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.service-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card__text {
    color: var(--text-gray);
}

.service-card__text a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===========================
   AMENITIES SECTION
   =========================== */
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all var(--transition-speed);
}

.amenity-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
}

.amenity-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.amenity-text {
    font-weight: 500;
    color: var(--text-dark);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

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

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.gallery__item:hover .gallery__image {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

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

.gallery__icon {
    font-size: 3rem;
    color: white;
}

/* 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: 90vh;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 3rem;
}

.lightbox__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--primary-color);
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
}

.rating-score {
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.total-reviews {
    display: block;
    margin-top: 10px;
    opacity: 0.7;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    min-width: 40px;
    font-weight: 600;
}

.bar-container {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent-color);
    transition: width 1s ease;
}

.bar-count {
    min-width: 40px;
    text-align: right;
    opacity: 0.7;
}

.reviews__carousel {
    display: flex;
    overflow: hidden;
    position: relative;
}

.review-card {
    min-width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all var(--transition-speed);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-card__author {
    font-weight: 600;
    font-size: 1.1rem;
}

.review-card__date {
    opacity: 0.6;
    font-size: 0.9rem;
}

.review-card__rating {
    margin-bottom: 15px;
}

.review-card__text {
    line-height: 1.8;
    opacity: 0.9;
}

.review-card__context {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.context-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.carousel__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel__btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.carousel__btn:hover {
    background: var(--primary-color);
}

/* ===========================
   OPENING HOURS
   =========================== */
.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.hours__schedule {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

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

.hours__day:hover {
    background: rgba(211, 84, 0, 0.05);
}

.hours__day.today {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 10px;
}

.day-name {
    font-weight: 600;
}

.day-hours {
    color: var(--text-gray);
}

.hours__day.today .day-hours {
    color: white;
}

.hours__busytimes {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
}

.busytimes__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.busytimes__chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 200px;
    margin-bottom: 20px;
}

.busytimes__bar {
    flex: 1;
    background: #ddd;
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: all var(--transition-speed);
}

.busytimes__bar:hover {
    opacity: 0.8;
}

.busytimes__bar.busy {
    background: var(--accent-color);
}

.busytimes__bar.moderate {
    background: var(--primary-color);
}

.busytimes__legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 10px;
    border-radius: 3px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact__content {
    display: grid;
    gap: 40px;
}

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

.info-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all var(--transition-speed);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.info-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card__text {
    opacity: 0.8;
    line-height: 1.8;
}

.info-card__text a {
    color: var(--accent-color);
    font-weight: 600;
}

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

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0 20px;
}

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

.footer__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer__text {
    opacity: 0.8;
    line-height: 1.8;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a:hover {
    color: var(--accent-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ===========================
   MEDIA QUERIES
   =========================== */

/* Tablet */
@media (max-width: 1023px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

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

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

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

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed);
    }

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

    .section {
        padding: 50px 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

    .about__features,
    .offerings__grid,
    .services__grid,
    .amenities__grid,
    .contact__info {
        grid-template-columns: 1fr;
    }

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

    .lightbox__prev,
    .lightbox__next {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

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

/* Extra small mobile */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__rating {
        flex-direction: column;
        gap: 10px;
    }
}
