/* 
   MILLIONAIRE GROUP — Premium Stylesheet
   Theme: Luxury Minimalist (Black & Gold)
   Design Inspiration: Apple x Rolex x Forbes
*/

@font-face {
    font-family: 'Cinzel';
    src: url('assets/fonts/Cinzel-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cinzel';
    src: url('assets/fonts/Cinzel-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/fonts/Montserrat-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

:root {
    --gold-primary: #DCB45D;
    --gold-light: #F5E4BD;
    --gold-dark: #B8914B;
    --bg-black: #000000;
    --bg-dark-gray: #0B0B0B;
    --bg-card: rgba(18, 18, 18, 0.8);
    --border-gold: rgba(220, 180, 93, 0.2);
    --border-gold-hover: rgba(220, 180, 93, 0.5);
    --text-white: #F5F5F5;
    --text-gold: #DCB45D;
    --text-muted: #A0A0A0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Reusable Typography & Styles */
h1,
h2,
h3,
h4,
.font-title {
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(220, 180, 93, 0.05);
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-gold-hover);
    box-shadow: 0 10px 30px rgba(220, 180, 93, 0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--bg-black);
    border: 1px solid var(--gold-primary);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-gold);
    box-shadow: 0 0 15px rgba(220, 180, 93, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--text-gold);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    transition: var(--transition-smooth);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-container span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: 1.5px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 32px;
}

.nav-links li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    transition: var(--transition-smooth);
}

.nav-links li a:hover {
    color: var(--text-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    margin: 4px 0;
    transition: var(--transition-smooth);
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    /* Open Mobile Nav */
    .nav-active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--bg-black);
        border-bottom: 1px solid var(--border-gold);
        padding: 24px 0;
        margin-right: 0;
        text-align: center;
    }

    .nav-active .nav-links li {
        margin: 12px 0;
    }

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    background: radial-gradient(circle at top right, rgba(220, 180, 93, 0.08) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

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

.hero-image-container {
    display: flex;
    justify-content: center;
}

.hero-image-container img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.hero-image-container img:hover {
    transform: scale(1.02);
    border-color: var(--border-gold-hover);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }
}

/* About / Our Story */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-quote {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-gold);
    border-left: 2px solid var(--gold-primary);
    padding-left: 20px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.about-content p {
    font-size: 16px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: 2;
    }

    .about-quote {
        text-align: left;
    }
}

/* Founder & Mission */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.founder-card {
    padding: 48px;
    text-align: center;
}

.founder-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(220, 180, 93, 0.2) 0%, transparent 70%);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(220, 180, 93, 0.15);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.founder-avatar:hover img {
    transform: scale(1.1);
}

.founder-card h3 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 6px;
}

.founder-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gold);
    margin-bottom: 24px;
    display: inline-block;
}

.founder-desc {
    color: var(--text-muted);
    font-size: 15px;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.mission-icon {
    width: 24px;
    height: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 4px rgba(220, 180, 93, 0.4));
}

.mission-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.mission-item h4 {
    font-size: 18px;
    color: var(--text-gold);
    margin-bottom: 4px;
}

.mission-item p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
    }
}

/* Ecosystem & Companies */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.ecosystem-layers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.ecosystem-layer-card {
    flex: 1 1 220px;
    max-width: 280px;
    padding: 30px 20px;
    text-align: center;
}

.ecosystem-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 16px auto;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 5px rgba(220, 180, 93, 0.4));
}

.ecosystem-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.ecosystem-layer-card h4 {
    font-size: 18px;
    color: var(--text-gold);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

a.company-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 20px;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    transition: var(--transition-smooth);
    background-color: var(--bg-card);
    min-height: 180px;
}

a.company-card img {
    height: 40px;
    max-width: 90%;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0.95);
    transition: var(--transition-smooth);
}

a.company-card p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
    transition: var(--transition-smooth);
    margin-top: auto;
}

a.company-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(220, 180, 93, 0.08);
    background-color: rgba(220, 180, 93, 0.02);
}

a.company-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(220, 180, 93, 0.5));
}

a.company-card:hover p {
    color: var(--text-gold);
}

/* Membership Categories */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.membership-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.membership-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px auto;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 6px rgba(220, 180, 93, 0.45));
}

.membership-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.membership-card h3 {
    font-size: 24px;
    color: var(--text-gold);
    margin-bottom: 24px;
    text-align: center;
}

.membership-benefits {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.membership-benefits li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(225, 225, 225, 0.05);
    display: flex;
    align-items: center;
}

.membership-benefits li::before {
    content: "•";
    color: var(--gold-primary);
    font-size: 20px;
    margin-right: 12px;
}

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

