:root {
    --white: #ffffff;
    --black: #000000;
    --gold: linear-gradient(135deg, #d4af37 0%, #f9f295 50%, #d4af37 100%);
    --gold-solid: #d4af37;
    --gray-light: #f4f4f4;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-content-premium {
    text-align: center;
}

.loader-crown {
    width: 200px;
    height: auto;
}

#crown-path {
    fill: none;
    stroke: var(--gold-solid);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Typography & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 2px;
}

/* Header Refinements */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.5);
    /* Increased opacity to prevent dark artifacts */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

#main-header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 3px solid var(--black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-decoration: none;
    color: var(--black);
    line-height: 1;
    position: relative;
    /* For crown positioning */
    display: inline-block;
}

.logo-crown {
    position: absolute;
    top: -15px;
    left: -8px;
    width: 35px;
    height: auto;
    fill: none;
    stroke: var(--gold-solid);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-15deg);
}

#desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

#desktop-nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

#desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-solid);
    transition: var(--transition);
}

#desktop-nav a:hover::after {
    width: 100%;
}

#desktop-nav a:hover {
    color: var(--gold-solid);
}

/* Urban Elements */
.urban-bg-text {
    position: absolute;
    top: 15vh;
    /* Move down from header */
    font-size: 18vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    text-transform: uppercase;
}

.vertical-text {
    writing-mode: vertical-rl;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6vw;
    color: rgba(0, 0, 0, 0.03);
}

.urban-tape {
    position: absolute;
    background: var(--gold-solid);
    color: var(--black);
    padding: 15px 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.urban-tape.top-left {
    top: 10%;
    left: -40px;
    transform: rotate(-8deg);
    font-size: 1.5rem;
}

.urban-tape.bottom-right {
    bottom: 6%;
    right: -40px;
    transform: rotate(5deg);
    font-size: 1.5rem;
}

.section-label {
    position: absolute;
    top: -40px;
    left: 10%;
    transform: rotate(-3deg) scale(1.5);
    background: var(--black);
    color: var(--gold-solid);
    padding: 20px 80px;
    width: auto;
}

.urban-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold-solid);
    color: var(--black);
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 900;
    transform: rotate(5deg);
    z-index: 5;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* Double tag logic for specific cards */
.card-inner:has(.second-tag) .urban-tag:not(.second-tag) {
    right: 85px;
    transform: rotate(-3deg);
}

/* Hero Static Section */
#hero-static {
    min-height: 100vh;
    padding: 60px 0 40px;
    /* Even less padding */
    background: var(--white);
    position: relative;
    overflow: visible;
    /* FIXED: Allow elements to bleed out */
    display: flex;
    align-items: center;
    z-index: 50;
    /* Above partners */
}

.urban-bg-text-giant {
    position: absolute;
    top: 40%;
    /* Moved up more */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    letter-spacing: -20px;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    /* Reduced negative margin to avoid cutting */
}

.hero-main-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    z-index: 20;
    /* ON TOP of cards */
    display: flex;
    justify-content: center;
}

/* Crown & Handwriting Elements */
.hero-crown-container {
    position: absolute;
    top: 100px;
    /* Specific position relative to the image head */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 25;
}

.hero-crown-svg {
    position: absolute;
    top: 30px;
    left: calc(62% - 100px);
    width: 150px;
    height: auto;
    fill: none;
    stroke: var(--gold-solid);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-15deg);
}

.hero-handwrite {
    position: absolute;
    top: -30px;
    left: calc(65% + 40px);
    font-family: 'Sedgwick Ave Display', cursive;
    color: var(--gold-solid);
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    white-space: nowrap;
}

.arrow-handwrite {
    width: 35px;
    height: 35px;
    transform: rotate(160deg) scaleX(-1);
    color: var(--gold-solid);
}

#hero-adonias-png {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.achievement-cards-static {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
    /* BEHIND Adonias */
}

.cards-carousel-container {
    display: contents; /* Allows columns to be distributed by the parent flex on desktop */
}

.card-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 320px;
    pointer-events: auto;
}

.card {
    opacity: 1;
    /* FIXED: Always visible */
    transform: rotate(var(--rotation, 0deg));
    z-index: 5;
    transition: transform 0.4s ease;
}

