/* CSS Variables */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #ffc107;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.nav__logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

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

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

.nav__cta {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
}

.nav__cta:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* 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%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.8));
}

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

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

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

.hero__badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
}

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

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

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

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

.hero__delivery {
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero__delivery p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.delivery__partners {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.delivery__logo {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.delivery__logo:hover {
    background: white;
    transform: translateY(-2px);
}

/* Info Bar */
.info-bar {
    background: var(--light-color);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.info-bar__icon {
    font-size: 2rem;
}

.info-bar__item h4 {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-bar__item p {
    font-weight: 600;
    color: var(--text-color);
}

.info-bar__item a {
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about__text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature__item {
    text-align: center;
}

.feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature__item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.about__image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Specialties Section */
.specialties {
    background: var(--light-color);
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.specialty__card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.specialty__image {
    height: 200px;
    overflow: hidden;
}

.specialty__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.specialty__content {
    padding: 1.5rem;
}

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

.specialty__content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.specialty__tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.specialties__tags {
    text-align: center;
}

.specialties__tags h3 {
    margin-bottom: 1.5rem;
}

.tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Gallery Section */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery__more {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__more:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

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

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.rating__overall {
    text-align: center;
}

.rating__number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
}

.rating__stars {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.star {
    color: #ddd;
}

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

.star.half {
    position: relative;
    color: #ddd;
}

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

.rating__breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating__bar {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 1rem;
}

.bar__container {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.bar__fill {
    height: 100%;
    background: var(--secondary-color);
    transition: width 1s ease;
}

.reviews__carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.review__card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.review__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review__rating {
    color: var(--secondary-color);
}

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

.review__text {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review__footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review__ratings {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.review__recommend {
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 600;
}

.review__badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--success-color);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
}

.reviews__navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.review__nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.review__nav:hover {
    background: #b71c1c;
}

/* Amenities Section */
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity__group {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.amenity__group h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.amenity__group ul {
    list-style: none;
}

.amenity__group li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Location Section */
.location {
    background: var(--light-color);
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location__info h3 {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.info__item {
    margin-bottom: 2rem;
}

.info__item h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hours__list {
    list-style: none;
}

.hours__list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.hours__list li:last-child {
    border-bottom: none;
}

.hours__highlight {
    background: rgba(211, 47, 47, 0.1);
    font-weight: 600;
}

.location__map iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Order Section */
.order__platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.platform__card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

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

.platform__logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.platform__logo.deliveroo {
    background: #00ccbc;
}

.platform__logo.justeat {
    background: #ff8000;
}

.platform__logo.ubereats {
    background: #000000;
}

.platform__logo.phone {
    background: var(--success-color);
}

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

.platform__card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Similar Section */
.similar {
    background: var(--light-color);
}

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

.similar__card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.similar__card h4 {
    margin-bottom: 0.5rem;
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer__section ul {
    list-style: none;
}

.footer__section li {
    padding: 0.25rem 0;
}

.footer__section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__section a:hover {
    color: white;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer__delivery {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__delivery a {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
}

.footer__delivery a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer__tags {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

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

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox__prev,
.lightbox__next {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: #b71c1c;
    transform: translateY(-5px);
}

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

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

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

    .hero__title {
        font-size: 2.5rem;
    }

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav__menu.active {
        transform: translateX(0);
    }

    .hero {
        margin-top: 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

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

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

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

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

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

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

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

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

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .info-bar__items {
        grid-template-columns: 1fr;
    }

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

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

    .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__buttons,
    .gallery__more,
    .reviews__navigation,
    .scroll-top,
    .lightbox {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }

    .hero {
        height: auto;
        margin-top: 0;
    }

    section {
        padding: 1rem 0;
    }

    .container {
        max-width: 100%;
    }
}