/* TE2 Hospitality - Main Premium Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
    --bg-base: #050505;
    --bg-card: #0E0E10;
    --bg-card-hover: #141417;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1A6;
    --text-muted: #6E6E73;
    --silver-accent: #E5E5E7;
    --silver-dim: #8E8E93;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --section-pad-x: 6rem;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Typography Helpers */
.serif-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Reusable Buttons */
.btn-silver {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    border-radius: 4px;
}

.btn-silver:hover {
    background: var(--text-primary);
    color: var(--bg-base);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.btn-silver svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-silver:hover svg {
    transform: translateX(4px);
}

/* -----------------------------------------
   HERO SLIDESHOW SECTION
----------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Background Crossfader */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade-slide 28s infinite ease-in-out;
    filter: brightness(0.4) grayscale(0.15);
}

.hero-slide:nth-child(1) {
    background-image: url('../assets/venues-photos/300-cosmo-dining-room_2.jpg');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: url('../assets/venues-photos/300-sky-bar_2.jpg');
    animation-delay: 7s;
}

.hero-slide:nth-child(3) {
    background-image: url('../assets/venues-photos/300-cosmo-beach-club_2.jpg');
    animation-delay: 14s;
}

.hero-slide:nth-child(4) {
    background-image: url('../assets/venues-photos/provocateur_1.jpg');
    animation-delay: 21s;
}

@keyframes fade-slide {

    0%,
    100% {
        opacity: 0;
        transform: scale(1.02);
    }

    8%,
    28% {
        opacity: 0.65;
        transform: scale(1.05);
    }

    /* fade in & hold */
    36%,
    92% {
        opacity: 0;
        transform: scale(1.08);
    }

    /* fade out & continue zooming */
}

/* Overlay dark vignette */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 90%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: 3rem;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.2rem;
    width: 100%;
}

.hero-logo {
    max-width: 440px;
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    color: var(--text-primary);
}

.scroll-indicator .mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid currentColor;
    border-radius: 12px;
    margin-top: 0;
    position: relative;
}

.scroll-indicator .wheel {
    width: 3px;
    height: 6px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 1;
    }
}

