/* === Base === */
html {
    scroll-behavior: smooth;
}

body {
    background: #18181b;
    background-attachment: fixed;
}

/* --- Collapsible Photos (show first 3 rows, then expand) --- */
.photos-viewport {
    overflow: hidden;
    max-height: var(--photos-collapsed-max, 0px);
    transition: max-height 400ms cubic-bezier(.2,.8,.2,1);
    will-change: max-height;
}

/* When expanded, lift the clamp */
.photos-expanded .photos-viewport {
    max-height: none;
}

/* Footer button (sits at the end under the gallery) */
.photos-footer-toggle {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    padding: .35rem .6rem;
    border-radius: .6rem;
    background: rgba(255,255,255,.06);
    border: none;
    cursor: pointer;
}
.photos-footer-toggle:hover {
    background: rgba(255,255,255,.12);
}

/* === Portfolio Section === */
.section-container#portfolio {
    padding: 2rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-text {
    font-size: 1.1rem;
    color: #d1d5db;
}

/* Portfolio layout wrapper */
.portfolio-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

/* Portfolio Card (main style) */
.portfolio-card {
    cursor: pointer;
    background: #18181b;
    border: 1px solid #ccc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition:
            box-shadow 220ms ease,
            transform 220ms ease,
            background 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .portfolio-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-items {
        grid-template-columns: 1fr;
    }
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

/* Strategy Packages Split Layout */
.packages-split-container {
    display: none; /* Hidden by default in the gallery card */
    gap: 2rem;
    margin-top: 1.5rem;
    text-align: left;
}

/* Show packages when inside the modal */
#modal-body .packages-split-container {
    display: flex;
}

.package-column {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .packages-split-container {
        flex-direction: column;
    }
}

/* Card contents */
.portfolio-card-title {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: #fff;
}

.portfolio-card-description {
    padding: 0;
    font-size: 1rem;
    color: #d1d5db;
}

/* Hide detailed content in cards by default */
.portfolio-card .course-title,
.portfolio-card .course-content-list,
.portfolio-card .contact-btn,
.portfolio-card .beauty-map-container,
.portfolio-card .full-package-promo,
.portfolio-card h3:not(.portfolio-card-title) {
    display: none;
}

/* Expandable details inside card */
.card-details {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    transition:
            max-height 400ms cubic-bezier(.2,.8,.2,1),
            opacity 260ms ease,
            transform 260ms ease;
    will-change: max-height, transform, opacity;
}

.portfolio-card.expanded .card-details {
    max-height: var(--details-max, 1200px);
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card.expanded {
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transform: translateY(-4px);
}

/* Arrow rotation */
.portfolio-card .arrow {
    display: inline-block;
    transition: transform 300ms ease;
}
.portfolio-card.expanded .arrow {
    transform: rotate(180deg);
}

/* Toggle buttons */
.toggle-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    gap: .4rem;
    padding: .35rem .6rem;
    border-radius: .5rem;
    background: rgba(255,255,255,.06);
    border: none;
    cursor: pointer;
}
.toggle-btn:hover {
    background: rgba(255,255,255,.12);
}

#toggle-all {
    display: inline-flex;
    margin-bottom: 1rem;
    font-weight: 600;
}
.portfolio-card .toggle-btn.card-toggle {
    display: none;
}

.course-description {
    text-align: center;
    color: #818cf8;
    font-size: 1.2rem;
}

/* Course image inside cards */
.course-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
    margin: 0 auto 1rem auto;
}

/* === Modal Styles === */
#course-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    display: block;
    position: relative;
}

#modal-body {
    background: #18181b;
    padding: 2.5rem;
    border-radius: 1.25rem;
    max-width: 900px;
    width: 95vw;
    margin: 0 auto;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

#modal-body .course-title,
#modal-body h3:not(.portfolio-card-title) {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
    color: #ffffff;
    display: block;
}

#modal-body .beauty-map-container {
    display: grid;
}

#modal-body .full-package-promo {
    display: block;
}

#modal-body .course-content-list {
    margin: 0 0 1rem 1.5rem;
    font-size: 1rem;
    color: #cac7c7;
    display: block;
    text-align: left;
    padding-left: 1.5rem;
}

#modal-body .course-content-list li {
    margin-bottom: 0.5rem;
}

#modal-body .course-content-list li::marker {
    color: #4f46e5;
}

#modal-body .contact-btn {
    display: inline-block;
    padding: 0.75em 2em;
    background: linear-gradient(90deg, #6366f1 0%, #a5b4fc 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(144, 78, 149, 0.15);
    transition: background 0.3s, transform 0.2s;
    margin: 1rem 0;
}

