/* Bourbon City Cleaning - Main Styles */

/* ===== CSS Variables ===== */
:root {
    --color-gold: #C5A35B;
    --color-gold-light: #E6C77A;
    --color-gold-dark: #8F7A3A;
    --color-dark-bg: #0a0a0a;
    --color-dark-secondary: #1a1a1a;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text-light: #f5f5f5;
    --color-text-gray: #cccccc;
    
    --glass-bg: rgba(197, 163, 91, 0.05);
    --glass-border: rgba(197, 163, 91, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.2);
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition-standard: all 0.3s ease;
    --border-radius: 12px;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-dark-bg);
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/assets/images/logo/BCC_Shield_Background.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.page-body {
    background-color: var(--color-dark-bg);
    min-height: 100vh;
    position: relative;
}

/* Main content needs to be above background */
.main-content {
    position: relative;
    z-index: 1;
}

/* ===== Award Banner ===== */
.award-banner {
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
    padding: 12px 20px;
    text-align: center;
    border-bottom: 2px solid var(--color-gold);
    animation: bannerGlow 3s ease-in-out infinite;
}

.banner-text {
    margin: 0;
    font-size: 1.5rem;
    color: #000000;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(197, 163, 91, 0.6);
}

@keyframes bannerGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(197, 163, 91, 0.4),
                    inset 0 0 20px rgba(197, 163, 91, 0.1);
        text-shadow: 0 0 10px rgba(197, 163, 91, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(197, 163, 91, 0.8),
                    inset 0 0 40px rgba(197, 163, 91, 0.3);
        text-shadow: 0 0 20px rgba(197, 163, 91, 1);
    }
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* ===== Landing Page ===== */
.landing-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

#wipe-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.landing-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-container-animation {
    position: relative;
    display: inline-block;
}

.landing-logo {
    max-width: 420px;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
}

.tagline-reveal-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.tagline-word {
    font-size: 4rem;
    color: var(--color-gold);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateX(100px);
}

/* ===== Main Content ===== */
.main-content {
    display: none;
}

.main-content.active {
    display: block;
}

/* ===== Header & Navigation ===== */
.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    overflow: visible;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}
}

.company-name {
    color: var(--color-gold);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-container a .company-name {
    color: var(--color-gold) !important;
    font-weight: 800 !important;
}

.tagline-small {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 10000;
    touch-action: manipulation;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-standard);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
    background: rgba(255, 215, 0, 0.1);
}

.nav-link.contact-btn {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.nav-link.contact-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* ===== Logo Background ===== */
.logo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../../assets/images/logo/BCC_Shield_New.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.hero-title {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.credential-badge i {
    color: var(--color-gold);
    font-size: 1.5rem;
}

.credential-badge span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-secondary) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* ===== Sections ===== */
.about-section,
.services-overview,
.gallery-section,
.cta-section {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-text.lead-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--color-text-light);
}

.section-text.highlight {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: var(--transition-standard);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-gray);
    margin-bottom: 1.5rem;
}

/* ===== Buttons ===== */
.btn-learn-more,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-standard);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.btn-learn-more {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.btn-learn-more:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

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

/* ===== Gallery / Swiper ===== */
.swiper {
    width: 100%;
    padding: 2rem 0;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.slide-caption {
    margin-top: 1rem;
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 500;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-gold);
}

.swiper-pagination-bullet-active {
    background: var(--color-gold);
}

/* ===== CTA Box ===== */
.cta-box {
    text-align: center;
    padding: 4rem 3rem;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    margin-bottom: 2rem;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-black);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-links li {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: var(--color-gold);
}

.footer-contact a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-contact a:hover {
    color: var(--color-gold-light);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: var(--transition-standard);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--color-gold);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }
    
    .main-nav {
        position: relative;
    }
    
    .nav-list {
        position: fixed !important;
        top: 120px !important;
        right: 20px !important;
        left: auto !important;
        background: rgba(10, 10, 10, 0.98) !important;
        flex-direction: column !important;
        padding: 1rem !important;
        border-radius: 8px !important;
        display: none !important;
        min-width: 200px !important;
        max-width: 280px !important;
        width: auto !important;
        z-index: 9999 !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
        border: 1px solid var(--color-gold) !important;
        gap: 0 !important;
    }
    
    .nav-list li {
        display: block !important;
        width: 100% !important;
    }
    
    .nav-list.active {
        display: flex !important;
    }
    
    .nav-link {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Make "The 100 Proof Clean" text gold in mobile menu */
    .nav-list li:nth-child(3) .nav-link {
        color: var(--color-gold) !important;
    }
    
    .hero-title,
    .page-title {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .swiper-slide img {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .page-title {
        font-size: 1.5rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .tagline-small {
        font-size: 0.75rem;
    }
    
    .tagline-word {
        font-size: 2.5rem;
    }
    
    .landing-logo {
        max-width: 90vw;
    }
}
