/* CSS Variables */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e85a2a;
    --primary-light: #ff8456;
    --secondary-color: #ffc93c;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition-speed: 0.3s;
    --border-radius: 12px;
    --container-width: 1140px;
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.navbar.navbar--hidden {
    transform: translateY(-100%);
}

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

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar__logo-icon {
    font-size: 2rem;
}

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

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

.navbar__menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar__link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-speed);
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    
    background-size: cover;
    background-position: center;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(232, 90, 42, 0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

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

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.hero__button {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-speed);
}

.hero__button--primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

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

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

.hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

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

.hero__scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 8px auto 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

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

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

.about__feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about__feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about__feature-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
}

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

.highlights__card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

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

.highlights__card--large {
    grid-column: span 1;
}

.highlights__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.highlights__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.highlights__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlights__list li {
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.highlights__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.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: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity var(--transition-speed);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery__caption {
    color: white;
    font-weight: 600;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.modal--active {
    display: flex;
}

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

.modal__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    z-index: 2001;
    padding: 10px;
    transition: opacity var(--transition-speed);
}

.modal__close:hover {
    opacity: 0.7;
}

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    padding: 20px;
    z-index: 2001;
    transition: opacity var(--transition-speed);
}

.modal__nav:hover {
    opacity: 0.7;
}

.modal__nav--prev {
    left: 20px;
}

.modal__nav--next {
    right: 20px;
}

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

.modal__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.reviews__stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 2rem;
    color: var(--secondary-color);
}

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

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

.reviews__rating-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.reviews__score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.reviews__distribution {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.reviews__distribution-item {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.reviews__distribution-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.reviews__distribution-bar {
    height: 8px;
    background-color: var(--bg-gray);
    border-radius: 4px;
    overflow: hidden;
}

.reviews__distribution-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.reviews__distribution-count {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: right;
}

.reviews__slider {
    overflow: hidden;
    margin: 40px 0;
}

.reviews__track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-out;
}

.reviews__card {
    min-width: calc(33.333% - 20px);
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews__card-stars {
    display: flex;
    gap: 2px;
    color: var(--secondary-color);
}

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

.reviews__card-text {
    color: var(--text-dark);
    line-height: 1.6;
    flex-grow: 1;
}

.reviews__card-context {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

.reviews__card-context-item {
    display: flex;
    gap: 8px;
    margin-bottom: 4px;
}

.reviews__card-context-label {
    font-weight: 600;
}

.reviews__card-rating {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.reviews__card-rating-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
}

.reviews__card-rating-label {
    color: var(--text-light);
}

.reviews__card-rating-stars {
    color: var(--secondary-color);
}

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

.reviews__nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.reviews__nav:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.reviews__dots {
    display: flex;
    gap: 10px;
}

.reviews__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.reviews__dot--active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Order Section */
.order {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.order__platform {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-sm);
}

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

.order__platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    transition: transform var(--transition-speed);
}

.order__platform:hover .order__platform-icon {
    transform: scale(1.1);
}

.order__platform-icon--glovo {
    color: #ffc93c;
}

.order__platform-icon--pyszne {
    color: #ff6b35;
}

.order__platform-icon--uber {
    color: #000000;
}

.order__platform-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* Hours Section */
.hours {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.hours__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.hours__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hours__schedule {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours__day {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.hours__day:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.hours__day--weekend {
    background-color: rgba(255, 255, 255, 0.15);
}

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

.hours__day-hours {
    font-weight: 500;
}

.hours__popular-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hours__chart {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

#popularity-chart {
    width: 100%;
    height: 200px;
}

.hours__popular-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact__card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact__card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact__card-location {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 8px;
}

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

.contact__card-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: opacity var(--transition-speed);
}

.contact__card-link:hover {
    opacity: 0.7;
}

.contact__card-note {
    color: var(--text-lighter);
    font-size: 0.875rem;
    margin-top: 8px;
}

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer__logo-icon {
    font-size: 2rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.footer__star-half {
    opacity: 0.5;
}

.footer__rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer__heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer__link:hover {
    color: white;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-icon {
    font-size: 1.25rem;
}

.footer__delivery-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__badge {
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
    transition: all var(--transition-speed);
}

.footer__badge:hover {
    background-color: var(--primary-color);
    transform: translateX(5px);
}

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

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

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

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 999;
}

.scroll-top.scroll-top--visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

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

    .hero__title {
        font-size: 3rem;
    }

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

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

    .reviews__card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero__button {
        width: 100%;
    }

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

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

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

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

    .reviews__card {
        min-width: 100%;
    }

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

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

    .modal__nav {
        font-size: 40px;
        padding: 10px;
    }

    .modal__nav--prev {
        left: 10px;
    }

    .modal__nav--next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 2rem;
    }

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