/* Vinyl Sharp - Custom Styles */

/* Font Face Declarations */
@font-face {
    font-family: 'Bauhaus';
    src: url('../fonts/BauhausRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bauhaus';
    src: url('../fonts/BauhausBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bauhaus';
    src: url('../fonts/BauhausItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bauhaus';
    src: url('../fonts/BauhausBoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Futura Font Face Declarations */
@font-face {
    font-family: 'Futura';
    src: url('../fonts/FuturaBook.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/FuturaBookItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/FuturaMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/FuturaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/FuturaLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Root Variables */
:root {
    --primary-color: #5E0A11;
    --secondary-color: #ECEBD9;
    --accent-color: #231F20;
    --neutral-color: #C9BDAA;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --transition: all 0.3s ease;

    /* Typography tokens */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;

    /* Spacing tokens */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
}

/* Reset for Full Screen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
}

html, body {
    min-height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

/* Typography */
body {
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif;
    line-height: 1.6;
    color: var(--neutral-color);
    background-color: var(--white);
    font-weight: 400;
    padding-top: 70px; /* Account for fixed navbar */
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bauhaus', 'Arial Black', sans-serif;
    font-weight: 700;
    color: var(--accent-color);
}

h4, h5, h6 {
    color: var(--neutral-color) !important;
}

p, .lead {
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif;
    color: var(--neutral-color);
}

.small, small {
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif;
    font-weight: 300;
}

.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Bauhaus', 'Arial Black', sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.1;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background: rgba(94, 10, 17, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Bauhaus', sans-serif !important;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: rgba(94, 10, 17, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(94, 10, 17, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: 'Bauhaus', sans-serif !important;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: transparent !important;
}

/* Navigation */
.navbar {
    background: rgba(35, 31, 32, 0.2) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Bauhaus', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
    
    .navbar-brand {
        margin-right: auto;
        padding: 8px 0;
    }
    
    /* Ensure navbar is properly positioned on mobile */
    .navbar {
        padding: 12px 0;
        min-height: 70px;
    }
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

.flash-messages .alert {
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section-title {
    font-family: 'Bauhaus', 'Arial Black', sans-serif !important;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif;
    color: var(--neutral-color);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Video Background Sections - White Text Override */
.video-section .section-title,
.video-section .section-subtitle,
.video-section h1,
.video-section h2,
.video-section h3,
.video-section h4,
.video-section h5,
.video-section h6,
.video-section p,
.features-section .section-title,
.features-section .section-subtitle,
.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Additional specific overrides for gallery section */
.gallery-section.video-section h2,
.gallery-section.video-section p,
.gallery-section.video-section .section-title,
.gallery-section.video-section .section-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Force white text for sections with video background - highest priority */
section.video-section h1,
section.video-section h2,
section.video-section h3,
section.video-section h4,
section.video-section h5,
section.video-section h6,
section.video-section p,
section.video-section .section-title,
section.video-section .section-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Specific override for sections with video background */
.features-section.video-section,
.gallery-section.video-section {
    background: transparent !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
    background: transparent;
}

/* Video Background Container */
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    z-index: -10;
    overflow: hidden;
    background-color: #000;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    background-color: #000;
    transition: opacity 0.1s ease-in-out;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Bauhaus', 'Arial Black', sans-serif !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-content h1 .text-primary {
    color: var(--primary-color) !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    color: var(--white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif !important;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.7;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-family: 'Bauhaus', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Bauhaus', 'Arial Black', sans-serif !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero p {
    color: var(--white) !important;
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    font-size: 1.2rem;
}

/* Cards */
.feature-card, .benefit-card, .value-card, .team-card, .testimonial-card {
    background: var(--white);
    border: 1px solid rgba(94, 10, 17, 0.1);
    transition: var(--transition);
    height: 100%;
}

.feature-card p, .benefit-card p, .value-card p, .team-card p, .testimonial-card p {
    color: var(--neutral-color);
}

.feature-card:hover, .benefit-card:hover, .value-card:hover, .team-card:hover, .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 10, 17, 0.15);
}

.feature-icon, .benefit-icon, .value-icon {
    color: var(--primary-color);
}

/* Gallery */
.gallery-section {
    background: transparent !important;
    color: white !important;
}

.gallery-section h2,
.gallery-section p,
.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: white !important;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(94, 10, 17, 0.8), rgba(35, 31, 32, 0.9));
    color: var(--neutral-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    color: var(--neutral-color) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Coming Soon */
.coming-soon-hero {
    min-height: 100vh;
    background-attachment: fixed;
    padding-top: 30px;
}

.coming-soon-hero h1 {
    font-family: 'Bauhaus', 'Arial Black', sans-serif !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coming-soon-hero p {
    color: var(--white) !important;
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.countdown-timer .display-4 {
    font-family: 'Bauhaus', sans-serif;
    font-weight: 700;
}

/* Forms */
.form-control {
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
}

.form-control:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Newsletter Form Specific Styles */
.newsletter-card .form-control {
    background: var(--white);
    border: 2px solid #E9ECEF;
    color: var(--accent-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.newsletter-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(94, 10, 17, 0.25);
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.newsletter-card .form-control::placeholder {
    color: #6C757D;
}

.form-label {
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif;
    font-weight: 500;
    color: var(--neutral-color);
}

/* Contact */
.contact-form-card, .newsletter-card {
    border: 1px solid rgba(94, 10, 17, 0.1);
    transition: var(--transition);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

/* Contact Form Specific Styles */
.contact-form-card .form-control {
    background: var(--white);
    border: 2px solid #E5E7EB;
    color: var(--accent-color);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(94, 10, 17, 0.1);
    background: var(--white);
    outline: none;
}

.contact-form-card .form-control::placeholder {
    color: #9CA3AF;
    font-style: italic;
}

.contact-form-card .form-label {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #7A1C1C);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(94, 10, 17, 0.3);
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 10, 17, 0.4);
    background: linear-gradient(135deg, #7A1C1C, var(--primary-color));
}

/* Form Group Spacing */
.contact-form-card .row.g-3 > .col-md-6,
.contact-form-card .row.g-3 > .col-12 {
    margin-bottom: 20px;
}

/* Form Focus Effects */
.contact-form-card .form-control:focus {
    transform: translateY(-1px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(94, 10, 17, 0.15);
}

/* Form Hover Effects */
.contact-form-card .form-control:hover {
    border-color: rgba(94, 10, 17, 0.3);
    transition: all 0.2s ease;
}

/* Vinyl Record Styles - Premium Product Photography */
.vinyl-container {
    display: grid;
    place-items: center;
    min-height: 45vh;
    width: 100%;
    padding: 1rem 2rem;
    position: relative;
    margin-top: -5rem;
}

.vinyl-record {
    width: min(45vh, 80vw);
    height: min(45vh, 80vw);
    max-width: 500px;
    max-height: 500px;
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: relative;
}

.vinyl-record img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15))
        drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2));
}

/* Ensure consistent spacing on all devices */
@media (min-width: 1400px) {
    .vinyl-container {
        min-height: 50vh;
    }

    .vinyl-record {
        width: min(50vh, 600px);
        height: min(50vh, 600px);
    }
}

@media (max-width: 991px) {
    .vinyl-container {
        min-height: 40vh;
        padding: 1rem 1.5rem;
        margin-top: -2rem;
    }

    .vinyl-record {
        width: min(40vh, 75vw);
        height: min(40vh, 75vw);
    }
}

@media (max-width: 767px) {
    .vinyl-container {
        min-height: 35vh;
        padding: 0.5rem 1rem;
        margin-top: -1.5rem;
    }

    .vinyl-record {
        width: min(35vh, 70vw);
        height: min(35vh, 70vw);
        max-width: 350px;
        max-height: 350px;
    }
}

@media (max-width: 575px) {
    .vinyl-container {
        min-height: 30vh;
        margin-top: -1rem;
    }

    .vinyl-record {
        width: min(30vh, 65vw);
        height: min(30vh, 65vw);
        max-width: 300px;
        max-height: 300px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    display: none !important;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    outline: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    text-decoration: none !important;
}

.whatsapp-float i {
    text-decoration: none !important;
}

/* ========================================
   FOOTER SECTION - Mobile First Architecture
======================================== */

/* Footer Base Styles */
.footer {
    font-size: var(--fs-sm);
}

.footer .footer-heading {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: #fff;
}

.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Footer Lists and Spacing - Fresh Clean Approach */
.footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer .footer-links li {
    text-align: left;
    margin: 0;
    padding: 0;
}

.footer .footer-links li + li {
    margin-top: var(--space-1);
}

/* Quick Links Compact Spacing - Ultimate Tight Layout */
.footer .footer-links-compact {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

.footer .footer-links-compact li {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
}

.footer .footer-links-compact li a {
    margin: 0;
    padding: 2px 0;
    line-height: 1;
    display: block;
    text-decoration: none;
    color: inherit;
}

.footer .footer-links-compact li + li {
    margin-top: 0;
}

.footer .footer-contact p {
    margin-bottom: var(--space-1);
    line-height: 1.6;
}

.footer hr {
    margin: var(--space-3) 0;
    border-color: rgba(255, 255, 255, 0.15);
}

.footer .footer-note {
    font-size: var(--fs-xs);
}

/* Social Icons - Touch Friendly */
.footer .social-links {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer .social-links i,
.footer .x-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Responsive Footer */
@media (min-width: 576px) {
    .footer {
        padding-top: var(--space-4);
        padding-bottom: var(--space-4);
    }
}

@media (min-width: 768px) {
    .footer .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .footer .footer-heading {
        font-size: var(--fs-sm);
    }
}

/* Social Media Icons with Original Colors */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: #ffffff;
}

/* Mobile-specific fixes for navigation and spacing */
@media (max-width: 991.98px) {
    /* Fix hamburger menu visibility on mobile */
    .navbar-toggler {
        display: block !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        background-color: rgba(255, 255, 255, 0.15) !important;
        padding: 6px 10px !important;
        border-radius: 4px !important;
        z-index: 1050 !important;
        position: relative !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 22px !important;
        height: 22px !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
    }
    
    /* Reduce hero section spacing on mobile */
    .hero {
        padding: 80px 0 30px 0 !important;
        min-height: 60vh !important;
    }
    
    .hero .container {
        padding-top: 10px !important;
    }
    
    .hero-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Ensure navbar is properly positioned and visible */
    .navbar {
        z-index: 1050 !important;
        background-color: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .navbar .container {
        justify-content: space-between !important;
    }
    
    .navbar-brand {
        z-index: 1051 !important;
    }
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-links a i {
    transition: color 0.3s ease;
}

.social-facebook {
    background-color: #1877f2 !important;
}

.social-facebook i {
    color: #ffffff !important;
}

.social-facebook:hover {
    background-color: #0d5dbb !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-x {
    background-color: #000000 !important;
}

.social-x i,
.social-x .x-icon {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.social-x:hover {
    background-color: #333333 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.social-instagram i {
    color: #ffffff !important;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f7ad57 0%, #eb7f56 25%, #e14961 50%, #d13f7f 75%, #c82d9d 100%) !important;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.4);
}

.social-linkedin {
    background-color: #0077B5 !important;
}

.social-linkedin i {
    color: #ffffff !important;
}

.social-linkedin:hover {
    background-color: #005885 !important;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

/* Clickable Cards */
.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* FAQ Section Black Text Override */
.faq-section .accordion-button:not(.collapsed) {
    color: #333333 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
}

/* Hero Section Layout Adjustment */
.hero-section .row {
    align-items: center;
    min-height: 100vh;
}

.hero-section .hero-content {
    padding: 2rem 0;
}

/* Ensure proper spacing between elements */
.hero-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Add subtle animation to vinyl on load */
@keyframes vinylIntro {
    from {
        opacity: 0;
        transform: scale(0.9) rotate(-20deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.vinyl-record {
    animation: vinylIntro 0.8s ease-out forwards;
}

/* Ensure vinyl doesn't interfere with other elements */
.vinyl-container {
    pointer-events: none;
}

.vinyl-record {
    pointer-events: auto;
}

/* Add glow effect on hover */
.vinyl-record:hover img {
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15))
        drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2))
        drop-shadow(0 0 40px rgba(201, 189, 170, 0.3));
    transition: filter 0.3s ease;
}

/* ================================================== */
/* GLOBAL TEXT READABILITY FIX FOR LIGHT BACKGROUNDS */
/* ================================================== */

/* Apply dark text to all light background sections */
body,
.bg-light,
.bg-white,
.feature-card,
.benefit-card,
.value-card,
.team-card,
.testimonial-card,
.mission-section,
.about-content,
.content-section,
.page-content,
.content-area,
.story-section,
.values-section,
.accordion-item,
.card-body,
.newsletter-card,
.contact-form-card {
    color: #333 !important;
}

/* ================================================== */
/* WHITE TEXT FOR ALL DARK BACKGROUND SECTIONS */
/* ================================================== */

/* Hero sections and page headers with video background */
.hero-section,
.hero-section *,
.page-hero,
.page-hero *,
.coming-soon-hero,
.coming-soon-hero *,
section[style*="background: transparent"] h1,
section[style*="background: transparent"] p,
section[style*="background: transparent"] .lead {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Apply dark text to all text elements within light sections */
.bg-light p,
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6,
.bg-light span,
.bg-light li,
.bg-light .lead,
.bg-white p,
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-white span,
.bg-white li,
.bg-white .lead,
.feature-card p,
.benefit-card p,
.value-card p,
.team-card p,
.testimonial-card p,
.mission-section p,
.about-content p,
.content-section p,
.page-content p,
.content-area p,
.story-section p,
.values-section p,
.features-section p,
.gallery-section p,
.accordion-item p,
.card-body p,
.newsletter-card p,
.contact-form-card p,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) p {
    color: #333 !important;
}

/* Headers in light sections */
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6,
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.feature-card h1,
.feature-card h2,
.feature-card h3,
.feature-card h4,
.feature-card h5,
.feature-card h6,
.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) h1,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) h2,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) h3,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) h4,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) h5,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) h6 {
    color: #2c2c2c !important;
}

/* Section titles and subtitles on light backgrounds */
section:not(.video-section) .section-title,
section:not(.video-section) .section-subtitle {
    color: #2c2c2c !important;
}

/* Override any conflicting styles for video sections */
section.video-section *:not(.btn):not(.form-control):not(.card) {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Ultra-specific override for gallery section text */
.gallery-section h2.section-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-section p.section-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Force white text for ALL sections with transparent background or video background */
section[style*="background: transparent"],
section[style*="background: transparent"] *:not(.btn):not(.form-control):not(.card):not(.feature-card):not(.value-card):not(.team-card),
.video-background-container ~ * section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section),
.video-background-container ~ * section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section) *:not(.btn):not(.form-control):not(.card):not(.feature-card):not(.value-card):not(.team-card) {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Ultimate white text override for any missed elements */
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section),
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) h1,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) h2,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) h3,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) h4,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) h5,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) h6,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) p,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) span,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) div:not(.card):not(.feature-card):not(.value-card):not(.team-card),
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) .lead,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) .section-title,
section:not(.bg-light):not(.bg-white):not(.mission-section):not(.values-section):not(.team-section):not(.contact-form):not(.newsletter-section) .section-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Specific override for story section and benefits section */
.story-section:not(.bg-light):not(.bg-white),
.story-section:not(.bg-light):not(.bg-white) *:not(.card):not(.btn):not(.form-control),
.benefits-section:not(.bg-light):not(.bg-white),
.benefits-section:not(.bg-light):not(.bg-white) *:not(.card):not(.btn):not(.form-control) {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* FAQ Section - Black text for better readability */
.faq-section .accordion-button,
.faq-section .accordion-body,
.faq-section .accordion-item,
.faq-section .accordion-button *,
.faq-section .accordion-body *,
.faq-section .accordion-item * {
    color: #000000 !important;
    text-shadow: none !important;
}

.faq-section .accordion-button:focus,
.faq-section .accordion-button:focus * {
    color: #000000 !important;
    text-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed),
.faq-section .accordion-button:not(.collapsed) * {
    color: #000000 !important;
    text-shadow: none !important;
}

.faq-section .accordion-button:hover,
.faq-section .accordion-button:hover * {
    color: #000000 !important;
    text-shadow: none !important;
}

/* Form labels and help text on light backgrounds */
.form-label,
.form-text,
.help-text {
    color: #555 !important;
}

/* Contact form inputs on light backgrounds */
.contact-form-card .form-control,
.newsletter-card .form-control {
    color: #333 !important;
    background-color: #fff !important;
    border-color: #ddd !important;
}

.contact-form-card .form-control::placeholder,
.newsletter-card .form-control::placeholder {
    color: #999 !important;
}

/* Lists on light backgrounds */
.bg-light ul li,
.bg-light ol li,
.bg-white ul li,
.bg-white ol li,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) ul li,
section:not(.hero-section):not(.page-hero):not(.coming-soon-hero):not(.cta-section) ol li {
    color: #333 !important;
}

