/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Colors - Casual Greek Restaurant */
    --primary-color: #d4761f;
    --primary-dark: #b85f0f;
    --primary-light: #f4a259;
    --secondary-color: #2c5f8d;
    --secondary-dark: #1e4266;
    --secondary-light: #4a7ba7;

    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --text-gray: #6c757d;

    --bg-light: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-dark: #1a1a1a;

    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 3rem;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* 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 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section--alt {
    background-color: var(--bg-alt);
}

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: var(--gap-md);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

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

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

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

.navbar__menu {
    display: flex;
    gap: var(--gap-md);
}

.navbar__link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

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

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

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: parallax 20s ease infinite;
}

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

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(212, 118, 31, 0.3));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: var(--gap-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    text-transform: lowercase;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--gap-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

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

.hero__stars {
    color: var(--warning);
    font-size: 1.5rem;
}

.hero__score {
    font-size: 2rem;
    font-weight: bold;
}

.hero__reviews {
    color: rgba(248, 249, 250, 0.8);
}

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

.hero__badge {
    background: rgba(212, 118, 31, 0.9);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

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

.hero__button {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.hero__button--primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

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

.hero__button--secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.hero__button--secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero__scroll-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: scroll 1.5s ease infinite;
}

.hero__scroll-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

.hero__scroll-indicator span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes scroll {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

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

/* ===========================
   About Section
   =========================== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

.about__text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.about__text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--gap-md);
    color: var(--text-gray);
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.about__highlight {
    display: flex;
    gap: var(--gap-sm);
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.about__highlight:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about__highlight-icon {
    font-size: 2.5rem;
}

.about__highlight-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.about__highlight-text p {
    color: var(--text-gray);
}

.about__image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.about__image:hover img {
    transform: scale(1.05);
}

/* ===========================
   Features Section
   =========================== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-md);
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

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

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: var(--gap-sm);
}

.feature-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--gap-sm);
    color: var(--primary-color);
}

.feature-card__description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===========================
   Menu Section
   =========================== */
.menu__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
    justify-content: center;
    margin-bottom: var(--gap-md);
}

.menu__tag {
    background: var(--primary-light);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 500;
    transition: var(--transition-fast);
}

.menu__tag:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.menu__note {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    margin-top: var(--gap-md);
}

.menu__note p {
    margin-bottom: 0.5rem;
}

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

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: scale(0.8);
}

.gallery__item.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

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

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

.gallery__item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.gallery__item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

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

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

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

.lightbox__close {
    top: 20px;
    right: 20px;
}

.lightbox__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===========================
   Reviews Section
   =========================== */
.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--gap-lg);
    margin-bottom: var(--gap-lg);
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.reviews__score {
    text-align: center;
}

.reviews__score-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.reviews__score-stars {
    font-size: 2rem;
    color: var(--warning);
    margin: var(--gap-sm) 0;
}

.reviews__score-count {
    color: var(--text-gray);
}

.reviews__bar {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    gap: var(--gap-sm);
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviews__bar-label {
    color: var(--text-gray);
}

.reviews__bar-track {
    height: 8px;
    background: #e0e0e0;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.reviews__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--warning));
    transition: width 1s ease;
}

.reviews__bar-count {
    text-align: right;
    color: var(--text-gray);
}

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

.review-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

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

.review-card__rating {
    color: var(--warning);
    font-size: 1.2rem;
}

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

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

.review-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--gap-sm);
}

.review-card__badge {
    background: var(--bg-alt);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-gray);
}

.review-card__badge--guide {
    background: var(--secondary-light);
    color: var(--text-light);
}

.review-card__ratings {
    display: flex;
    gap: var(--gap-sm);
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: var(--gap-sm);
}

.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

.reviews__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.reviews__btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.reviews__customer-update {
    margin-top: var(--gap-lg);
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.reviews__customer-update h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===========================
   Popular Times Section
   =========================== */
.popular-times__status {
    color: var(--success);
    font-weight: bold;
}

.popular-times__chart {
    max-width: 800px;
    margin: 0 auto;
}

.popular-times__note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

/* ===========================
   Hours Section
   =========================== */
.hours__table {
    max-width: 600px;
    margin: 0 auto var(--gap-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hours__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bg-alt);
}

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

.hours__row:hover {
    background: var(--bg-alt);
}

.hours__day {
    font-weight: bold;
    color: var(--primary-color);
}

.hours__time {
    color: var(--text-gray);
}

.hours__note {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary-light);
}

/* ===========================
   Contact Section
   =========================== */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
}

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

.contact__item {
    display: flex;
    gap: var(--gap-sm);
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact__item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact__icon {
    font-size: 2rem;
}

.contact__text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact__text p {
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.contact__text a {
    color: var(--secondary-color);
    font-weight: bold;
}

.contact__text a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

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

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

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

.footer__title {
    color: var(--primary-color);
    margin-bottom: var(--gap-sm);
    font-size: 1.3rem;
}

.footer__text {
    color: rgba(248, 249, 250, 0.7);
    margin-bottom: 0.5rem;
}

.footer__rating {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: var(--gap-sm);
}

.footer__stars {
    color: var(--warning);
}

.footer__links,
.footer__contact,
.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a,
.footer__contact a {
    color: rgba(248, 249, 250, 0.7);
    transition: var(--transition-fast);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: var(--gap-md);
    border-top: 1px solid rgba(248, 249, 250, 0.1);
    color: rgba(248, 249, 250, 0.5);
}

.footer__bottom p {
    margin-bottom: 0.3rem;
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }

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

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

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

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
    }

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

    .navbar__link {
        padding: 1rem;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.2rem;
    }

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

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

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

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

    .hours__row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

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

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero__button {
        width: 100%;
    }

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

    .lightbox__prev,
    .lightbox__next {
        font-size: 1.5rem;
        padding: 0.5rem;
    }
}

/* ===========================
   Accessibility
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .navbar,
    .hero__buttons,
    .back-to-top,
    .lightbox {
        display: none;
    }

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

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