#modal-body .contact-btn:hover,
#modal-body .contact-btn:focus {
    background: linear-gradient(90deg, #818cf8 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

/* Close Button Styles */
#modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    line-height: 1;
    padding: 0;
}

#modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
}

#modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(165, 180, 252, 0.5);
}

/* === Buttons === */
.contact-btn {
    display: inline-block;
    padding: 0.75em 2em;
    background: linear-gradient(90deg, #6366f1 0%, #a5b4fc 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(144, 78, 149, 0.15);
    transition: background 0.3s, transform 0.2s;
}

.contact-btn:hover,
.contact-btn:focus {
    background: linear-gradient(90deg, #6366f1 0%, #a5b4fc 100%);
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

/* === Side by side layout === */
.side-by-side {
    display: flex;
    align-items: center;
    gap: 20rem;
    justify-content: center;
}

.about-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
    word-break: break-word;
}

.about-image {
    max-width: 350px;
    width: 100%;
    border-radius: 1rem;
    flex-shrink: 0;
}

/* === Hero Section === */
.hero-section {
    background-image: url('imgs/download.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(var(--vh, 1vh) * 100);
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(24,24,27,0.85), rgba(39,39,42,0.85));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* Fluid hero title for better responsiveness */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: clamp(4px, 0.7vw, 10px);
}

.highlight-name {
    color: #fff;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

/* === NAVBAR === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* slimmer default height so laptops don't feel cramped */
    height: 120px;
    background: transparent;
    box-shadow: none;
    transition: background 0.3s, box-shadow 0.1s, transform 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
}

#navbar.hide {
    transform: translateY(-100%);
}

#navbar.scrolled {
    background: rgba(24, 24, 27, 0.95);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* On very large desktops, keep the tall hero-style header */
@media (min-width: 1440px) and (min-height: 900px) {
    #navbar {
        height: 200px;
    }
}

/* Navbar inner container */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 3rem;
    height: 80px;
    gap: 2rem;
}

/* Slightly more padding on very large desktop */
@media (min-width: 1440px) and (min-height: 900px) {
    .navbar-container {
        padding: 0 5rem;
        height: 80px;
    }
}

/* Logo */
.logoPick {
    width: 180px;
    height: auto;
    margin-left: -100px;
    margin-top: 20px;
}

/* Mid-size screens (typical laptops) logo adjustment */
@media (max-width: 1366px) and (min-width: 901px) {
    .logoPick {
        width: 140px;
        margin-left: 0;
        margin-top: 10px;
    }
}
.course-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color, #fff);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
/* Contact layout */
.contact-flex {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
}

/* ===== Modern Contact Card ===== */
.contact-card {
    position: relative;
    background: rgba(39,39,42,0.72);
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

/* subtle animated gradient border */
.contact-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0.18;
    z-index: 0;
}
.contact-card > * {
    position: relative;
    z-index: 1;
}

/* header */
.contact-head h3 {
    color: #fff;
    margin: 0.25rem 0 0.25rem;
    font-size: 1.25rem;
}
.contact-head p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* list */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    display: grid;
    gap: 0.9rem;
}
.contact-row {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.75rem;
    border-radius: 0.9rem;
    background: rgba(24,24,27,0.45);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.contact-row:hover {
    transform: translateY(-2px);
    background: rgba(24,24,27,0.6);
    border-color: rgba(99,102,241,0.35);
}
.contact-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(168,85,247,0.25));
    color: #c7d2fe;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.contact-text .label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    color: #a1a1aa;
}
.contact-text .value {
    color: #e5e7eb;
    text-decoration: none;
    word-break: break-word;
}
.contact-text .value:hover,
.contact-text .value:focus {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #18181b;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 1rem;
    text-align: center;
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #a1a1aa;
}

.footer-credit a {
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: #a5b4fc;
}

/* socials */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    background: rgba(24,24,27,0.45);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social:hover {
    background: rgba(24,24,27,0.65);
    color: #a5b4fc;
    border-color: rgba(99,102,241,0.35);
}

/* Make it play nicely with your existing layout */
.contact-form, .contact-card {
    flex: 1 1 300px;
}