/* ================================================== */
/* PRESERVE DARK BACKGROUND STYLES (DO NOT CHANGE) */
/* ================================================== */

/* Keep white/light text on dark backgrounds */
.navbar-dark,
.navbar-dark *,
.hero-section,
.hero-section *,
.page-hero,
.page-hero *,
.coming-soon-hero,
.coming-soon-hero *,
.cta-section,
.cta-section *,
.gallery-overlay,
.gallery-overlay *,
.bg-dark,
.bg-dark *,
.bg-primary,
.bg-primary *,
footer.bg-dark,
footer.bg-dark * {
    /* Preserve existing styles */
}

/* Ensure hero text remains visible */
.hero-section h1,
.hero-section p,
.page-hero h1,
.page-hero p,
.coming-soon-hero h1,
.coming-soon-hero p {
    /* Keep existing white text with shadows */
}

/* CTA section text preservation */
.cta-section h2.text-neutral,
.cta-section p.text-neutral {
    color: var(--neutral-color) !important;
}

/* Features Section Transparency */
.features-section {
    background: transparent !important;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-info-card {
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 10, 17, 0.1);
}

.contact-icon {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section h2 {
    color: var(--neutral-color) !important;
    font-family: 'Bauhaus', 'Arial Black', sans-serif !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    color: var(--neutral-color) !important;
    font-family: 'Futura', 'Inter', 'Trebuchet MS', Arial, sans-serif !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
}

.footer h5 {
    color: var(--neutral-color) !important;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--white) !important;
}

