/* 
 * Apex Artists - Luxury Talent Management 
 * Theme: Black, Silver, Gold
 */

@font-face {
    font-family: 'OpenSauceOne-Bold';
    src: url('OpenSauceOne-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSauceOne-SemiBold';
    src: url('OpenSauceOne-SemiBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --color-black: #050505;
    --color-dark-grey: #1a1a1a;
    --color-silver: #555555;
    --color-gold: #f4d770;
    --color-white: #ffffff;

    --font-heading: 'OpenSauceOne-Bold', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Compatibility Variables */
    --brand-gold: #f4d770;
    --brand-silver: #555555;
    --brand-black: #050505;
    --brand-navy: #0a192f;
    --brand-grey: #1a1a1a;
    --brand-dark: #0a0a0a;
    --font-display: 'OpenSauceOne-SemiBold', sans-serif;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --hero-cycle: 10.5s; /* 1.5s logo + 3s + 3s + 3s */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    /* -webkit-user-select: none; Safari */
    /* -moz-user-select: none; Firefox */
    /* -ms-user-select: none; IE10+/Edge */
    /* user-select: none; Standard */
}

/* --- CUSTOM CURSOR --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

.interactive:hover~.cursor-outline,
a:hover~.cursor-outline,
button:hover~.cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--brand-gold);
}

/* Roster Scroll Container */
.scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    /* Mobile padding */
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .scroll-container {
        padding-left: 3rem;
    }
}

.card-wrapper {
    border-radius: 10px;
    position: relative;
    min-width: 85vw;
    /* Mobile width */
    height: 400px;
    scroll-snap-align: center;
    overflow: hidden;
    background: var(--brand-grey);
}

@media (min-width: 768px) {
    .card-wrapper {
        min-width: 400px;
    }
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.card-overlay {
    position: absolute;
    bottom: 36%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transform: translateY(45%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s ease;
}

.card-content {
    opacity: 0.8;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-white);
}

/* Featured Talent Hover Effect (match Talent Categories style) */

.card-wrapper {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
    transform: scale(1);
    transition: transform 0.8s ease, filter 0.5s ease;
}

/* overlay baseline */
.card-overlay {
    position: absolute;
    left: 0;
    bottom: 40%;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0) 100%);
    transition: background 0.4s ease, transform 0.4s ease;
}

