/* ============================================
   Hang 10 Donuts — Styles
   Palette: Midnight Blue (#0a1628) + Mint (#5eead4)
   Fonts: Playfair Display (headlines) + Outfit (body)
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0a1628;
    --midnight-light: #132038;
    --midnight-muted: #1a2d4a;
    --mint: #5eead4;
    --mint-light: #99f6e4;
    --mint-dim: rgba(94, 234, 212, 0.1);
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--midnight);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5vw;
    transition: background 0.5s var(--ease-smooth), 
                box-shadow 0.5s var(--ease-smooth),
                padding 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--gray-100);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s var(--ease-smooth);
}

.nav.scrolled .nav-inner {
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: color 0.4s var(--ease-smooth);
}

.nav.scrolled .nav-logo {
    color: var(--midnight);
}

.nav-logo-icon {
    color: var(--mint);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav.scrolled .nav-links a {
    color: var(--gray-400);
}

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

.nav-cta {
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid rgba(94, 234, 212, 0.4);
    border-radius: 100px;
    color: var(--mint) !important;
    transition: background 0.3s var(--ease-smooth),
                border-color 0.3s var(--ease-smooth) !important;
}

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

.nav-cta:hover {
    background: var(--mint);
    color: var(--midnight) !important;
    border-color: var(--mint);
}

.nav.scrolled .nav-cta {
    border-color: var(--midnight);
    color: var(--midnight) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--midnight);
    color: var(--white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s var(--ease-out),
                opacity 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--midnight);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--midnight);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s var(--ease-smooth);
}

.mobile-menu-link:hover {
    color: var(--mint);
}

.mobile-menu-cta {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mint);
    padding: 12px 28px;
    border: 1px solid rgba(94, 234, 212, 0.3);
    border-radius: 100px;
    margin-top: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--midnight);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 5vw;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--midnight-muted), transparent);
}

.hero-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-left {
    padding-right: 2rem;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--mint);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-accent {
    font-style: italic;
    color: var(--mint);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
}

.btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 234, 212, 0.25);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Hero Right */
.hero-right {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-image-frame:hover img {
    transform: scale(1.03);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 14px 22px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-badge svg {
    color: var(--mint);
}

/* Hero Scroll */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mint);
    animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================
   Section Dividers
   ============================================ */
.section-divider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 5vw;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4rem;
}

.label-line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--mint);
}

.label-text {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text {
    max-width: 520px;
}

.about-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.about-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.about-image-group {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 5/6.2;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    display: block;
}

/* ============================================
   Menu Section
   ============================================ */
.menu {
    padding: 120px 5vw;
    background: var(--off-white);
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
}

.menu-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.menu-accent {
    font-style: italic;
    color: var(--mint);
}

.menu-intro {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-400);
    max-width: 500px;
    margin-bottom: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
}

.menu-card {
    background: var(--white);
    padding: 2.5rem;
    transition: background 0.3s var(--ease-smooth);
}

.menu-card:hover {
    background: var(--off-white);
}

.menu-card-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--mint);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.menu-card-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-400);
}

.menu-note {
    margin-top: 3rem;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray-300);
    letter-spacing: 0.02em;
}

/* ============================================
   Visit Section
   ============================================ */
.visit {
    padding: 120px 5vw;
    background: var(--white);
}

.visit-container {
    max-width: 1400px;
    margin: 0 auto;
}

.visit-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4rem;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.visit-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.visit-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--mint);
}

.visit-detail-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.visit-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--midnight);
}

.visit-link {
    color: var(--midnight);
    border-bottom: 1px solid var(--gray-100);
    transition: border-color 0.3s var(--ease-smooth);
}

.visit-link:hover {
    border-color: var(--mint);
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 120px 5vw;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact .label-line {
    background: var(--mint);
}

.contact .label-text {
    color: rgba(255, 255, 255, 0.4);
}

.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    letter-spacing: -0.01em;
}

.contact-text > p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 3rem;
    max-width: 440px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-email,
.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease-smooth);
}

.contact-email:hover,
.contact-phone:hover {
    color: var(--mint);
}

.contact-email svg,
.contact-phone svg {
    color: var(--mint);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--midnight-light);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: border-color 0.3s var(--ease-smooth);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
    border-color: var(--mint);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
    padding: 16px 20px;
    background: rgba(94, 234, 212, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(94, 234, 212, 0.15);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--mint);
}

.form-success.show {
    display: flex;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 5vw 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--white);
}

.footer-logo svg {
    color: var(--mint);
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
    margin-left: 38px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out),
                transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-right {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 0 6vw;
    }

    .hero-container {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-badge {
        left: 0;
        bottom: -16px;
    }

    .about,
    .menu,
    .visit {
        padding: 80px 6vw;
    }

    .contact {
        padding: 80px 6vw;
    }

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

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

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

    .hero-scroll {
        display: none;
    }
}

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-img-secondary {
        display: none;
    }
}
