/* ===================================================
   Sooner Photography — Bright & Happy Pet Theme
   =================================================== */

:root {
    /* Warm, cheerful palette */
    --cream: #FFF9F0;
    --white: #FFFFFF;
    --peach: #FFE8D6;
    --peach-dark: #F5C7A0;
    --coral: #FF8F6B;
    --coral-dark: #E5714F;
    --sunshine: #FFD166;
    --leaf: #8BC48A;
    --sky: #87CEEB;
    --text-dark: #3D2C2C;
    --text-body: #5C4A4A;
    --text-light: #8A7575;
    --border: #F0E0D0;

    /* Typography */
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Fraunces', serif;

    /* Sizing */
    --nav-height: 72px;
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

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

a {
    color: var(--coral);
    text-decoration: none;
    transition: color 0.25s;
}

a:hover {
    color: var(--coral-dark);
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.25;
}


/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 107, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Light variant for dark backgrounds */
.hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

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


/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: background 0.35s, box-shadow 0.35s;
}

.navbar.scrolled,
.navbar--solid {
    background: rgba(255, 249, 240, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(61, 44, 44, 0.06);
}

.nav-brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-brand:hover {
    color: var(--coral);
}

.brand-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--coral);
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    padding: calc(var(--nav-height) + 3rem) 5% 4rem;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
    position: relative;
}

/* Dark overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 540px;
    animation: fadeSlideUp 0.8s ease-out;
}

.hero-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 1.2rem;
    color: #fff;
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

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

.hero-image {
    flex: 1;
    max-width: 520px;
    animation: fadeSlideUp 0.8s ease-out 0.2s backwards;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(61, 44, 44, 0.15);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02) rotate(-0.5deg);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================
   SECTION TITLES
   ===================== */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}


/* =====================
   SHOWCASE (Selected Photos)
   ===================== */
.showcase {
    padding: 5rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.photo-grid {
    column-count: 3;
    column-gap: 1rem;
}

.photo-grid-wrapper {
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius);
}

/* Fade hint at bottom of scrollable grid */
.photo-grid-wrapper::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    height: 60px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
}

.photo-card {
    break-inside: avoid;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0 0 1rem 0;
}

.photo-card img {
    width: 100%;
    display: block;
    height: auto;
}

.showcase-cta {
    text-align: center;
    margin-top: 3rem;
}


/* =====================
   ABOUT
   ===================== */
.about {
    padding: 5rem 5%;
    background: var(--white);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-photo {
    flex: 1;
    max-width: 400px;
}

.about-photo img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(61, 44, 44, 0.1);
}

.about-text {
    flex: 1.3;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}


/* =====================
   CONTACT
   ===================== */
.contact {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
}

.contact-text>p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.detail-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.15rem;
}

.detail-item p {
    font-size: 0.95rem;
    margin: 0;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(61, 44, 44, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 143, 107, 0.15);
}

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


/* =====================
   ALBUMS PAGE
   ===================== */
.albums-page {
    padding-top: var(--nav-height);
}

.page-header {
    text-align: center;
    padding: 4rem 5% 2rem;
    background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem;
    max-width: 600px;
    margin: 0 auto 0.5rem;
    background: rgba(255, 232, 214, 0.4);
    border-radius: 50px;
    border: 1px solid var(--border);
}

.filter-btn {
    padding: 0.55rem 1.6rem;
    border: none;
    border-radius: 50px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.filter-btn:hover {
    color: var(--coral);
    background: rgba(255, 143, 107, 0.08);
}

.filter-btn.active {
    background: var(--white);
    color: var(--coral);
    box-shadow: 0 2px 12px rgba(255, 143, 107, 0.2);
    font-weight: 600;
}

.albums-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 10% 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.album-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 44, 44, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    color: var(--text-body);
}

.album-card.hidden {
    opacity: 0;
    transform: scale(0.95);
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(61, 44, 44, 0.12);
    color: var(--text-body);
}

.album-cover {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.album-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.album-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.album-desc {
    font-size: 0.92rem;
    line-height: 1.5;
}


/* =====================
   PRICING PAGE & SECTION
   ===================== */
.pricing-page {
    padding-top: var(--nav-height);
}

.pricing {
    padding: 0 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    background: none;
    padding: 3rem 0 2rem;
}

.pricing-header p {
    max-width: 640px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(61, 44, 44, 0.1);
}

.pricing-card--popular {
    position: relative;
    border-color: var(--coral);
    box-shadow: 0 8px 30px rgba(255, 143, 107, 0.15);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pricing-card-header {
    text-align: center;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 232, 214, 0.3), transparent);
}

.pricing-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.pricing-best {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.pricing-card-body {
    padding: 0 1.5rem 2rem;
}

.pricing-card-body > p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.6rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    border-top: 1px solid var(--border);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--leaf);
    font-weight: 700;
}

/* What's Included */
.included-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(160deg, rgba(255, 232, 214, 0.3), rgba(255, 249, 240, 0.8));
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.included-section h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.included-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.included-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 0.8rem;
}

.included-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.55;
}

.included-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.included-cta {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.included-cta a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.included-cta a:hover {
    color: var(--coral-dark);
}

/* =====================
   ALBUM VIEWER PAGE
   ===================== */
.album-page {
    padding-top: var(--nav-height);
}

.album-header {
    padding: 3rem 5% 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    transition: color 0.25s;
}

.back-link:hover {
    color: var(--coral);
}

.album-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 0.4rem;
}

.album-header-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.album-header-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 600px;
}

.album-photo-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 5% 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 240px));
    gap: 2rem;
    justify-content: center;
}

.album-photo-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(61, 44, 44, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.album-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(61, 44, 44, 0.12);
}

.album-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album-photo-card:hover img {
    transform: scale(1.03);
}


/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    object-fit: contain;
    transition: opacity 0.25s;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-caption {
    color: #fff;
    font-size: 0.95rem;
    margin-top: 1rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.lightbox-counter {
    color: #fff;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    opacity: 0.5;
    flex-shrink: 0;
}


/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 2rem 5%;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}


/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding-top: calc(var(--nav-height) + 2rem);
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-image {
        max-width: 400px;
    }

    .photo-grid {
        column-count: 2;
    }

    .about-inner,
    .contact-inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title--left {
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(255, 249, 240, 0.97);
        backdrop-filter: blur(10px);
        padding: 1.5rem 5%;
        text-align: center;
        gap: 1.2rem;
        box-shadow: 0 8px 20px rgba(61, 44, 44, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .photo-grid {
        column-count: 1;
    }

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

    .hero-image {
        max-width: 90%;
    }

    .album-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}
/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
