/* Fonts - Poppins like original */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors from original Cabo Visual site */
    --bg-color: #1c1c1c;
    /* Graphite */
    --bg-secondary: #242424;
    /* Lighter Graphite */
    --surface-color: #2c2c2c;
    --text-color: #FFFFFF;
    --text-muted: #E8E6E6;
    --text-light: #AAAAAA;
    --border-color: rgba(255, 255, 255, 0.1);

    --font-main: 'Poppins', 'Arial', 'Helvetica', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--text-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: var(--text-muted);
    transform: translateY(-2px);
}

.section {
    padding: 6rem 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: transparent;
}

/* Header Container Override - 100% Width with consistent edge margins */
.header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2.5rem 0 0;
    margin: 0;
}

/* Compact Mode - When hero is scrolled out of view on home page */
.header.compact-mode {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 90px;
}

.header.compact-mode .container {
    padding: 0 2.5rem 0 0;
}

.header.compact-mode .logo {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    margin-left: 0;
    margin-top: 0;
}

.header.compact-mode .logo-img {
    height: 80px;
}

.header.compact-mode .nav {
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header.compact-mode .nav-links {
    display: flex;
    margin: 0;
    margin-right: 0;
    margin-top: 0;
    flex-grow: 1;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.header.compact-mode .nav-link {
    pointer-events: auto;
    cursor: pointer;
}

.header.compact-mode .nav-right {
    margin-right: 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    margin-left: -1.5rem;
    margin-top: -3rem;
    flex-shrink: 0;
}

.logo-img {
    height: 280px;
    width: auto;
    transition: var(--transition);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    justify-content: flex-end;
    flex-grow: 1;
    margin-top: -5.5rem;
    margin-right: 0;
}

.nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--text-muted);
}

.nav-link .arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--border-color);
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 0;
    margin-top: -5.5rem;
    margin-left: 2rem;
    flex-shrink: 0;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.lang-switch span {
    color: rgba(255, 255, 255, 0.6);
}

.lang {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: var(--transition);
}

.lang.active,
.lang:hover {
    color: var(--text-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

.mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link,
.mobile-dropdown-toggle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-dropdown {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-dropdown a {
    font-size: 1rem;
    color: var(--text-muted);
}

.mobile-has-dropdown.active .mobile-dropdown {
    display: flex;
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Reduced opacity for brighter video */
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    /* Ensure content is above the fade */
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding-bottom: 10vh;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-location {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-muted);
}

/* Section Title */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    background: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: #d9d9d9;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    color: #000000;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    background: #d9d9d9;
}

.service-icon {
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
}

/* Catalog CSS */
.catalog-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* Equal margin between */
    flex-wrap: wrap;
    padding: 4rem 0;
}

.catalog-card {
    width: 300px;
    max-width: 100%;
    background: #d9d9d9;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.catalog-icon {
    margin-bottom: 1.5rem;
    color: #000000;
}

.catalog-title {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #000000;
}

.catalog-text {
    color: #555555;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    overflow: hidden;
    position: relative;
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: var(--bg-color);
    padding: 8rem 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Page Header for subpages */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: var(--bg-color);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Contact Page */
.contact-section {
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: var(--text-color);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--text-color);
}

.contact-item a:hover {
    color: var(--text-muted);
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link-large {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: var(--transition);
}

.social-link-large:hover {
    border-color: var(--text-color);
    background: var(--text-color);
    color: var(--bg-color);
}

.social-link-large.whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.social-link-large.whatsapp:hover {
    background: #25D366;
    color: var(--bg-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--surface-color);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23AAAAAA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    color: var(--text-light);
}

.form-group select option {
    background: var(--bg-color);
    color: var(--text-color);
}

.btn-full {
    width: 100%;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 5vh;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-hero-bg img,
.service-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px) brightness(1.1);
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-content {
    padding: 4rem 0;
}

.service-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.service-description p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #111111;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

/* Team Section */
.team-section {
    background: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: #d9d9d9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    color: #000000;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #000000;
}

.team-position {
    color: #555555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.team-contact a {
    color: #333333;
    transition: var(--transition);
}

.team-contact a:hover {
    color: #000000;
}

/* Map Section */
.map-section {
    background: var(--bg-color);
    padding: 4rem 0;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-container iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #111111;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-logo .logo-img {
    height: 120px;
}

.footer-contact p,
.footer-address p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--text-color);
}