/* -----------------------------------------
   ABOUT SECTION
----------------------------------------- */
.about {
    padding: 10rem var(--section-pad-x) 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-content {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.about-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-content strong {
    color: var(--text-primary);
    font-weight: 500;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.about-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 1.5rem 2.2rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-height: 110px;
}

.about-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--text-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.about-card:hover::after {
    transform: scaleY(1);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.about-card-initial {
    width: 170px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-card-initial h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.about-card-logo {
    max-height: 54px;
    width: auto;
    object-fit: contain;
    filter: invert(1) brightness(1.5) contrast(1.1);
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.about-card:hover .about-card-logo {
    opacity: 1;
    transform: scale(1.05);
}

.about-card-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    text-align: left;
    transition: var(--transition-smooth);
}

.about-card:hover .about-card-desc {
    color: var(--text-secondary);
}

.about-card-arrow {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.about-card:hover .about-card-arrow {
    transform: translateX(4px);
    color: var(--text-primary);
}

/* -----------------------------------------
   VENUES GRID SECTION
----------------------------------------- */
.venues-section {
    padding: 10rem var(--section-pad-x) 10rem;
    background: #0A0A0C;
    border-top: 1px solid var(--border-color);
}

.venues-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.venues-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.venues-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Dynamic Bento Grid Layout for Venues */
.venue-card {
    position: relative;
    height: 460px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2.5rem;
    cursor: pointer;
}

/* Grid configurations (Bento) */
.venue-card.span-6 {
    grid-column: span 6;
}

.venue-card.span-4 {
    grid-column: span 4;
}

.venue-card.span-8 {
    grid-column: span 8;
}

.venue-card.span-12 {
    grid-column: span 12;
    height: 500px;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.92) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.venue-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
    filter: brightness(0.6) grayscale(0.2);
}

.venue-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.venue-logo-container {
    height: 100px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.venue-logo {
    max-height: 70px;
    max-width: 200px;
    object-fit: contain;
    filter: invert(1) brightness(1.5) contrast(1.1);
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.venue-logo.large-logo {
    max-height: 95px;
    max-width: 320px;
}

.venue-details-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    pointer-events: none;
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.venue-location {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    opacity: 0.6;
}

.venue-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.4;
    max-width: 280px;
    margin: 0;
}

/* Hover States */
.venue-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.venue-card:hover .venue-bg {
    transform: scale(1.05);
    filter: brightness(0.75) grayscale(0);
}

.venue-card:hover::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.92) 100%);
}

.venue-card:hover .venue-logo-container {
    transform: translateY(-30px);
}

.venue-card:hover .venue-logo {
    opacity: 1;
}

.venue-card:hover .venue-details-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------------
   B4F EVENTS SECTION
----------------------------------------- */
.b4f-section {
    padding: 10rem var(--section-pad-x);
    position: relative;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.b4f-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* B4F Slideshow Background */
.b4f-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.b4f-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: b4f-fade-slide 21s infinite ease-in-out;
    filter: brightness(0.22) grayscale(0.2) blur(1px);
}

.b4f-slide:nth-child(1) {
    background-image: url('../assets/b4f-photos/b4f_1.jpg');
    animation-delay: 0s;
}

.b4f-slide:nth-child(2) {
    background-image: url('../assets/b4f-photos/b4f_2.jpg');
    animation-delay: 7s;
}

.b4f-slide:nth-child(3) {
    background-image: url('../assets/b4f-photos/b4f_3.jpg');
    animation-delay: 14s;
}

@keyframes b4f-fade-slide {
    0%, 100% {
        opacity: 0;
        transform: scale(1.02);
    }
    10%, 33.33% {
        opacity: 0.55;
        transform: scale(1.05);
    }
    43.33% {
        opacity: 0;
        transform: scale(1.02);
    }
}

.b4f-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.b4f-logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.b4f-main-logo {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    filter: invert(1) brightness(1.5) contrast(1.1);
    opacity: 0.95;
}

.b4f-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.b4f-info p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    text-align: center;
}

.b4f-brands-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.b4f-brand-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 2.2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    min-height: 110px;
    text-align: left;
}

.b4f-brand-logo {
    height: 66px;
    width: 180px;
    flex-shrink: 0;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Handling black logos */
.b4f-brand-logo.invert-logo {
    filter: invert(1) brightness(1.6);
    opacity: 1;
}

/* Keep color logos beautiful but uniform */
.b4f-brand-logo.color-logo {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.b4f-brand-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    transition: var(--transition-smooth);
}

.b4f-brand-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.b4f-brand-card:hover .b4f-brand-logo {
    opacity: 1;
    transform: scale(1.05);
}

.b4f-brand-card:hover .b4f-brand-logo.color-logo {
    filter: grayscale(0) brightness(1);
}

.b4f-brand-card:hover .b4f-brand-desc {
    color: var(--text-secondary);
}

/* -----------------------------------------
   TE2 LIVE SECTION
----------------------------------------- */
.live-section {
    padding: 8rem var(--section-pad-x);
    background: #09090B;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.live-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.live-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.live-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.live-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.live-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.live-editorial-box {
    border-left: 2px solid var(--silver-dim);
    padding-left: 3rem;
}

.live-editorial-box p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.live-instagram-feed {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
    backdrop-filter: blur(16px);
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.instagram-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #111;
}

.instagram-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.instagram-username {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.verified-badge {
    display: inline-block;
}

.instagram-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.instagram-follow-btn {
    background: var(--text-primary);
    color: var(--bg-base);
    border: none;
    border-radius: 6px;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition-smooth);
}

.instagram-follow-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-1px);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

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

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
}

