/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Colors - Turkish Restaurant Theme */
    --primary-color: #c42525;
    --primary-dark: #9e1d1d;
    --primary-light: #e63946;
    --secondary-color: #f4a261;
    --accent-color: #2a9d8f;
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.4);

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

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

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

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===================================
   LAYOUT COMPONENTS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto var(--spacing-sm);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: transform var(--transition-normal);
}

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

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

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

.navbar__logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.navbar__subtitle {
    font-size: 0.75rem;
    color: var(--medium-gray);
    letter-spacing: 1px;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-xs);
}

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar__menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.navbar__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: var(--spacing-xs);
    transition: color var(--transition-fast);
}

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

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

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

.navbar__link--cta {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
}

.navbar__link--cta::after {
    display: none;
}

.navbar__link--cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s ease-in-out 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(196, 37, 37, 0.7), rgba(42, 157, 143, 0.5));
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-md);
}

.hero__title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero__subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.rating-text {
    font-size: 1rem;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__tags {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero__scroll {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    font-size: 0.9rem;
}

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

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

/* ===================================
   BUTTONS & TAGS
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.btn--accent {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--accent:hover {
    background: #238276;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.tag--small {
    padding: 4px 12px;
    font-size: 0.75rem;
    background: var(--light-gray);
    color: var(--dark);
    border: 1px solid var(--medium-gray);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 10px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.feature__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.feature__text {
    color: var(--medium-gray);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-card__title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
}

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

/* ===================================
   MENU SECTION
   =================================== */
.menu {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.menu-item {
    background: var(--white);
    padding: var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: all var(--transition-normal);
}

.menu-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.menu-item__name {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--dark);
}

.menu-item__badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.menu-item__description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.menu-item__tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.menu__note {
    background: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-align: center;
}

.menu__note p {
    margin-bottom: var(--spacing-xs);
}

.menu__note strong {
    color: var(--primary-color);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

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

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

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

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.gallery__overlay span {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn var(--transition-normal);
}

.lightbox.active {
    display: flex;
}

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

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    color: var(--white);
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
    border-radius: 5px;
}

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

.lightbox__close {
    top: var(--spacing-md);
    right: var(--spacing-md);
}

.lightbox__prev {
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
}

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

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.reviews__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: 10px;
}

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

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

.rating-summary__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: var(--spacing-sm) 0;
}

.rating-summary__count {
    color: var(--medium-gray);
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

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

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

.rating-bar__track {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width var(--transition-slow);
}

.rating-bar__count {
    width: 50px;
    text-align: right;
    color: var(--medium-gray);
}

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

.review-card {
    background: var(--white);
    padding: var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: all var(--transition-normal);
}

.review-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.review-card__stars {
    display: flex;
    gap: 2px;
}

.review-card__date {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.review-card__text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.review-card__ratings {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xs);
}

.rating-badge {
    background: var(--light-gray);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--dark);
}

.review-card__context {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
}

.reviews__tags {
    text-align: center;
}

.reviews__tags h3 {
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-sm);
}

.tag-cloud {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   OPENING HOURS SECTION
   =================================== */
.hours {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.hours__content {
    max-width: 600px;
    margin: 0 auto;
}

.hours__list {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
}

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

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

.hours__item:hover {
    background: var(--light-gray);
}

.hours__item--highlight {
    background: rgba(196, 37, 37, 0.05);
    font-weight: 600;
}

.hours__day {
    font-weight: 600;
    color: var(--dark);
}

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

.hours__note {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.status-badge--open {
    background: rgba(42, 157, 143, 0.1);
    color: var(--accent-color);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact__item h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact__item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

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

.contact__item a:hover {
    text-decoration: underline;
}

.contact__detail {
    font-size: 0.9rem;
    font-style: italic;
}

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

.contact__actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.footer__subtitle {
    font-size: 0.85rem;
    color: var(--medium-gray);
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.footer__section h4 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.footer__section p {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

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

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

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--dark-gray);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer__bottom p {
    margin-bottom: var(--spacing-xs);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

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

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
    }

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

    .hero {
        margin-top: 60px;
    }

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

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

    .about__features,
    .services__grid,
    .menu__grid,
    .gallery__grid,
    .reviews__carousel {
        grid-template-columns: 1fr;
    }

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

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

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

    .lightbox__prev,
    .lightbox__next {
        font-size: 2rem;
        padding: var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

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

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

/* ===================================
   UTILITIES
   =================================== */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