.footer-contact a:hover {
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--text-muted);
    transform: translateY(-2px);
}

.social-link.whatsapp {
    color: #25D366;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-legal a:hover {
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* ===== HEADER MOBILE FIX ===== */
    .header {
        height: 60px;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .header .container,
    .header.compact-mode .container {
        padding: 0 1rem;
        height: 60px;
        display: flex;
        align-items: center;
    }

    .nav {
        height: 60px;
        width: 100%;
    }

    /* Reset all negative margins on mobile */
    .logo {
        margin-left: 0;
        margin-top: 0;
    }

    .logo-img {
        height: 45px;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        margin-top: 0;
        margin-left: auto;
        margin-right: 0;
    }

    .lang-switch {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Compact mode on mobile should match */
    .header.compact-mode {
        height: 60px;
    }

    .header.compact-mode .nav {
        height: 60px;
    }

    .header.compact-mode .logo-img {
        height: 45px;
    }

    .header.compact-mode .nav-links {
        display: none;
    }

    .header.compact-mode .nav-right {
        margin-top: 0;
        margin-right: 0;
    }

    /* ===== MOBILE MENU OVERLAY ===== */
    .mobile-menu {
        padding-top: 80px;
    }

    .mobile-nav-links {
        gap: 1.2rem;
    }

    .mobile-nav-link,
    .mobile-dropdown-toggle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    /* ===== CONTENT SECTIONS ===== */
    .section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        letter-spacing: 4px;
        font-size: 1.5rem;
    }

    .hero-location {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 400px;
    }

    .service-hero {
        min-height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        justify-content: center;
    }

    .legal-page-header {
        padding: 80px 0 30px;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .header .container,
    .header.compact-mode .container {
        padding: 0 0.75rem;
    }

    .logo-img,
    .header.compact-mode .logo-img {
        height: 38px;
    }

    .lang-switch {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        gap: 0.3rem;
    }

    .section {
        padding: 2rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .catalog-card {
        width: 100%;
    }

    .catalog-grid {
        padding: 2rem 0;
    }

    .footer-grid {
        gap: 2rem;
    }

    .service-gallery img {
        height: 200px;
    }

    .dj-profile-name {
        font-size: 1.5rem;
    }

    .dj-profile-bio {
        font-size: 1rem;
    }
}

/* DJ Catalog Section */
.dj-catalog-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.dj-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.dj-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.dj-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.dj-card:hover .dj-photo img {
    transform: scale(1.1);
}

.dj-info {
    padding: 1.5rem;
}

.dj-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.dj-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* DJ Profile Page */
.dj-profile-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-secondary);
}

.dj-profile-content {
    text-align: center;
    padding: 4rem 0;
}

.dj-profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.dj-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-profile-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dj-profile-title {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.dj-profile-bio {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .dj-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .dj-profile-name {
        font-size: 1.8rem;
    }
}

/* Stage Video Text Fix - Independent Mask */
.video-text-mask {
    position: absolute;
    top: 0;
    /* Cover from very top */
    bottom: 0;
    /* To very bottom */
    left: 0;
    /* width: 530px; - Removed fixed width, now handled by specific classes */
    height: 100%;
    /* Full height */
    background-color: #000000;
    z-index: 5;
    transition: opacity 1s ease;
    opacity: 1;
}

.mask-stage,
.mask-lighting {
    width: 530px;
    max-width: 90vw;
}

.mask-audio {
    width: 650px;
    max-width: 90vw;
}

.video-text-mask.fade-out {
    opacity: 0;
}

/* ========================================
   Legal Pages (Privacy Policy, Terms)
   ======================================== */
.legal-page-header {
    background-color: #1a1a1a;
    padding: 120px 0 60px;
    text-align: center;
}

.legal-page-header h1 {
    color: white;
    margin: 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: var(--text-color);
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-content .last-updated {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-content a {
    color: var(--text-color);
    text-decoration: underline;
}