/* Media Minds - Main Stylesheet */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #cd2027;
    --brand-black: #000000;
    --brand-white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-white);
    color: var(--brand-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1.1;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-pattern {
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.1;
}

.text-outline {
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 200px;
    height: 40px;
    /* background-color: var(--brand-black); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--primary);
    background: transparent;
}
.logo-icon img{
    width: 100%;
}
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: var(--brand-black);
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-black);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--brand-white);
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--brand-black);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 6rem 0 8rem;
    background-color: var(--brand-black);
    color: var(--brand-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 2rem;
    line-height: 0.9;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-white);
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 2px solid var(--brand-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--brand-white);
    color: var(--brand-black);
}

/* ===== ABOUT SECTION WITH IMAGE ===== */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid var(--brand-black);
    box-shadow: 20px 20px 0px 0px var(--primary);
}

.mission-vision-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* ===== SERVICES SECTION WITH IMAGE ===== */
.services-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.services-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

/* ===== RESPONSIVE UTILITY CLASSES ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}


/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-divider {
    height: 8px;
    width: 96px;
    background-color: var(--primary);
}

/* ===== CARDS ===== */
.card {
    background-color: var(--brand-white);
    border: 2px solid var(--brand-black);
    padding: 3rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 20px 20px 0px 0px var(--primary);
    transform: translate(-5px, -5px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--brand-white);
    border: 2px solid var(--brand-black);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 15px 15px 0px 0px var(--primary);
    transform: translate(-3px, -3px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--slate-600);
    line-height: 1.8;
}

/* ===== PRICING CARDS REDESIGN ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--brand-white);
    border: 1px solid var(--slate-100);
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(205, 32, 39, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background-color: #fffafa; /* Very light red tint */
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary);
    border-radius: 12px 12px 0 0;
}

.pricing-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-100);
}

.pricing-card h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--slate-800);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 950;
    color: var(--brand-black);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin: 1.5rem 0;
}

.pricing-price::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.pricing-features li {
    padding: 0.875rem 0;
    font-size: 0.9375rem;
    color: var(--slate-600);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--slate-50);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
    opacity: 0.6;
}

.pricing-card .btn-primary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-card:hover .btn-primary {
    background-color: var(--brand-black);
}

/* Featured Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(205, 32, 39, 0.3);
    z-index: 10;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary);
    color: var(--brand-white);
    padding: 6rem 0 3rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-cta h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 0.9;
}

.footer-cta p {
    font-size: 1.25rem;
    opacity: 0.8;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 56px;
    height: 56px;
    background-color: var(--brand-black);
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--brand-white);
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-link {
    color: var(--brand-white);
    text-decoration: none;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-black);
}

.copyright {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.6;
}

/* ===== HERO MASCOT ===== */
.hero-mascot {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 500px;
    height: auto;
    pointer-events: none;
    z-index: 5;
}

.hero-mascot img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 5rem 0 6rem;
    }

    .hero-mascot {
        width: 300px;
        right: 2%;
    }

    .section {
        padding: 4rem 0;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* About section responsive */
    .section-header {
        margin-bottom: 3rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--brand-white);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--slate-200);
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-mascot {
        width: 200px;
        right: 0;
        opacity: 0.5;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    /* Service grid - single column on mobile */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Pricing grid - single column on mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Footer responsive */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-top {
        flex-direction: column;
        padding-bottom: 3rem;
        margin-bottom: 2rem;
    }

    .footer-cta h2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Card hover effects - reduce on mobile */
    .card:hover,
    .service-card:hover,
    .pricing-card:hover {
        box-shadow: 10px 10px 0px 0px var(--primary);
        transform: translate(-2px, -2px);
    }

    /* About section stats - responsive grid */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Mission/Vision cards - stack on mobile */
    div[style*="display: grid; grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* About page responsive grids */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* About page image box - reduce height on mobile */
    div[style*="height: 500px"] {
        height: 300px !important;
    }

    /* About content grid - stack on mobile */
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        box-shadow: 10px 10px 0px 0px var(--primary);
    }

    .about-image-wrapper {
        order: -1;
        /* Show image first on mobile */
    }

    /* Stack stats inside about cards */
    .mission-vision-wrapper .card div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .mission-vision-wrapper .card div[style*="text-align: center"] {
        padding: 1rem !important;
    }

    .mission-vision-wrapper .card h3 {
        font-size: 2.5rem !important;
    }

    /* Services content grid - stack on mobile */
    .services-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-image-wrapper {
        order: -1;
        /* Show image first on mobile */
        margin-bottom: 2rem;
    }

    .services-image {
        max-width: 300px;
    }

    /* Contact Page Adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem !important;
        gap: 1rem !important;
    }

    .contact-info-card span.material-symbols-outlined {
        font-size: 1.5rem !important;
    }

    .contact-info-card h4 {
        font-size: 0.6rem !important;
        margin-bottom: 0.25rem !important;
    }

    .contact-info-card a {
        font-size: 1.1rem !important;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .nav-container {
        height: 70px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 120px;
        height: 35px;
        font-size: 1rem;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-mascot {
        width: 270px;
        opacity: 0.3;
    }

    .section {
        padding: 2.5rem 0;
    }

    .service-card,
    .pricing-card,
    .card {
        padding: 2rem 1.5rem !important;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* ===== CASE STUDIES PAGE STYLES ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1;
    text-transform: uppercase;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.case-study-image-box {
    position: relative;
    z-index: 1;
    background-color: var(--slate-100);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-black);
}

/* About Page Specific Image Box */
.about-image-container {
    position: relative;
}

.about-image-accent {
    position: absolute;
    inset: -1.5rem;
    background-color: var(--primary);
    z-index: 0;
}

.about-image-box {
    position: relative;
    z-index: 1;
    background-color: var(--slate-100);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-black);
}

@media (max-width: 1024px) {
    .hero-grid, .case-study-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-grid, .case-study-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
        word-break: break-word;
    }

    .case-study-image-box,
    .about-image-box {
        height: 350px;
    }

    .about-image-accent {
        inset: -1rem;
    }

    /* Floating Badge adjustment */
    div[style*="animation: float"] {
        bottom: -1rem !important;
        left: 0 !important;
        right: 0 !important;
        padding: 1rem !important;
        margin: 0 1rem;
    }

    div[style*="font-size: 1.75rem"] {
        font-size: 1.25rem !important;
    }

    .case-study-card h2 {
        font-size: 2rem !important;
    }

    /* Fixed positioned items in Case Studies */
    div[style*="position: absolute; bottom: -2.5rem"] {
        bottom: -1rem !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 1rem;
        z-index: 30 !important;
    }

    .case-study-card {
        padding: 2rem 1.5rem !important;
        margin-bottom: 2rem;
        box-shadow: 10px 10px 0px 0px var(--primary) !important;
        transform: none !important;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    /* Contact Page Adjustments */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Portfolio Adjustments */
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }

    .filter-container {
        gap: 0.5rem !important;
        margin-bottom: 2rem !important;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.625rem !important;
        flex: 1 1 auto;
        text-align: center;
    }
}


/* ===== CONTACT & PORTFOLIO GRID DEFAULTS ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SELECTION ===== */
::selection {
    background-color: var(--primary);
    color: var(--brand-white);
}