/* CSS Variables */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #A0522D;
    --secondary-color: #D2691E;
    --accent-color: #DEB887;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --background-light: #FAFAFA;
    --background-white: #FFFFFF;
    --border-color: #E5E5E5;
    --success-color: #4CAF50;
    --warning-color: #FFA726;
    --error-color: #EF5350;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.20);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --max-width: 1200px;
    --header-height: 70px;
}

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

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

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

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

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

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.navbar__brand {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.navbar__title {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-base);
}

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

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

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

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar__link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.938rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

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

.hero__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.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(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero__info {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    font-size: 0.938rem;
}

.hero__badge--open {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.hero__icon {
    width: 20px;
    height: 20px;
}

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

.hero__button {
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    display: inline-block;
}

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

.hero__button--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero__button--secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.hero__button--secondary:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
}

.hero__controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hero__control {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition-base);
}

.hero__control:hover {
    background: rgba(0,0,0,0.7);
    transform: scale(1.1);
}

.hero__indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.hero__indicator--active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.about__card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.about__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about__card-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about__card-text {
    color: var(--text-light);
    font-size: 0.938rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features__content {
    margin-top: 3rem;
}

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

.features__item {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.features__item-header {
    margin-bottom: 1.5rem;
}

.features__item-title {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.features__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.features__tag {
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.features__services {
    list-style: none;
}

.features__service {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.features__service-icon {
    color: var(--success-color);
    font-weight: bold;
}

.features__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.features__payment {
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
}

.features__promotions {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.features__promotions-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.features__promotions-text {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.features__promotions-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    transition: var(--transition-base);
}

.features__promotions-link:hover {
    background: white;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--background-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    height: 250px;
}

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

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

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

.gallery__lightbox--active {
    display: flex;
}

.gallery__lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 2001;
}

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

/* Reviews Section */
.reviews {
    padding: 5rem 0;
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 2rem 0 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews__rating {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
}

.reviews__score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.reviews__stars {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 0.5rem;
}

.reviews__star--filled {
    color: #FFB300;
}

.reviews__star--half {
    position: relative;
    display: inline-block;
    color: #ddd;
}

.reviews__star--half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #FFB300;
}

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

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

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

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

.reviews__bar-track {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.reviews__bar-fill {
    height: 100%;
    background: #FFB300;
    transition: width 1s ease;
}

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

.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
}

.reviews__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.reviews__item {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
}

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

.reviews__item-rating {
    color: #FFB300;
    font-size: 1.125rem;
}

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

.reviews__item-text {
    color: var(--text-dark);
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.reviews__item-context {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviews__context-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--background-light);
    border-radius: 4px;
    color: var(--text-light);
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}

.reviews__nav--prev {
    left: 0;
}

.reviews__nav--next {
    right: 0;
}

.reviews__nav:hover {
    background: var(--primary-dark);
}

.reviews__tags {
    margin-top: 3rem;
    text-align: center;
}

.reviews__tags-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reviews__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.reviews__tag {
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

/* Updates Section */
.updates {
    padding: 5rem 0;
    background: var(--background-light);
}

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

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

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

.updates__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.updates__content {
    padding: 1.5rem;
}

.updates__date {
    font-size: 0.813rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.updates__text {
    margin-top: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.updates__link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.938rem;
}

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

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.contact__item {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
}

.contact__item-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact__map-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.contact__map-link:hover {
    color: var(--primary-dark);
}

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

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

.contact__day {
    font-weight: 500;
}

.contact__time {
    color: var(--primary-color);
}

.contact__note {
    font-size: 0.875rem;
    color: var(--text-lighter);
    font-style: italic;
}

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

.contact__details li {
    padding: 0.375rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.contact__details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact__popular,
.contact__quiet {
    font-size: 0.938rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.contact__busy {
    list-style: none;
    font-size: 0.875rem;
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.contact__busy li {
    padding: 0.25rem 0;
    padding-left: 1rem;
}

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

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

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

.footer__title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer__description {
    font-size: 0.938rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.footer__links-title,
.footer__social-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.footer__links-list li {
    margin-bottom: 0.5rem;
}

.footer__links-list a {
    color: rgba(255,255,255,0.8);
    font-size: 0.938rem;
}

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

.footer__social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.footer__social-links a:hover {
    background: var(--primary-color);
}

.footer__social-links svg {
    width: 20px;
    height: 20px;
    fill: white;
}

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

.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;
}

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

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

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

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

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

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

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

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1023px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--background-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }

    .navbar__menu.active {
        left: 0;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .reviews__track {
        flex-direction: column;
    }

    .reviews__item {
        flex: 1 1 100%;
    }

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

    .contact__map {
        height: 350px;
    }

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

    .footer__social-links {
        justify-content: center;
    }

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

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

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

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero__button {
        width: 100%;
        text-align: center;
    }

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

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

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

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

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

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

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero__controls,
    .hero__indicators,
    .gallery__lightbox,
    .scroll-top {
        display: none;
    }

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

    .hero__overlay {
        position: relative;
        background: none;
        color: var(--text-dark);
    }

    .hero__content {
        color: var(--text-dark);
    }

    section {
        page-break-inside: avoid;
    }
}