.footer a {
    color: var(--white) !important;
}

.footer li {
    color: var(--white) !important;
}

.footer .text-primary {
    color: var(--primary-color) !important;
}

.text-neutral {
    color: var(--neutral-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobile viewport fixes to remove white bands */
    html, body {
        height: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        min-height: 100%;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
    }

    body {
        padding-top: 0;
    }

    .video-background-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        z-index: -10;
        overflow: hidden;
    }

    /* Mobile-optimized video background */
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 120%;
        min-height: 120%;
        width: auto;
        height: auto;
        transform: translateX(-50%) translateY(-50%);
        object-fit: cover;
        object-position: center center;
        background-color: #000;
        transition: opacity 0.05s ease-in-out;
        will-change: transform, opacity;
        backface-visibility: hidden;
    }

    /* Enhanced mobile viewport support */
    body.mobile-viewport {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        overflow-x: hidden;
    }

    /* Adjust navbar for safe areas */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        padding-top: env(safe-area-inset-top, 0);
    }

    /* Adjust content spacing since body has no padding-top */
    main > *:first-child,
    .hero-section:first-child {
        padding-top: calc(70px + env(safe-area-inset-top, 0));
    }

    .hero-section {
        padding: 100px 0;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .page-hero {
        padding: 120px 0 40px;
        min-height: auto;
    }

    .display-2 {
        font-size: 2.5rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .countdown-timer .d-flex {
        justify-content: center !important;
    }

    .countdown-timer .display-4 {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .flash-messages {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    /* Mobile page hero specific fixes */
    .page-hero .display-4,
    .page-hero .display-3 {
        font-size: 2rem;
        margin-bottom: 0.5rem !important;
    }

    .page-hero .lead {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .page-hero .container {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Ensure no content is cut by navbar */
    .coming-soon-hero {
        padding-top: 120px !important;
    }

    /* Override any py-5 classes on page heroes for mobile */
    .page-hero.py-5 {
        padding: 120px 0 40px !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .display-2 {
        font-size: 2rem;
    }

    .display-3 {
        font-size: 1.8rem;
    }

    .countdown-timer .display-4 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* Mobile Section Spacing Optimization */
@media (max-width: 768px) {
    /* Reduce excessive section padding on mobile */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Hero section adjustments - Much more compact for mobile */
    .hero-section {
        padding-top: 80px !important;
        padding-bottom: 1rem !important;
        min-height: 70vh; /* Reduced from 85vh to 70vh */
    }
    
    /* Override the specific .row rule that forces 100vh */
    .hero-section .row {
        min-height: auto !important;
    }
    
    /* Gallery section much tighter spacing */
    .gallery-section {
        padding-top: 1rem !important; /* Reduced from 2rem to 1rem */
        padding-bottom: 1rem !important; /* Reduced from 2rem to 1rem */
    }
    
    /* CTA section more compact */
    .cta-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Reduce margin specifically between hero and gallery sections */
    .hero-section + .gallery-section {
        margin-top: -1rem; /* Targeted negative margin for hero to gallery transition */
    }
    
    /* Hero content adjustments */
    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Gallery section title sizing */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer, .flash-messages {
        display: none !important;
    }

    .hero-section {
        background: none !important;
        color: black !important;
    }

    .page-hero {
        background: none !important;
        color: black !important;
    }
}