.card-content {
    color: var(--color-white);
    opacity: 1;
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* reusable text styles */
.card-tag {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.card-name {
    font-size: 2rem;
    /* margin: 0.5rem 0 0.75rem; */
    line-height: 1.05;
}

.card-line {
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.4s ease;
}

/* Hover (like category cards) */
.card-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card-wrapper:hover .card-image {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.card-wrapper:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 100%);
}

.card-wrapper:hover .card-content {
    transform: translateY(0);
}

.card-wrapper:hover .card-line {
    width: 100%;
}

/* Optional: dim siblings on hover (same concept as film-strip-row hover) */
.scroll-container:hover .card-wrapper:not(:hover) {
    /* opacity: 0.4;
    filter: blur(2px);
    transition: opacity 0.3s ease, filter 0.3s ease; */
}

/* .card-wrapper:hover .card-image {
    transform: scale(1.05);
    filter: grayscale(100%) contrast(120%);
} */

/* .card-wrapper:hover .card-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(212, 175, 55, 0.9) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
} */

/* .card-wrapper:hover .card-content {
    opacity: 1;
    transform: translateY(-10px);
} */


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    /* text-transform: uppercase; */
    text-transform: none;
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Utilities */
.text-gold {
    color: var(--color-gold) !important;
}

h1.text-gold,
h2.text-gold,
h3.text-gold,
h4.text-gold,
h5.text-gold,
h6.text-gold,
h1 .text-gold,
h2 .text-gold,
h3 .text-gold,
h4 .text-gold,
h5 .text-gold,
h6 .text-gold,
.stat-number.text-gold,
.stat-number .text-gold,
.service-num.text-gold,
.service-num .text-gold,
.service-title.text-gold,
.service-title .text-gold,
.event-title.text-gold,
.event-title .text-gold,
.news-title.text-gold,
.news-title .text-gold,
.cta-title.text-gold,
.cta-title .text-gold,
.footer-grid-title.text-gold,
.footer-grid-title .text-gold,
.nav-menu-link.text-gold,
.nav-menu-link .text-gold,
.navbar-brand.text-gold,
.navbar-brand .text-gold,
.marquee-content.text-gold,
.marquee-content .text-gold {
    font-family: var(--font-display);
}

.text-silver {
    color: var(--color-silver) !important;
}

.bg-black {
    background-color: var(--color-black) !important;
}

.bg-dark-grey {
    background-color: var(--color-dark-grey) !important;
}

.section-padding {
    padding: 80px 0;
}

.sub-title {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    /* text-transform: uppercase; */
    text-transform: none;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    /* background: var(--color-black); */
}

::-webkit-scrollbar-thumb {
    background: var(--color-dark-grey);
    border: 1px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Navigation */
.navbar {
    padding: 0px 50px;
    background: transparent;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 0px 20px;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .menu-trigger {
    color: var(--color-white);
}

.navbar.scrolled .menu-icon {
    border-color: rgba(255, 255, 255, 0.90);
}

/* Scrolled Navigation Items */
.scrolled-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

.navbar.scrolled .scrolled-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scrolled-nav a {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    /* text-transform: none; */
    letter-spacing: 1px;
    color: var(--color-white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.scrolled-nav a:hover {
    color: var(--color-gold);
}

/* Highlight Button (Partner with us) */
.scrolled-nav .btn-highlight {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--color-white);
    transition: all 0.3s ease;
}

.scrolled-nav .btn-highlight:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
}

.navbar-brand img {
    max-height: 100px;
    transition: max-height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    max-height: 100px;
}

.navbar-brand span {
    color: var(--color-gold);
    font-family: var(--font-display);
}

.navbar-brand:hover {
    color: var(--color-gold);
    font-family: var(--font-display);
}

.menu-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
}

.menu-text {
    font-size: 12px;
    letter-spacing: 3px;
    /* text-transform: uppercase; */
    text-transform: none;
    font-weight: 600;
    color: var(--color-silver);
}

.menu-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.menu-trigger:hover .menu-icon {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Fullscreen Menu */
.offcanvas-fullscreen {
    background-color: var(--color-white);
    width: 100%;
    height: 100%;
}

.offcanvas-header .btn-close {
    filter: none;
    opacity: 0.8;
}

.nav-menu-link {
    font-family: var(--font-heading);
    font-size: 35px;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.2);
    /* text-transform: uppercase; */
    text-transform: none;
    display: block;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.nav-menu-link:hover {
    color: var(--color-black);
    transform: translateX(20px);
}

.nav-menu-link.active {
    color: var(--color-black);
}

.nav-menu-link span {
    font-size: 16px;
    color: var(--color-gold);
    vertical-align: middle;
    margin-right: 20px;
    font-family: var(--font-display);
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: none;
    z-index: -1;
    transform: scale(1.1);
    animation: zoomOut 10s ease-out forwards;
}

@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
    color: var(--color-white);
    /* Forced white for hero dark bg */
}

.hero-title span {
    /* display: block; */
    -webkit-text-stroke: 1px var(--color-gold);
    color: transparent;
    transition: var(--transition-smooth);
}

.hero-title span:hover {
    color: var(--color-gold);
}

.hero-title.hero-rotate {
    display: inline-block;
    position: relative;
    line-height: 0.98;
    letter-spacing: -0.5px;
    /* text-transform: uppercase; */
}
.hero-title.hero-rotate {
    opacity: 1;
    transform: none;
    animation: none;
}

/* .hero-title.hero-rotate .hero-rotate-line {
    display: block;
    font-weight: 800;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(12px);
    animation: heroRotateLines 9s infinite;
    text-shadow:
        0 10px 35px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(212, 175, 55, 0.12);
} */

/* Make the 2nd line decorative like the old stroked WORLD-CLASS */
.hero-title.hero-rotate .hero-rotate-line:nth-child(2) {
    /* color: transparent; */
    -webkit-text-stroke: 1.2px var(--color-gold);
    letter-spacing: 1px;
    text-shadow: none;
}

/* Make the 3rd line brand-forward */
.hero-title.hero-rotate .hero-rotate-line:nth-child(3) {
    /* color: var(--color-gold); */
    letter-spacing: 1px;
}

/* .hero-title.hero-rotate .hero-rotate-line:nth-child(1) { animation-delay: 0s; }
.hero-title.hero-rotate .hero-rotate-line:nth-child(2) { animation-delay: 3s; }
.hero-title.hero-rotate .hero-rotate-line:nth-child(3) { animation-delay: 6s; } */

/* @keyframes heroRotateLines {
    0%   { opacity: 0; transform: translateY(12px); filter: blur(0.5px); }
    10%  { opacity: 1; transform: translateY(0);  filter: blur(0); }
    30%  { opacity: 1; transform: translateY(0);  filter: blur(0); }
    40%  { opacity: 0; transform: translateY(-12px); filter: blur(0.5px); }
    100% { opacity: 0; transform: translateY(-12px); filter: blur(0.5px); }
} */

.hero-intro-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
 
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    animation: heroLogoLoop var(--hero-cycle) ease-in-out infinite;
}

@keyframes heroLogoLoop {
    0%   { opacity: 0; transform: translateY(10px) scale(0.98); }
    8%   { opacity: 1; transform: translateY(0) scale(1); }
    14%  { opacity: 1; transform: translateY(0) scale(1); }
    20%  { opacity: 0; transform: translateY(-6px) scale(0.995); }
    100% { opacity: 0; transform: translateY(-6px) scale(0.995); }
}

.hero-intro-logo img {
    height: 200px;      /* tweak if needed */
    width: auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

@keyframes heroLogoIntro {
    0%   { opacity: 0; transform: translateY(10px) scale(0.98); }
    20%  { opacity: 1; transform: translateY(0) scale(1); }
    70%  { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-6px) scale(0.995); }
}

/* Delay the hero title so it appears AFTER the logo fades out */
/* .hero-title.hero-rotate {
    opacity: 0;
    transform: translateY(18px);
    animation: heroTitleAfterLogo 0.9s ease 1.6s forwards;
} */

/* @keyframes heroTitleAfterLogo {
    to { opacity: 1; transform: translateY(0); }
} */

/* Delay the rotating lines so rotation begins AFTER the title appears */
/* .hero-title.hero-rotate .hero-rotate-line {
    animation-delay: 1.6s;
} */

/* Keep your per-line offsets but add the same base delay */
/* .hero-title.hero-rotate .hero-rotate-line:nth-child(1) { animation-delay: calc(1.6s + 0s); } */
/* .hero-title.hero-rotate .hero-rotate-line:nth-child(2) { animation-delay: calc(1.6s + 3s); } */
/* .hero-title.hero-rotate .hero-rotate-line:nth-child(3) { animation-delay: calc(1.6s + 6s); } */

.hero-title.hero-rotate {
    width: 100vw;
    position: relative;
    display: inline-block;
    line-height: 1;
    height: 1.15em; /* keeps layout stable; tweak 1.05–1.25em if needed */
}

.hero-title.hero-rotate .hero-rotate-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  display: block;         /* ok to keep block; absolute positioning is what matters */
  /* white-space: nowrap;    prevents wrapping */
  text-align: center;

  font-weight: 800;
  color: var(--color-white);

  text-shadow:
    0 10px 35px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(212, 175, 55, 0.12);

  opacity: 0;
  transform: translateY(12px);

  animation-duration: var(--hero-cycle);
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: 0s !important;
}

