/* =============================================
   TRATTORIA BELLA VISTA - Main Stylesheet
   =============================================
   Colors:
   - Primary Black: #1a1a1a
   - White: #ffffff
   - Gold Accent: #d4af37
   - Light Gray: #f5f5f5
   - Dark Gray: #333333
   ============================================= */

/* ----- CSS VARIABLES ----- */
:root {
    --color-black: #1a1a1a;
    --color-white: #ffffff;
    --color-gold: #d4af37;
    --color-gold-light: #e5c76b;
    --color-gold-dark: #b8952e;
    --color-gray-light: #f5f5f5;
    --color-gray: #888888;
    --color-gray-dark: #333333;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --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);

    --container-max: 1200px;
    --header-height: 80px;
}

/* ----- CSS RESET ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ----- UTILITY CLASSES ----- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section--dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

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

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

.text-gold {
    color: var(--color-gold);
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section--dark .section-subtitle {
    color: var(--color-gray);
}

.gold-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0 auto 1.5rem;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn--primary:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

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

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

.btn--dark {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-black);
}

.btn--dark:hover {
    background-color: transparent;
    color: var(--color-black);
}

/* ----- HEADER & NAVIGATION ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header--transparent {
    background-color: transparent;
}

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

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.logo span {
    color: var(--color-gold);
}

.nav__list {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

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

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

.nav__link:hover,
.nav__link--active {
    color: var(--color-gold);
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-normal);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero__breadcrumb {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.page-hero__breadcrumb a {
    color: var(--color-gold);
}

.page-hero__breadcrumb a:hover {
    text-decoration: underline;
}

/* ----- FEATURES / WHY CHOOSE US ----- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

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

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card__text {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* ----- GALLERY GRID ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-grid--preview {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

.gallery-item__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-normal);
}

.gallery-item__icon {
    color: var(--color-white);
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.testimonial-card__stars {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ----- MENU SECTION ----- */
.menu-category {
    margin-bottom: 4rem;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.menu-category__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 0.75rem auto 0;
}

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

.menu-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
}

.menu-item__image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.menu-item__content {
    flex: 1;
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.menu-item__price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 600;
}

.menu-item__description {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.menu-item__tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.menu-item__tag {
    font-size: 0.75rem;
    padding: 3px 8px;
    background-color: var(--color-gray-light);
    color: var(--color-gray-dark);
    border-radius: 4px;
}

.menu-item__tag--veg {
    background-color: #e8f5e9;
    color: #2e7d32;
}

/* ----- ABOUT PAGE ----- */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section--reverse {
    direction: rtl;
}

.about-section--reverse > * {
    direction: ltr;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-content__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content__text {
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-item {
    padding: 2rem 1rem;
}

.value-item__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border-radius: 50%;
    font-size: 1.5rem;
}

.value-item__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-item__text {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* ----- CONTACT PAGE ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--color-gray-light);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group--error input,
.form-group--error select,
.form-group--error textarea {
    border-color: #e74c3c;
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border-radius: 50%;
    font-size: 1.25rem;
}

.contact-info__content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info__content p {
    color: var(--color-gray);
    margin-bottom: 0;
}

.contact-info__content a {
    color: var(--color-gold);
}

.contact-info__content a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.contact-map {
    margin-top: 4rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ----- LIGHTBOX ----- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    padding: 1rem;
}

.lightbox__nav:hover {
    color: var(--color-gold);
}

.lightbox__prev {
    left: -80px;
}

.lightbox__next {
    right: -80px;
}

.lightbox__caption {
    color: var(--color-white);
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ----- FOOTER ----- */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__logo span {
    color: var(--color-gold);
}

.footer__description {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: var(--color-gray);
    transition: color var(--transition-fast);
}

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

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-gray);
}

.footer__contact li span:first-child {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-normal);
}

.footer__social a:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer__legal a:hover {
    color: var(--color-gold);
}

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

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

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ----- RESPONSIVE DESIGN ----- */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }

    .section {
        padding: 60px 0;
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

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

    .about-section {
        gap: 3rem;
    }

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

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

/* Mobile Large (max 768px) */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: 50px 0;
    }

    /* Navigation */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-black);
        padding: 100px 40px 40px;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        right: 0;
    }

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

    .nav__toggle {
        display: flex;
    }

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

    .hero__description {
        font-size: 1rem;
    }

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

    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Page Hero */
    .page-hero {
        height: 40vh;
        min-height: 280px;
    }

    .page-hero__title {
        font-size: 2.25rem;
    }

    /* Features */
    .features {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
    }

    /* Menu */
    .menu-item {
        flex-direction: column;
    }

    .menu-item__image {
        width: 100%;
        height: 200px;
    }

    /* About */
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section--reverse {
        direction: ltr;
    }

    .about-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 300px;
    }

    /* Lightbox */
    .lightbox__prev,
    .lightbox__next {
        position: fixed;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .lightbox__prev {
        left: 20%;
    }

    .lightbox__next {
        right: 20%;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        gap: 1rem;
    }
}

/* Mobile Small (max 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .section {
        padding: 40px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

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

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

    .contact-form {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* ----- STICKY CTA BANNER ----- */
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-black) 0%, #2a2a2a 100%);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    animation: slideUp 0.5s ease 1s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.sticky-banner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.sticky-banner__icon {
    width: 45px;
    height: 45px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticky-banner__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-black);
}

.sticky-banner__text h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.sticky-banner__text p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin: 0;
}

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

.sticky-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.sticky-banner__btn:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.sticky-banner__btn svg {
    width: 18px;
    height: 18px;
}

.sticky-banner__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    background: none;
    border: none;
}

.sticky-banner__close:hover {
    color: var(--color-white);
}

.sticky-banner.hidden {
    transform: translateY(100%);
    animation: none;
}

/* Add padding to footer to account for sticky banner */
.footer {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .sticky-banner {
        padding: 0.75rem 0;
    }

    .sticky-banner__container {
        justify-content: center;
        text-align: center;
    }

    .sticky-banner__content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sticky-banner__icon {
        display: none;
    }

    .sticky-banner__text h4 {
        font-size: 1rem;
    }

    .sticky-banner__text p {
        font-size: 0.8rem;
    }

    .sticky-banner__btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .footer {
        padding-bottom: 120px;
    }
}

/* ----- PRINT STYLES ----- */
@media print {
    .header,
    .footer,
    .lightbox {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 1rem 0;
    }
}