/* Hero Statistics & Impact */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.stat-item {
    padding: 40px;
    text-align: center;
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 16px auto;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 5px rgba(220, 180, 93, 0.4));
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Future Outlook */
.future-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.future-card {
    padding: 30px;
    margin-bottom: 20px;
}

.future-card h4 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.future-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.future-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    border: 1px solid var(--border-gold);
}

@media (max-width: 768px) {
    .future-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .future-image {
        order: 2;
    }
}

/* Contact / Join the Movement */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-gold);
}

.contact-detail-item span {
    font-size: 15px;
    font-weight: 500;
}

.contact-form {
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-black);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--gold-primary);
    outline: none;
    box-shadow: 0 0 10px rgba(220, 180, 93, 0.1);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.contact-form .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* Social Links Utility */
.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    transition: var(--transition-smooth);
    background-color: var(--bg-card);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: var(--text-gold);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    border-color: var(--gold-primary);
    background-color: rgba(220, 180, 93, 0.05);
    transform: translateY(-2px);
}

.social-links a:hover svg {
    fill: #ffffff;
}

/* Footer */
footer {
    background-color: var(--bg-black);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-gold);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand img.logo-long {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-heart-icon {
    width: 14px;
    height: 14px;
    fill: var(--gold-primary);
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
    filter: drop-shadow(0 0 3px rgba(220, 180, 93, 0.8));
    animation: heartBeat 1.2s infinite;
}

.logo-long {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Floating Currency Background Effect */
.floating-currency-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    /* Render on top of backgrounds and content */
    overflow: hidden;
}

.floating-currency {
    position: absolute;
    color: var(--gold-primary);
    font-weight: 500;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    will-change: transform, opacity;
    animation: currencySnowfall 15s linear forwards;
    /* run once and forward, removed in JS */
    /* Layered intense gold glow shadows */
    filter: drop-shadow(0 0 5px rgba(220, 180, 93, 0.8)) drop-shadow(0 0 15px rgba(220, 180, 93, 0.45));
}

@keyframes currencySnowfall {
    0% {
        transform: translateY(105vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 0.12;
        /* increased visibility for glowing symbols */
    }

    85% {
        opacity: 0.12;
    }

    100% {
        transform: translateY(-10vh) translateX(var(--drift-x, 40px)) rotate(360deg);
        opacity: 0;
    }
}

/* Aurora Glow Blobs (Luxury Background Shimmer) */
.aurora-glow {
    position: fixed;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    /* rendered behind page content */
    filter: blur(90px);
    opacity: 0.65;
    will-change: transform;
}

.glow-1 {
    background: radial-gradient(circle, rgba(220, 180, 93, 0.08) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: driftSlowly1 35s ease-in-out infinite alternate;
}

.glow-2 {
    background: radial-gradient(circle, rgba(220, 180, 93, 0.06) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: driftSlowly2 42s ease-in-out infinite alternate;
}

.glow-3 {
    background: radial-gradient(circle, rgba(220, 180, 93, 0.045) 0%, transparent 70%);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: driftSlowly3 48s ease-in-out infinite alternate;
}

@keyframes driftSlowly1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(160px, 110px) scale(1.15);
    }
}

@keyframes driftSlowly2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-190px, -130px) scale(1.2);
    }
}

@keyframes driftSlowly3 {
    0% {
        transform: translate(-50%, -50%) translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) translate(-110px, 160px) scale(0.85);
    }
}

.footer-brand h4 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-gold);
    text-transform: uppercase;
}

.footer-links-container {
    display: flex;
    gap: 64px;
}

.footer-links h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--text-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(225, 225, 225, 0.05);
    padding-top: 40px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-legal {
    max-width: 450px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 32px;
    }

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

/* Interactive Cursor Currency Particle Trail */
.cursor-currency-particle {
    position: absolute;
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-weight: 600;
    pointer-events: none;
    z-index: 10000;
    /* above everything, header included */
    will-change: transform, opacity;
    animation: cursorParticleFade 1.1s cubic-bezier(0.1, 0.8, 0.25, 1) forwards;
    filter: drop-shadow(0 0 3px rgba(220, 180, 93, 0.75)) drop-shadow(0 0 8px rgba(220, 180, 93, 0.35));
}

@keyframes cursorParticleFade {
    0% {
        transform: translate(-50%, -50%) scale(1) translateY(0) rotate(0deg);
        opacity: 0.85;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.1) translateY(var(--drift-y, -70px)) translateX(var(--drift-x, 25px)) rotate(var(--drift-rot, 60deg));
        opacity: 0;
    }
}

/* Hide elements only on desktop (screen widths 992px and above) */
@media (min-width: 992px) {
    .hide-desktop {
        display: none !important;
    }

    nav {
        flex-grow: 1;
        justify-content: space-between;
        margin-left: 60px;
    }

    .nav-links {
        margin: 0 auto !important;
    }
}