/* Line 1 shows after logo fades */
.hero-title.hero-rotate .hero-rotate-line:nth-child(1) {
    animation-name: heroLine1;
}

/* Line 2 */
.hero-title.hero-rotate .hero-rotate-line:nth-child(2) {
    animation-name: heroLine2;
}

/* Line 3 */
.hero-title.hero-rotate .hero-rotate-line:nth-child(3) {
    animation-name: heroLine3;
}

@keyframes heroLine1 {
    0%, 19%   { opacity: 0; transform: translateY(12px); filter: blur(0.5px); }
    23%, 45%  { opacity: 1; transform: translateY(0);  filter: blur(0); }
    49%, 100% { opacity: 0; transform: translateY(-12px); filter: blur(0.5px); }
}

@keyframes heroLine2 {
    0%, 49%   { opacity: 0; transform: translateY(12px); filter: blur(0.5px); }
    53%, 75%  { opacity: 1; transform: translateY(0);  filter: blur(0); }
    79%, 100% { opacity: 0; transform: translateY(-12px); filter: blur(0.5px); }
}

@keyframes heroLine3 {
    0%, 79%   { opacity: 0; transform: translateY(12px); filter: blur(0.5px); }
    83%, 97%  { opacity: 1; transform: translateY(0);  filter: blur(0); }
    100%      { opacity: 0; transform: translateY(-12px); filter: blur(0.5px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.scroll-indicator span {
    color: var(--color-white) !important;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* About Section */
.stat-item {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-black);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-silver);
    margin-top: 10px;
    /* text-transform: uppercase; */
    text-transform: none;
    letter-spacing: 1px;
}

/* Slider Section */
.swiper-slide {
    width: 350px;
    /* Specific width for visual flow */
    transition: var(--transition-smooth);
    opacity: 0.4;
    transform: scale(0.9);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.artist-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    /* filter: grayscale(100%); */
}

.artist-card:hover .artist-img {
    transform: scale(1.1);
    /* filter: grayscale(0%); */
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.artist-card:hover .artist-overlay {
    transform: translateY(0);
}

.artist-name {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--color-white);
}

.artist-category {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--color-gold);
    /* text-transform: uppercase; */
    text-transform: none;
}

/* Services */
.service-list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    transition: var(--transition-smooth);
    /* cursor: pointer; */
}