.card-inner {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    color: var(--white);
    padding: 30px 25px;
    border-left: 6px solid var(--gold-solid);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.card:hover .card-inner {
    transform: translateY(-10px) scale(1.05);
    border-left-width: 12px;
}

.card-inner {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    color: var(--white);
    padding: 50px 35px;
    border-left: 8px solid var(--gold-solid);
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    text-align: center;
    /* Center text */
}

/* Compact Card Adjustment */
.card:nth-child(6) .card-inner {
    padding: 30px 35px;
}

.card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-solid);
    opacity: 0.05;
    pointer-events: none;
}

.card h3 {
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 12px;
    background: var(--gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.card p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
}

.metrics {
    display: flex;
    gap: 20px;
}

.metric {
    text-align: center;
}

.metric .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.metric .label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Sections Styling */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section-title span {
    display: inline-block;
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 5rem;
    color: var(--gold-solid);
    text-transform: none;
    -webkit-text-stroke: 0;
    line-height: 1;
    transform: rotate(-3deg);
    margin-left: 15px;
}

/* Partners */
#partners {
    background: var(--white);
    padding: 250px 0 150px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    /* Below hero section */
}

/* Large Diagonal Tape */
#partners::before {
    content: 'TOP BRANDS • WORLD CHAMPION • ADONIAS FREESTYLE • DRIBBLE KING';
    position: absolute;
    top: 100px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: var(--gold-solid);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2.2rem;
    transform: rotate(-3deg);
    z-index: 1;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

/* Abstract Ornament */
#partners::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 20px solid var(--gray-light);
    transform: rotate(45deg);
    z-index: 0;
}



.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.partner-card {
    background: #f9f9f9;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.partner-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.partner-card img {
    max-width: 70%;
    max-height: 70px;
    object-fit: contain;
    filter: brightness(0) opacity(0.2);
    transition: all 0.4s ease;
}

.partner-card:hover img {
    filter: brightness(0) opacity(0.6);
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .partner-card {
        padding: 20px;
        min-height: 120px;
    }
}

@media (max-width: 992px) {
    #partners::after {
        display: none;
        /* Remove ornament on mobile */
    }

    DISABLED_TRACK {
        gap: 50px;
        animation-duration: 25s;
    }

    .partners-track.track-2 {
        animation-duration: 20s;
    }

    .partner-logo {
        flex: 0 0 160px;
        /* Larger logos on mobile */
    }

    .partner-logo img {
        max-height: 65px;
    }
}

/* Gallery Marquee */
.gallery-marquee {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    margin-top: 40px;
}

.gallery-track {
    display: flex;
    width: fit-content;
    gap: 20px;
    animation: galleryMarquee 60s linear infinite;
}

.gallery-track.track-reverse {
    animation-direction: reverse;
}

@keyframes galleryMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    height: 400px;
    width: auto;
    overflow: hidden;
    background: var(--gray-light);
    flex-shrink: 0;
}

.gallery-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.desktop-only {
    display: flex;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .gallery-item {
        height: 300px;
    }
}

/* Contact Section */
#contato {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.email-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--gold);
}

.btn-gold {
    background: var(--black);
    color: var(--white);
    padding: 20px 50px;
    border: none;
    font-family: var(--font-main);
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 2px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-gold:hover::after {
    left: 0;
}

.btn-gold:hover {
    color: var(--black);
    transform: scale(1.05) rotate(-2deg);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: 'FUTEBOL FREESTYLE';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10vw;
    font-weight: 900;
    opacity: 0.05;
    white-space: nowrap;
    pointer-events: none;
    /* Fix link click issue */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile Adjustments */
#hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

#hamburger span {
    width: 35px;
    height: 4px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

#hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding-top: 100px;
    transition: right 0.5s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

#mobile-menu.active {
    right: 0;
}

#mobile-menu ul {
    list-style: none;
    padding: 0 40px;
}

#mobile-menu li {
    margin-bottom: 30px;
}

#mobile-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .urban-tape {
        display: none !important;
    }

    #hero-scroll {
        height: 800svh;
    }

    .sticky-container {
        height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hero-canvas {
        height: 100svh !important;
        width: 100vw !important;
        object-fit: cover;
    }

    .achievement-cards-container {
        align-items: flex-end;
        justify-content: flex-start;
        /* Important for translateX centering logic */
        padding-bottom: 7svh;
        /* Lowered to give more room */
        overflow: visible;
        /* Allow cards to peek from sides */
    }

    .cards-wrapper {
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0 10vw;
        /* ContainerPadding in JS logic */
        gap: 5vw;
        /* Gap in JS logic */
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        will-change: transform;
    }

    .card {
        position: relative !important;
        flex: 0 0 80vw;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        opacity: 0.5;
        transform: scale(0.9) !important;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .card.active {
        opacity: 1;
        transform: scale(1) rotate(-2deg) !important;
        z-index: 100;
    }
}

/* Card Refinements */
.big-number {
    font-size: 3.5rem !important;
    font-weight: 900;
    color: var(--gold-solid);
    margin: 10px 0;
}

.card-inner h3 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.metrics {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric i {
    font-size: 1.5rem;
    color: var(--gold-solid);
    margin-bottom: 8px;
    display: block;
}

/* Subpages Styling */
.subpage #main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.page-hero {
    padding: 160px 0 40px;
    background: var(--white);
    position: relative;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.7;
}

/* Stats Section on Portfolio */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.stat-card {
    background: var(--gray-light);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--gold-solid);
    margin-bottom: 20px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.video-item h3 {
    margin-top: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--black);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.video-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--white);
    z-index: 1;
}