/* Responsive polish */
@media (max-width: 900px) {
    .contact-card {
        padding: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-row,
    .contact-card::before {
        display: none;
    }
}

/* NAV LINKS */
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Fluid font-size for nav links */
.nav-link {
    font-size: clamp(1rem, 1.3vw, 1.6rem);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-link:hover {
    background: #27272a;
    border-radius: 0.375rem;
}

/* === Generic Section Container === */
.section-container {
    background: rgba(39,39,42,0.95);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 4rem auto;
    max-width: 1700px;
}

/* === Photo Gallery === */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.photo-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.2s;
}

.photo-gallery img:hover {
    transform: scale(1.04);
}

/* === Contact Form === */
.contact-form {
    background: rgba(39,39,42,0.72);
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 600px;
}

.form-input, .form-select, .form-textarea {
    background: rgba(36,36,40,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.6rem;
    color: #e5e7eb;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    outline: none;
    transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #a5b4fc;
}
.form-button {
    background: linear-gradient(90deg, #6366f1 0%, #a5b4fc 100%);
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    padding: 0.9rem 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.form-button:hover {
    background: linear-gradient(90deg, #818cf8 0%, #6366f1 100%);
}

.section-text-about {
    color: #fff;
}

/* course content lists (inside modal and elsewhere) */
.course-content-list {
    text-align: left;
    padding-left: 1.5rem;
    margin: 1rem 0;
    color: #d1d5db;
}
.course-content-list li {
    margin-bottom: 0.5rem;
}
.course-content-list li::marker {
    color: #4f46e5;
}
.course-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* === My Beauty Map Special Styling === */
.beauty-map-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 600px) {
    .beauty-map-container {
        grid-template-columns: 1fr;
    }
}

.beauty-map-day {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: left;
}

.beauty-map-day:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: #6366f1;
}

.beauty-map-day-title {
    color: #6366f1;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.beauty-map-day-subtitle {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.beauty-map-day-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.beauty-map-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beauty-map-list li {
    color: #d1d5db;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.beauty-map-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6366f1;
}

.beauty-map-duration {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #a1a1aa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
    width: 100%;
}

.full-package-promo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.full-package-promo h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.full-package-promo p {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* === Responsive & Nav Menu === */

/* Hide menu toggle and close by default */
.menu-toggle,
.menu-close {
    display: none;
}

/* Show nav links on desktop */
.nav-links-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* === Media Queries === */

@media (max-width: 900px) {
    .nav-links-container.open {
        animation: slideDown 0.4s cubic-bezier(0.4,0,0.2,1);
    }

    .section-container {
        max-width: 800px;
    }

    #toggle-all {
        display: none;
    }

    .portfolio-card .toggle-btn.card-toggle {
        display: inline-flex;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .side-by-side {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .photo-gallery img:hover {
        transform: scale(1.2);
    }

    .nav-list {
        flex-direction: column;
        gap: 2.2rem;
        align-items: center;
        width: 100%;
    }

    .photo-gallery {
        display: grid;
        grid-template-columns: repeat(3, 5fr);
        padding: 1rem;
        max-height: none;
    }

    .photo-gallery img {
        border-radius: 0.5rem;
        height: 110px;
    }

    #navbar {
        height: 100px;
        background: rgba(30, 30, 34, 0.75);
        box-shadow: 0 4px 24px rgba(0,0,0,0.18);
        border-radius: 0 0 1.5rem 1.5rem;
        backdrop-filter: blur(8px);
    }

    #navbar.scrolled {
        background: #18181b;
        box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    }

    .navbar-container {
        height: 70px;
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .logoPick {
        width: 130px;
        margin-left: 0;
        margin-top: 0;
    }

    .photo-gallery img {
        height: 150px;
        border-radius: 0.5rem;
    }
}

/* Responsive styles for mobile nav and layout */
@media (max-width: 768px) {
    /* Show menu toggle button */
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        z-index: 2100;
    }

    .section-container {
        max-width: 800px;
    }

    /* Hide nav links by default */
    .nav-links-container {
        display: none;
    }

    /* Show nav links when menu is open */
    .nav-links-container.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(24, 24, 27, 0.96);
        backdrop-filter: blur(16px);
        border-bottom-left-radius: 1.5rem;
        border-bottom-right-radius: 1.5rem;
        padding: 4rem 0 2rem 0;
        z-index: 2000;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Show close button only when menu is open */
    .nav-links-container.open .menu-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2.2rem;
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 0.2rem 0.7rem;
        border-radius: 0.5rem;
        z-index: 2100;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 0.7rem;
        background: rgba(39,39,42,0.22);
        margin: 0.2rem 0;
        width: 90vw;
        text-align: center;
        transition: background 0.2s, color 0.2s;
    }

    .nav-link:hover {
        background: #27272a;
        color: #a5b4fc;
    }
}

/* Extra small screens */
@media (max-width: 600px) {
    .hero-section {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .section-container {
        padding: 2rem 0.5rem;
    }

    .photo-gallery {
        gap: 0.1rem;
    }

    .photo-gallery img {
        height: 150px;
        border-radius: 0.5rem;
    }

}