.service-list-item:hover {
    border-color: var(--color-gold);
    padding-left: 20px;
}

.service-num {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-silver);
    opacity: 0.5;
    margin-right: 30px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-black);
    flex-grow: 1;
}

.service-arrow {
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition-smooth);
    color: var(--color-gold);
}

.service-list-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Ambient Background for Events */
.ambient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--brand-silver);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--brand-silver);
    /* Can mix with Navy if desired, but Gold fits theme */
    animation-delay: -5s;
    opacity: 0.1;
}

.orb-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: var(--brand-silver);
    opacity: 0.05;
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, 50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(20px, -30px) scale(1.05);
    }
}

/* Events Section */
.event-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: var(--color-black);
}

.event-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s ease;
}

.event-card:hover .event-bg-img {
    transform: scale(1.05);
}

.event-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 20px;
    transition: all 0.2s;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.event-card-inner:hover {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.event-card:hover {
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.30);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    line-height: 1.2;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.3); */
}

.event-artist {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.event-meta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 300;
}

.meta-item i {
    color: var(--brand-gold);
    font-size: 1rem;
}

/* Partners Marquee */
.partners-section {
    /* background: var(--color-silver); */
    background: #ebebeb;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    margin: 0.2rem;
    padding: 4rem 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.marquee-slow-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-slow {
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: 0 3rem;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.partner-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.5s;
}

.partner-logo:hover {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Partner logos (images inside the existing .partner-logo spans) */
.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Constrain logo size */
.partner-logo img {
    height: 56px;              /* adjust: 36px–56px */
    width: auto;
    max-width: 160px;          /* prevents very wide logos from breaking layout */
    object-fit: contain;
    display: block;
    opacity: 0.7;              /* similar feel to old faded text */
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
    /* filter: grayscale(100%); */
}

/* Hover effect similar to old text hover */
.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-1px);
}

