/* ===== COLOR PALETTE ===== */
:root {
    /* Sample 4's warm amber/gold palette */
    --warm-amber: #D4A574;
    --deep-gold: #B8860B;
    --soft-cream: #F5F5DC;
    --rich-brown: #3E2723;

    /* Sample 1's dark gradient colors */
    --rich-navy: #1A1F3A;
    --dark-blue: #2A2F4A;

    /* Neutral colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;

    /* Overlays */
    --overlay-light: rgba(212, 165, 116, 0.1);
    --overlay-medium: rgba(212, 165, 116, 0.2);
    --overlay-dark: rgba(30, 20, 15, 0.6);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
}

/* ===== MAIN CONTAINER ===== */
.container {
    display: flex;
    min-height: 100vh;
}

/* ===== LEFT SECTION: CATEGORY BOXES ===== */
.categories-section {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

/* Diagonal split background - SAVED FOR FUTURE USE
.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/dance-floor-blue-uplighting.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 0;
}

.categories-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/dance-floor-green-uplighting.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 1;
}
*/

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/gastropub-field-setup-bw.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.categories-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.category-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    height: 100%;
}

.category-box {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    /* Glassmorphism effect */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.category-box:hover::before {
    transform: scale(1.05);
}

.category-box:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 0 1px rgba(212, 165, 116, 0.4),
        0 0 30px rgba(212, 165, 116, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Box overlays for image readability */
.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.4) 0%, rgba(15, 10, 8, 0.5) 100%);
    pointer-events: none;
    transition: background 0.4s ease;
    z-index: 1;
}

.category-box:hover .box-overlay {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.3) 0%, rgba(15, 10, 8, 0.45) 100%);
}

/* Box content styling */
.box-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.box-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warm-amber);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.box-content p {
    font-size: 0.95rem;
    color: var(--soft-cream);
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Individual box background images */
.box-services::before {
    background-image: url('images/dance-floor-red-uplighting.jpg');
}

.box-equipment::before {
    background-image: url('images/yamaha-speakers-subwoofer.jpeg');
}

.box-process::before {
    background-image: url('images/outdoor-dance-floor-wide.jpeg');
}

.box-why::before {
    background-image: url('images/lighting-four-fixtures.jpeg');
}

/* ===== RIGHT SECTION: BRANDING & CTAs ===== */
.branding-section {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.branding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/dance-floor-orange-uplighting.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.branding-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.branding-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: center;
}

/* Brand name header */
.brand-name {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Logo styling */
.logo-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.logo-image {
    width: 180px;
    height: auto;
    opacity: 0.6;
    filter: brightness(1.2) contrast(0.9);
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

/* Tagline styling */
.tagline {
    margin-bottom: 30px;
    padding: 0 1rem;
}

.tagline p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--soft-cream);
    opacity: 0.9;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--warm-amber) 0%, var(--deep-gold) 100%);
    color: var(--rich-brown);
    border: none;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--warm-amber);
    border: 2px solid var(--warm-amber);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--warm-amber);
    color: var(--rich-brown);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .categories-section,
    .branding-section {
        flex: 1 1 auto;
        padding: 2rem;
    }

    .category-grid {
        max-width: 500px;
    }

    .branding-content {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 1.5rem;
    }

    .category-grid {
        gap: 1rem;
        max-width: 400px;
    }

    .box-content h2 {
        font-size: 1.4rem;
    }

    .box-content p {
        font-size: 0.85rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .tagline p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .category-grid {
        gap: 0.75rem;
        max-width: 300px;
    }

    .category-box {
        padding: 1rem;
    }

    .box-content h2 {
        font-size: 1.2rem;
    }

    .box-content p {
        font-size: 0.75rem;
    }

    .logo-image {
        width: 80px;
    }

    .brand-name {
        font-size: 1.8rem;
    }
}