.instagram-post:hover img {
    transform: scale(1.08);
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

/* -----------------------------------------
   APP & MOCKUPS SECTION
----------------------------------------- */
.app-section {
    padding: 10rem var(--section-pad-x) 8rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.app-details h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.app-details p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.app-features-list {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.app-feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary);
}

.app-feature-row svg {
    color: var(--silver-dim);
    flex-shrink: 0;
}

.app-badges {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.app-badges .badge {
    height: 66px;
    width: auto;
    transition: var(--transition-smooth);
}

.app-badges .badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Premium Overlapping iPhone Layout */
.mockup-showcase {
    position: relative;
    height: 580px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.mockup-img {
    position: absolute;
    width: 270px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.75));
    transition: var(--transition-smooth);
}

/* Creative overlapping placements with standard floating animation */
.mockup-img.screen-back {
    left: 10%;
    top: 15%;
    transform: rotate(-6deg) scale(0.9);
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.75)) brightness(0.6);
    animation: float-back 6s infinite ease-in-out;
}

.mockup-img.screen-front {
    right: 15%;
    top: 5%;
    transform: rotate(5deg);
    z-index: 2;
    animation: float-front 6s infinite ease-in-out;
}

@keyframes float-front {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(4deg) translateY(-15px);
    }
}

@keyframes float-back {

    0%,
    100% {
        transform: rotate(-6deg) scale(0.9) translateY(0);
    }

    50% {
        transform: rotate(-7deg) scale(0.9) translateY(-10px);
    }
}

/* Hover effect on showcase */
.mockup-showcase:hover .mockup-img.screen-back {
    transform: rotate(-10deg) scale(0.92) translateX(-20px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.75)) brightness(0.85);
}

.mockup-showcase:hover .mockup-img.screen-front {
    transform: rotate(8deg) scale(1.02) translateX(20px) translateY(-5px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.85));
}

/* -----------------------------------------
   DYNAMIC BESPOKE INQUIRY MODAL
----------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    overflow-y: auto;
    padding: 3rem 1.5rem;
}

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

.modal-card {
    background: #0C0C0E;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    padding: 3.5rem;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    margin: auto;
}

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

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition-smooth);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select option {
    background: #0C0C0E;
    color: var(--text-primary);
}

/* Success State */
.modal-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.modal-success-state svg {
    color: #30D158;
    margin-bottom: 1.5rem;
    animation: scaleCheck 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleCheck {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* -----------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
----------------------------------------- */
@media (max-width: 1100px) {
    :root {
        --section-pad-x: 4rem;
    }

    .about-grid,
    .b4f-grid,
    .live-content-grid,
    .app-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about {
        padding: 8rem var(--section-pad-x) 6rem;
    }

    .app-section {
        padding: 6rem var(--section-pad-x) 6rem;
    }

    .mockup-showcase {
        height: 480px;
        margin-top: 2rem;
    }

    .mockup-img {
        width: 220px;
    }

    .mockup-img.screen-back {
        left: 15%;
    }

    .mockup-img.screen-front {
        right: 20%;
    }
}

@media (max-width: 900px) {

    .venue-card.span-6,
    .venue-card.span-4,
    .venue-card.span-8,
    .venue-card.span-12 {
        grid-column: span 12;
        height: 400px;
        padding: 2.5rem 2rem;
    }

    .venues-grid {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-header h2,
    .venues-header h2,
    .b4f-info h2,
    .live-header h2,
    .app-details h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    :root {
        --section-pad-x: 2rem;
    }

    .b4f-brands-container {
        grid-template-columns: 1fr;
    }

    .b4f-brand-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .b4f-brand-logo {
        margin-bottom: 0.5rem;
    }

    .about-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.8rem 1.5rem;
        gap: 0.8rem;
        min-height: auto;
    }

    .about-card-initial {
        width: 100%;
    }

    .about-card-arrow {
        align-self: flex-end;
        margin-top: 0.5rem;
    }

    .live-features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .live-editorial-box {
        padding-left: 1.5rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .mockup-showcase {
        height: 380px;
    }

    .mockup-img {
        width: 170px;
    }

    .mockup-img.screen-back {
        left: 10%;
    }

    .mockup-img.screen-front {
        right: 15%;
    }

    .modal-card {
        padding: 2rem;
    }

    .modal-card h3 {
        font-size: 1.6rem;
    }

    .app-badges {
        gap: 0.8rem;
    }

    .app-badges .badge {
        height: 48px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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