/* Optional: tighten spacing on smaller screens */
@media (max-width: 768px) {
    .partner-logo img {
        height: 34px;
        max-width: 120px;
    }

    .marquee-slow {
        gap: 3rem;
    }
}

/* News Section */
.news-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/view-futuristic-concert.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    opacity: 0.2;
    /* Subtle visibility */
    filter: grayscale(80%) contrast(1.5);
    /* Fade in/out for seamless integration with black bg */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.news-card {
    background-image: linear-gradient(163deg, #ffffff 0%, #e0e0e0 100%);
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-card-inner {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Clips the icon wrapper */
}

.news-card-inner:hover {
    transform: scale(0.98);
    border-radius: 20px;
}

.news-card:hover {
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.30);
}

.news-icon-wrapper {
    height: 200px;
    background: linear-gradient(45deg, #f8f8f8, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover .news-icon-wrapper {
    background: linear-gradient(45deg, #151515, #222);
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card:hover .news-img {
    transform: scale(1.1);
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.news-tag {
    background: rgba(0, 0, 0, 0.1);
    color: var(--color-black);
    padding: 4px 12px;
    border-radius: 20px;
    /* text-transform: uppercase; */
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.news-date {
    color: var(--color-silver);
    opacity: 0.7;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--color-silver);
    font-size: 0.90rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-black);
    border-radius: 60px;
    margin: 0.2rem;
    overflow: hidden;
    position: relative;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* background: linear-gradient(to bottom, transparent 0%, var(--color-black) 100%); */
    pointer-events: none;
    z-index: 2;
}

.bg-white {
    background-color: var(--color-white) !important;
    color: var(--color-black);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-silver);
    max-width: 650px;
    margin: 0 auto;
}

.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    transition: var(--transition-smooth);
}

.btn-black:hover {
    background-color: var(--brand-grey);
    color: var(--color-white);
    border-color: var(--brand-grey);
    transform: translateY(-3px);
}

.btn-outline-black {
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    transition: var(--transition-smooth);
}

.btn-outline-black:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-white);
    transition: var(--transition-smooth);
}

.btn-white:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Footer Option 2: Architectural Grid */
.footer-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 2px solid var(--color-black);
    background: var(--color-white);
}

.footer-grid-item {
    padding: 3rem;
    border-right: 2px solid var(--color-black);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.footer-grid-item:last-child {
    border-right: none;
}

.footer-grid-item:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.footer-grid-item:hover .text-silver,
.footer-grid-item:hover a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-grid-item:hover .text-gold {
    color: var(--color-gold) !important;
}

.footer-grid-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    /* text-transform: uppercase; */
    text-transform: none;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.footer-grid-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Mobile Grid */
@media (max-width: 992px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
    }

    .footer-grid-item {
        border-right: none;
        border-bottom: 2px solid var(--color-black);
        min-height: auto;
        padding: 2rem;
    }

    .footer-grid-item:last-child {
        border-bottom: none;
    }
}

.contact-headline {
    font-family: var(--font-display);
    font-size: 3vw;
    /* Massive responsive text */
    line-height: 0.9;
    color: var(--color-black);
    /* text-transform: uppercase; */
    text-transform: none;
    font-weight: 700;
    margin: 0;
    transition: var(--transition-smooth);
}

.contact-headline-link {
    display: inline-block;
    text-decoration: none;
}

.contact-headline-link:hover .contact-headline {
    color: var(--color-silver);
}

.contact-arrow {
    font-size: 3vw;
    vertical-align: top;
    transition: transform 0.4s ease;
    display: inline-block;
}

