/* ========================================
   FRANK'S RESTAURANT — STYLES
   Forest Green + Off-White | Geometric
   ======================================== */

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

:root {
    --color-forest: #1B4332;
    --color-forest-light: #2D6A4F;
    --color-forest-dark: #0F291F;
    --color-sage: #52796F;
    --color-cream: #F5F0E8;
    --color-cream-light: #FAF7F2;
    --color-cream-dark: #E8E0D0;
    --color-accent: #D4A843;
    --color-accent-light: #E8C96A;
    --color-text: #1A1A1A;
    --color-text-light: #4A4A4A;
    --color-white: #FFFFFF;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-forest);
}

.nav-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-forest);
    color: var(--color-cream);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-style: italic;
}

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

.nav-links a {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-forest);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--color-forest);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-forest) !important;
    color: var(--color-cream) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-forest-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-forest);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-forest);
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo {
    position: absolute;
    opacity: 0.1;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--color-cream);
    top: -200px;
    right: -100px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--color-accent);
    bottom: 10%;
    left: 5%;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--color-accent);
    top: 20%;
    left: 8%;
    opacity: 0.06;
}

.geo-square {
    width: 100px;
    height: 100px;
    background: var(--color-cream);
    top: 30%;
    right: 15%;
    transform: rotate(45deg);
    opacity: 0.05;
}

.geo-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--color-cream) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    bottom: 25%;
    right: 30%;
    opacity: 0.15;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    color: var(--color-cream);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 240, 232, 0.12);
    border: 1px solid rgba(245, 240, 232, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-cream-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-cream);
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-forest-dark);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(245, 240, 232, 0.4);
}

.btn-secondary:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--color-cream);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--color-forest);
    border-color: var(--color-forest);
}

.btn-outline-light:hover {
    background: var(--color-forest);
    color: var(--color-cream);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* --- HERO VISUAL --- */
.hero-visual {
    position: relative;
    max-width: 520px;
}

.hero-card-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.stat-card-1 {
    bottom: -20px;
    left: -30px;
    animation-delay: 0s;
}

.stat-card-2 {
    top: 20px;
    right: -20px;
    animation-delay: 1.3s;
}

.stat-card-3 {
    bottom: 60px;
    right: -40px;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-forest);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.813rem;
    color: var(--color-text-light);
    margin-top: 4px;
    line-height: 1.3;
}

/* --- HERO WAVE --- */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- FEATURES --- */
.features {
    background: var(--color-cream);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

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

.feature-card-accent {
    background: var(--color-forest);
    color: var(--color-cream);
    border-color: transparent;
}

.feature-card-accent:hover {
    background: var(--color-forest-light);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--color-forest);
}

.feature-card-accent .feature-icon {
    background: rgba(245, 240, 232, 0.15);
    color: var(--color-accent);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: inherit;
}

.feature-card p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.feature-card-accent p {
    color: rgba(245, 240, 232, 0.8);
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-forest-light);
    background: rgba(27, 67, 50, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag-light {
    color: var(--color-cream);
    background: rgba(245, 240, 232, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-forest);
    margin-bottom: 16px;
}

.section-title-light {
    color: var(--color-cream);
}

.section-sub {
    font-size: 1.063rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.section-sub-light {
    color: rgba(245, 240, 232, 0.75);
}

/* --- MENU --- */
.menu {
    background: var(--color-cream-dark);
    padding: 100px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

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

.menu-card-img {
    position: relative;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-tag-green {
    background: var(--color-forest);
    color: var(--color-cream);
}

.menu-tag-cream {
    background: var(--color-accent);
    color: var(--color-forest-dark);
}

.menu-card-body {
    padding: 28px 28px 32px;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 8px;
}

.menu-card-body p {
    font-size: 0.938rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.menu-note {
    text-align: center;
    background: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    font-size: 0.938rem;
    color: var(--color-text-light);
}

/* --- ABOUT --- */
.about {
    background: var(--color-cream);
    padding: 100px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-cream);
}

.about-img-secondary img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-accent-block {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(27, 67, 50, 0.1);
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-forest);
    line-height: 1;
}

.about-stat-label {
    display: block;
    font-size: 0.813rem;
    color: var(--color-text-light);
    margin-top: 6px;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(27, 67, 50, 0.15);
}

/* --- REVIEWS --- */
.reviews {
    background: var(--color-forest);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.04);
}

.reviews::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.06);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.review-card {
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.review-card:hover {
    background: rgba(245, 240, 232, 0.12);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.review-text {
    font-size: 0.938rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.88);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-forest-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.review-name {
    font-weight: 600;
    color: var(--color-cream);
    font-size: 0.938rem;
}

/* --- VISIT --- */
.visit {
    background: var(--color-cream);
    padding: 100px 0;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-info {
    padding: 20px 0;
}

.visit-info .section-tag {
    margin-bottom: 16px;
}

.visit-info .section-title {
    margin-bottom: 16px;
}

.visit-desc {
    font-size: 1.063rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    color: var(--color-cream);
    border-radius: var(--radius-sm);
}

.visit-detail strong {
    display: block;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-forest);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.938rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--color-forest);
    text-decoration: underline;
}

.visit-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* --- FOOTER --- */
.footer {
    background: var(--color-forest-dark);
    color: var(--color-cream);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

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

.footer-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: var(--color-forest-dark);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-style: italic;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-tagline {
    font-size: 0.938rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.6;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-links a {
    font-size: 0.938rem;
    color: rgba(245, 240, 232, 0.75);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.813rem;
    color: rgba(245, 240, 232, 0.5);
}

.footer-bottom a {
    color: rgba(245, 240, 232, 0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* --- REVEAL ANIMATIONS --- */
[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Progressive enhancement: only animate if user prefers motion */
@media (prefers-reduced-motion: no-preference) {
    [data-reveal] {
        opacity: 0;
        transform: translateY(30px);
    }

    [data-reveal].revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        max-width: 440px;
        margin: 0 auto;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-secondary {
        right: 0;
    }

    .about-accent-block {
        left: 0;
    }

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

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .visit-map {
        min-height: 300px;
    }

    .visit-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-visual {
        margin: 0 auto;
    }

    .stat-card-1 {
        left: -10px;
        bottom: -10px;
    }

    .stat-card-2 {
        right: -10px;
    }

    .stat-card-3 {
        right: -20px;
        bottom: 40px;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-secondary img {
        width: 200px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .visit-actions {
        flex-direction: column;
    }

    .visit-actions .btn {
        width: 100%;
        text-align: center;
    }

    .stat-card {
        padding: 12px 16px;
    }

    .stat-number {
        font-size: 1.375rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-stat-divider {
        width: 48px;
        height: 1px;
    }
}