.video-placeholder:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.social-cta {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--gray-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn-black {
    background: var(--black);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-black:hover {
    background: var(--gold-solid);
}

/* Contact Page Specifics */
.direct-contact {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-method i {
    color: var(--gold-solid);
    font-size: 1.2rem;
}

.contact-method a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Social Feed Section */
.social-feed-section {
    padding: 100px 0;
    text-align: center;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 50px 0;
}

.feed-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    display: block;
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.feed-item:hover img {
    transform: scale(1.1);
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Page Refinement */
.contact-wrapper-compact {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.media-kit-box {
    max-width: 700px;
    margin: 0 auto 40px;
    background: var(--gold-solid);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    color: var(--white);
}

.media-kit-text h3 {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.media-kit-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-black-outline {
    display: inline-block;
    padding: 12px 25px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-black-outline:hover {
    background: var(--white);
    color: var(--black);
}

.form-premium {
    background: var(--white);
    padding: 60px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.form-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.form-premium label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--black);
    opacity: 0.6;
}

.form-premium input,
.form-premium textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--gray-light);
    border-radius: 5px;
    font-family: inherit;
    margin-bottom: 20px;
    transition: var(--transition);
}

.form-premium input:focus,
.form-premium textarea:focus {
    outline: none;
    border-color: var(--gold-solid);
    background: var(--white);
}

.btn-gold-large {
    width: 100%;
    padding: 20px;
    background: var(--gold-solid);
    color: var(--white);
    border: none;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

.btn-gold-large:hover {
    background: var(--black);
    transform: translateY(-5px);
}

.direct-contact-small {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .media-kit-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .form-premium {
        padding: 40px 20px;
    }
}

/* Bio Section */
.bio-section {
    padding: 100px 0;
    background: var(--white);
}

.bio-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.bio-text {
    text-align: left;
}

.bio-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    color: var(--black);
}

.bio-video-featured {
    cursor: pointer;
    position: relative;
    width: 100%;
}

.video-cover {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    background: var(--black);
}

.video-cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.9;
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--gold-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    z-index: 3;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.play-btn-large i {
    margin-left: 5px;
}

.video-label {
    margin-top: 25px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
}

.bio-video-featured:hover .video-cover img {
    transform: scale(1.08);
    opacity: 1;
}

/* Feed Grid Real */
.feed-grid-real {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    justify-content: center;
}

.feed-item-real {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stats Cards Refinement */
.stat-card {
    background: var(--gray-light);
    padding: 50px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-12px);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-solid);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--black);
}

.stat-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    color: var(--black);
}

.card-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 8rem !important;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
    color: var(--black);
}

.stat-card:hover .card-icon-bg {
    opacity: 0.1;
    transform: scale(1.1) rotate(-10deg);
    color: var(--gold-solid);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal.active {
    display: block;
}

.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .bio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-large {
        padding: 30px;
    }

    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Video Featured Layout */
.video-featured-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.video-item-featured {
    cursor: pointer;
    position: relative;
}

.video-placeholder-large {
    aspect-ratio: 16/9;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-placeholder-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    pointer-events: none;
}

.play-indicator i {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
    color: var(--gold-solid);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.play-indicator span {
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-solid);
    color: var(--white);
    padding: 5px 15px;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-radius: 3px;
}

.video-info-featured {
    margin-top: 25px;
}

.video-info-featured h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.video-side-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-item-side {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    cursor: pointer;
    align-items: center;
}

.video-placeholder-side {
    aspect-ratio: 16/9;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.video-placeholder-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition);
}

.video-placeholder-side i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.5rem;
    z-index: 5;
}