.contact-headline-link:hover .contact-arrow {
    transform: translate(10px, -10px);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.contact-list li {
    /* margin-bottom: 0.8rem; */
    font-size: 1.1rem;
    font-weight: 300;
}

.hover-gold {
    transition: color 0.3s ease;
    color: inherit;
    text-decoration: none;
}

.hover-gold:hover {
    color: var(--brand-gold) !important;
}

.social-link-minimal {
    color: var(--color-silver);
    /* text-transform: uppercase; */
    text-transform: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.social-link-minimal:hover {
    color: var(--brand-gold);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar {
        padding: 20px;
    }

    /* Contact Section Mobile */
    .contact-headline {
        font-size: 2.5rem;
        line-height: 1;
    }

    .contact-arrow {
        font-size: 2.5rem;
    }

    .contact-list li {
        font-size: 1rem;
    }

    /* CTA Section Mobile */
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-section .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Pill/Card Sections Mobile */
    .partners-section,
    .cta-section {
        margin: 1rem;
        border-radius: 30px;
    }
}


/* Mobile & Tablet Header (Solid Black, No Overlap) */
@media (max-width: 1199px) {
    .navbar.fixed-top {
        position: fixed;
        /* background-color: var(--color-black) !important; */
        padding: 15px 20px;
    }

    .navbar.fixed-top-custom {
        /* position: relative !important; */
        background-color: var(--color-black) !important;
        padding: 15px 20px;
    }

    .navbar-brand img {
        max-height: 100px;
    }

    /* Remove scroll effects/transparency on mobile */
    .navbar.scrolled {
        background-color: var(--color-black) !important;
        box-shadow: none;
    }

    /* Force white text/icons on mobile even when scrolled */
    .navbar.scrolled .navbar-brand,
    .navbar.scrolled .menu-trigger {
        color: var(--color-white) !important;
    }

    .navbar.scrolled .menu-icon {
        border-color: rgba(255, 255, 255, 0.2) !important;
    }

    .hero-section {
        /* Adjust hero height to account for the header pushing it down */
        height: calc(100vh - 80px);
        min-height: 500px;
    }
}

/* Marquee Section */
.marquee-section {
    background: antiquewhite;
    color: var(--color-black);
    /* padding: 1.5rem 0; */
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    /* Mobile */
    text-transform: none;
}

.marquee-content span {
    margin: 0 2rem;
}

.stroke-text {
    -webkit-text-stroke: 1px var(--color-black);
    color: transparent;
}

.display-5 {
    font-weight: 500;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Talent Categories - Film Strip */
.categories-section {
    background-color: var(--color-black);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.categories-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.film-strip-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: rotate(-2deg);
    /* Slight tilt for dynamic feel */
    width: 110%;
    /* Compensate for tilt */
    margin-left: -5%;
}

.film-strip-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

/* Scroll Animations */
.scroll-left {
    animation: scroll-left 40s linear infinite;
}

.scroll-right {
    animation: scroll-right 45s linear infinite;
}

.film-strip-row:hover {
    animation-play-state: paused;
}

.category-card {
    position: relative;
    width: 280px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* filter: grayscale(100%) brightness(0.7); */
    transition: all 0.4s ease;
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.category-title {
    width: 18vw;
    font-family: var(--font-heading);
    font-size: 1.0rem;
    color: var(--color-white);
    transform: translateY(10px);
    transition: all 0.4s ease;
    /* text-transform: uppercase; */
    text-transform: none;
    line-height: 1.1;
    margin-bottom: 0;
}

.category-line {
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    margin-top: 10px;
    transition: width 0.4s ease;
}

/* Hover Effects */
.category-card:hover {
    width: 350px;
    /* Expand width */
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--color-gold);
}

.category-card:hover .category-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.category-card:hover .category-title {
    color: var(--color-gold);
    transform: translateY(0);
}

.category-card:hover .category-line {
    width: 100%;
}

/* Dim siblings on hover (optional, adds focus) */
.film-strip-row:hover .category-card:not(:hover) {
    opacity: 0.4;
    filter: blur(2px);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes duplicated content */
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .film-strip-container {
        transform: rotate(0);
        width: 100%;
        margin-left: 0;
        gap: 1rem;
    }

    .category-card {
        width: 220px;
        height: 320px;
    }

    .category-card:hover {
        width: 240px;
    }
}

/* Global Reach Map */
.map-section-container {
    position: relative;
    width: 100%;
    height: 80vh;
    background: var(--color-white);
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

    /* Map Variables */
    --city-radius: 1.5rem;
    --city-sign-color-back: var(--brand-gold);
    --city-sign-color-font: var(--brand-black);
    --city-pin-size-font: 2rem;
}

.map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-cities {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-city {
    position: absolute;
    left: calc(var(--x) * 1% - var(--city-radius));
    top: calc(var(--y) * 1% - var(--city-radius));
    padding: var(--city-radius);
    border-radius: var(--city-radius);
    cursor: pointer;
    /* z-index handled by ::after for pins, but container needs one */
    z-index: 10;
}

.map-city::after,
.map-city::before {
    font-size: var(--city-pin-size-font);
}

/* Dot */
.map-city::before {
    content: "•";
    position: absolute;
    left: calc(-50% + var(--city-radius));
    top: calc(-0.65em + var(--city-radius));
    width: 100%;
    text-align: center;
    color: var(--brand-black);
    text-shadow: 0 1px 1px #000;
}

/* Pin */
.map-city::after {
    clip-path: inset(-0.5em 0 0 0);
    content: "📍";
    position: absolute;
    left: calc(-50% + var(--city-radius));
    top: calc(-1em + var(--city-radius));
    width: 100%;
    text-align: center;
    transition: all 300ms ease-out;
    z-index: var(--y);
}

.map-city:hover::after {
    clip-path: inset(-0.5em 0 0.5em 0);
    transform: translateY(0.5em);
}

/* Map Label */
.map-label {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    text-align: center;
    z-index: 999;

    background-color: var(--city-sign-color-back);
    color: var(--city-sign-color-font);
    border: 2px solid var(--color-white);
    border-radius: 0.2rem;
    padding: 0.8em 0.8em;
    font-family: var(--font-heading);
    font-weight: 700;
    /* text-transform: uppercase; */
    text-transform: none;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 0 3px #000;
}

.map-city:hover .map-label {
    display: block;
    animation: fadein 300ms forwards ease-out;
}

/* Film Strip - Scrollable Container */
.film-strip-row {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    /* Space for potential scrollbar interaction */

    /* Hide scrollbars for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;

    /* Enable Scroll Snap */
    /* scroll-snap-type: x mandatory; */
    cursor: grab;
}

.film-strip-row::-webkit-scrollbar {
    display: none;
}

/* Film Strip - Animated Track */
.film-strip-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
    /* Optimize for animation */
}

/* Pause animation when hovering over the scroll container */
.film-strip-row:hover .film-strip-track {
    animation-play-state: paused;
}

/* Ensure cards snap correctly */
.category-card {
    scroll-snap-align: center;
}

@keyframes fadein {
    0% {
        opacity: 0;
        /* top: calc(var(--city-radius)); */
    }

    100% {
        opacity: 1;
        /* top: calc(var(--city-radius) + var(--city-pin-size-font) / 2); */
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}


.fixed-top-custom {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
}

body.privacy-open {
    overflow: hidden;
}

.privacy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 9998;
}

.privacy-tooltip {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.98);
    width: min(560px, calc(100vw - 2rem));
    background: #fff;
    color: #050505;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
    z-index: 9999;
    /* padding: 1.25rem 1.25rem 1.1rem; */
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-tooltip-header {
    background: #f4f4f4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding: 1rem 1rem 0rem 1.25rem;
}

.privacy-tooltip-title {
    margin-bottom: 0;
}

.privacy-tooltip-body {
    padding: 1.1rem 1.25rem 1.25rem;
}

body.privacy-open .privacy-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.privacy-open .privacy-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.privacy-tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 0;
    color: #050505;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
}

.privacy-tooltip-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    padding-right: 2.5rem;
}

.privacy-tooltip-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.75);
    max-height: min(60vh, 520px);
    overflow: auto;
    padding-right: 4px;
}

.section-padding-pp{
    padding: 40px 0;
}

.sticky-top{
    z-index: unset !important;
}