/* CSS Variables */
:root {
    /* Colors - Casual Kebab Shop Theme */
    --primary-color: #d4a574;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-light: #e9ecef;
    --gray-medium: #6c757d;
    --text-color: #333333;
    --text-light: #666666;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* 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);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-md);
}

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

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

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

/* Utility Classes */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

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

.section__title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: var(--spacing-md) auto 0;
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

.btn--primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

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

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

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.badge--small {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
}

/* Header & Navigation */
.header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
}

.nav__logo {
    display: flex;
    flex-direction: column;
}

.nav__title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

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

.nav__menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav__link {
    color: var(--text-color);
    font-weight: 500;
    padding: var(--spacing-sm) 0;
    position: relative;
}

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

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.hero__slide--active {
    opacity: 1;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(212, 165, 116, 0.4));
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
    color: white;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__badges {
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about__description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.about__stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat__label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__features-title {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
}

.features-list {
    list-style: none;
}

.features-list__item {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
}

.features-list__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background-color: var(--gray-light);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card__title {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.feature-card__list {
    list-style: none;
    color: var(--text-light);
}

.feature-card__list li {
    padding: var(--spacing-xs) 0;
}

/* Order Online Section */
.order-online {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.order-online .section__title {
    color: white;
}

.order-online .section__title::after {
    background: white;
}

.delivery-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.delivery-card {
    background: white;
    color: var(--text-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.delivery-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.delivery-card__name {
    font-weight: 700;
    font-size: 1.1rem;
}

.delivery-card__action {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 1;
}

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

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

/* Reviews Section */
.reviews {
    background-color: var(--gray-light);
}

.reviews__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.reviews__summary {
    text-align: center;
}

.reviews__rating {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.reviews__score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.reviews__stars {
    margin: var(--spacing-sm) 0;
}

.star {
    font-size: 1.5rem;
    color: var(--gray-medium);
}

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

.star--half {
    position: relative;
    color: var(--gray-medium);
}

.star--half::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    overflow: hidden;
    width: 50%;
}

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

.reviews__distribution {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.rating-bar__label {
    min-width: 30px;
    font-weight: 600;
    color: var(--text-light);
}

.rating-bar__track {
    flex: 1;
    height: 8px;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: var(--primary-color);
    transition: width var(--transition-slow);
}

.rating-bar__count {
    min-width: 40px;
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-light);
}

.reviews__tags {
    margin-bottom: var(--spacing-xl);
}

.reviews__tags-title {
    margin-bottom: var(--spacing-md);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.review-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.review-card__rating {
    color: var(--primary-color);
}

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

.review-card__text {
    margin-bottom: var(--spacing-md);
}

.review-card__context {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.context-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    color: var(--text-light);
}

/* Hours Section */
.hours__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.hours__list {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.hours__item--highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.hours__day {
    font-weight: 600;
}

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

.hours__status {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--success-color);
    color: white;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.hours__status.closed {
    background: var(--danger-color);
}

.hours__popular {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hours__popular-title {
    margin-bottom: var(--spacing-md);
}

.popular-times {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: var(--spacing-md);
}

.popular-times__bar {
    flex: 1;
    background: var(--gray-light);
    border-radius: 2px 2px 0 0;
    position: relative;
    transition: all var(--transition-normal);
}

.popular-times__bar.active {
    background: var(--primary-color);
}

.popular-times__bar:hover {
    background: var(--accent-color);
}

.hours__popular-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: var(--gray-light);
}

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

.contact__info {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact__item {
    margin-bottom: var(--spacing-xl);
}

.contact__item:last-child {
    margin-bottom: 0;
}

.contact__label {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.contact__value {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-color);
}

.contact__value--link {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.contact__value--link:hover {
    color: var(--accent-color);
}

.contact__note {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-light);
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background var(--transition-normal);
}

.map-overlay:hover {
    background: rgba(0,0,0,0.5);
}

/* Q&A Section */
.qa {
    background: white;
}

.qa__item {
    background: var(--gray-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.qa__question {
    margin-bottom: var(--spacing-md);
}

.qa__q, .qa__a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-right: var(--spacing-sm);
}

.qa__a {
    background: var(--secondary-color);
}

.qa__date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: var(--spacing-xl) 0;
}

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

.footer__title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer__subtitle {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer__text {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--spacing-md);
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    padding: var(--spacing-xs) 0;
}

.footer__links a {
    color: rgba(255,255,255,0.7);
}

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

.footer__phone {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.footer__address {
    color: rgba(255,255,255,0.7);
}

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

.footer__copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
}

.lightbox.active {
    display: block;
}

.lightbox__close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

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

.lightbox__image {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.lightbox__caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 var(--spacing-md);
    }

    /* Navigation Mobile */
    .nav__toggle {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: var(--spacing-xl);
        transition: right var(--transition-normal);
    }

    .nav__menu.active {
        right: 0;
    }

    /* Hero Mobile */
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .hero__actions .btn {
        width: 100%;
    }

    /* Grid Adjustments */
    .about__content,
    .hours__grid,
    .contact__grid,
    .reviews__header {
        grid-template-columns: 1fr;
    }

    .features__grid,
    .delivery-partners {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    /* Section Padding */
    .section {
        padding: var(--spacing-xl) 0;
    }

    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 0.875rem;
    }

    .features__grid,
    .delivery-partners {
        grid-template-columns: 1fr;
    }

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