.video-info-side h3 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.video-info-side p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Urban Divider */
#urban-divider {
    background: var(--black);
    padding: 40px 0;
    overflow: hidden;
    transform: rotate(-1deg);
    margin: 60px 0;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-text span {
    font-family: 'Sedgwick Ave Display', cursive;
    color: var(--gold-solid);
    font-size: 2.5rem;
    letter-spacing: 5px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .video-featured-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .video-item-side {
        grid-template-columns: 1fr;
    }
}

/* Portfolio Premium Enhancements */
.bio-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.urban-bg-text-inline {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 5rem;
    color: var(--gray-light);
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.5;
    pointer-events: none;
}

.bio-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
}

.bio-visual {
    position: relative;
}

.video-card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.video-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.video-overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.play-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gold-solid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 5;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.video-tag-floating {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.8rem;
    z-index: 5;
    text-transform: uppercase;
}

.video-card-premium:hover img {
    transform: scale(1.05);
}

.video-card-premium:hover {
    transform: translateY(-10px);
}

#urban-divider-alt {
    background: var(--gold-solid);
    padding: 30px 0;
    overflow: hidden;
    margin: 40px 0;
}

#urban-divider-alt .marquee-text span {
    color: var(--black);
    font-size: 2rem;
}

@media (max-width: 992px) {
    .bio-grid-premium {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .urban-bg-text-inline {
        font-size: 3.5rem;
        margin-bottom: -10px;
    }
}

.card-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.05;
    color: var(--white);
    pointer-events: none;
    z-index: 0;
}

/* Footer Icon Style */
.social-links a i {
    margin-right: 8px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    #desktop-nav {
        display: none;
    }

    #hamburger {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Mobile Hero Adjustments */

/* Mobile Hero Adjustments */
@media (max-width: 992px) {
    #hero-static {
        padding: 40px 0 20px !important;
        flex-direction: column !important;
        min-height: auto !important;
        overflow-x: hidden !important;
        /* Fix horizontal scroll bug */
    }

    .hero-content {
        flex-direction: column !important;
        margin-top: 0 !important;
        position: relative;
        height: auto !important;
        display: flex !important;
        width: 100%;
        padding: 0;
    }

    .urban-bg-text-giant {
        font-size: 35vw !important;
        letter-spacing: -2px !important;
        top: 20% !important;
    }

    .hero-main-image {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        z-index: 20;
        position: relative;
        display: flex !important;
        justify-content: center !important;
    }

    #hero-adonias-png {
        width: 110% !important;
        max-width: 550px !important;
        height: auto !important;
    }

    .hero-crown-container {
        top: 5% !important;
        left: 55% !important;
        width: 100% !important;
    }

    .hero-crown-svg {
        width: 80px !important;
    }

    .hero-handwrite {
        position: absolute !important;
        font-size: 2rem !important;
        top: 150px !important;
        /* Fixed position further down to avoid header */
        left: 0% !important;
        transform: rotate(-10deg) !important;
        z-index: 35 !important;
        display: block !important;
        color: var(--gold-solid) !important;

        white-space: nowrap;
    }

    /* REAL SCROLLABLE CAROUSEL MOBILE */
    .achievement-cards-static {
        position: relative !important;
        width: 100% !important;
        padding: 0 !important;
        z-index: 30;
        overflow: hidden;
    }

    .cards-carousel-container {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        padding: 40px 20px !important;
        /* Added padding for rotations */
        width: 100% !important;
    }

    /* Hide scrollbar */
    .cards-carousel-container::-webkit-scrollbar {
        display: none;
    }

    .card-column {
        display: contents !important;
    }

    .card {
        width: 80vw !important;
        max-width: 300px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        transform: rotate(var(--rotation, 0deg)) !important;
        /* RESTORED ROTATION */
        opacity: 1 !important;
        margin: 0 !important;
    }

    .card-inner {
        padding: 30px 20px !important;
        min-height: 180px !important;
        background: #000 !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    }

    .card h3 {
        font-size: 1.1rem !important;
    }
}

/* Instagram Reels Section */
#video-instagram-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 5;
}

.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.reel-item {
    aspect-ratio: 9/16;
    max-height: 700px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reel-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.reel-item iframe {
    width: 100%;
    height: 100% !important;
    border: none;
    display: block;
}

.see-more-videos {
    text-align: center;
    padding-top: 40px;
}

.social-cta-box {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.social-cta-box .btn-gold {
    padding: 20px 40px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 992px) {
    .instagram-reels-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
}

@media (max-width: 600px) {
    .social-cta-box {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-cta-box .btn-gold {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}