/*
 * BlueCoat French Bulldogs — Global stylesheet
 * Theme: blue-coat-french-bulldog-theme
 * ------------------------------------------------------------------
 * Reset, typography, buttons, tags, reveal animations, layout helpers. Loaded on EVERY page.
 */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: #0a0a0a;
}

html::-webkit-scrollbar-thumb {
    background: #1B73B8;
    border-radius: 3px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0a0a0a;
    color: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   GLOBAL REUSABLE STYLES
   ============================================================ */
.bc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.bc-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.bc-bg-white {
    background: #ffffff;
    color: #0a0a0a;
}

.bc-bg-offwhite {
    background: #f5f7fa;
    color: #0a0a0a;
}

.bc-bg-dark {
    background: #0a0a0a;
    color: #fff;
}

.bc-bg-blue {
    background: #1B73B8;
    color: #fff;
}

.bc-bg-gradient {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1b2e 100%);
    color: #fff;
}

/* --- Section Header --- */
.bc-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #1B73B8;
    margin-bottom: 20px;
}

.bc-section-label svg {
    width: 20px;
    height: 20px;
}

.bc-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #0a0a0a;
}

.bc-section-title em {
    font-style: italic;
    color: #1B73B8;
}

/* Dark background sections: white titles */
.bc-bg-dark .bc-section-title,
.bc-bg-gradient .bc-section-title {
    color: #ffffff;
}

.bc-bg-dark .bc-section-title em,
.bc-bg-gradient .bc-section-title em {
    color: #4da3e8;
}

.bc-bg-blue .bc-section-title {
    color: #fff;
}

.bc-bg-blue .bc-section-title em {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.bc-section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #777;
    max-width: 560px;
}

.bc-bg-dark .bc-section-desc,
.bc-bg-gradient .bc-section-desc {
    color: rgba(255, 255, 255, 0.55);
}

.bc-bg-blue .bc-section-desc {
    color: rgba(255, 255, 255, 0.75);
}

.bc-section-header {
    margin-bottom: 70px;
}

.bc-section-header.center {
    text-align: center;
}

.bc-section-header.center .bc-section-desc {
    margin: 0 auto;
}

/* --- Buttons --- */
.bc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.bc-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}

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

.bc-btn-primary {
    background: #1B73B8;
    color: #fff;
    box-shadow: 0 8px 30px rgba(27, 115, 184, 0.25);
}

.bc-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.bc-btn-primary:hover::before {
    left: 100%;
}

.bc-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(27, 115, 184, 0.4);
    background: #1e80cc;
}

.bc-btn-outline-dark {
    background: transparent;
    color: #0a0a0a;
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.bc-btn-outline-dark:hover {
    border-color: #1B73B8;
    color: #1B73B8;
    background: rgba(27, 115, 184, 0.04);
    transform: translateY(-2px);
}

.bc-btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.bc-btn-outline-light:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.bc-btn-dark {
    background: #0a0a0a;
    color: #fff;
}

.bc-btn-dark:hover {
    background: #1B73B8;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(27, 115, 184, 0.3);
}

.bc-btn-white {
    background: #fff;
    color: #0a0a0a;
}

.bc-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Tags */
.bc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bc-tag-blue {
    background: rgba(27, 115, 184, 0.1);
    color: #1B73B8;
}

.bc-tag-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.bc-tag-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Reveal */
.bc-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.bc-reveal-d1 {
    transition-delay: 0.1s;
}

.bc-reveal-d2 {
    transition-delay: 0.2s;
}

.bc-reveal-d3 {
    transition-delay: 0.3s;
}

.bc-reveal-d4 {
    transition-delay: 0.4s;
}

/* ============================================================
   GLOBAL RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .bc-container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .bc-container {
        padding: 0 30px;
    }

    .bc-section {
        padding: 100px 0;
    }
}

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

    .bc-section {
        padding: 80px 0;
    }
}

/* Main content wrapper (added for WordPress). */
.bc-main {
    display: block;
    position: relative;
}
