/**
 * Blue 7 Simulator / BlueTriumph Brand Styles
 * Additional styles for the golf simulator landing pages
 */

/* ========================================
   BRAND COLOR PRESETS
======================================== */

/* B2B Blue 7 Colors */
.theme-blue7 {
    --color-primary: #D0A565;
    --color-secondary: #000033;
    --color-dark: #000033;
}

/* B2C BlueTriumph Colors */
.theme-bluetriumph {
    --color-primary: #D0A565;
    --color-secondary: #000033;
    --color-dark: #000033;
}

/* ========================================
   HERO FULLSCREEN
======================================== */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 51, 0.95) 0%, rgba(10, 10, 70, 0.9) 100%);
    z-index: 1;
}

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
}

.hero-fullscreen .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.hero-fullscreen .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
}

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

.hero-layout-center .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-layout-center .hero-features {
    justify-content: center;
}

.hero-layout-center .hero-cta {
    justify-content: center;
}

/* ========================================
   FEATURE WITH IMAGE (About style)
======================================== */
.feature-with-image {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.feature-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    width: 100%;
}

.feature-content h2 {
    margin-bottom: 24px;
}

.feature-content p {
    color: var(--color-gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.feature-content .btn {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .feature-with-image {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ========================================
   CONTAINER VARIANTS
======================================== */
.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1400px;
}

/* ========================================
   GOLD ACCENT TEXT
======================================== */
.text-gold {
    color: #D0A565;
}

.bg-gold {
    background-color: #D0A565;
}

/* ========================================
   NAVY DARK BACKGROUNDS
======================================== */
.bg-navy {
    background-color: #000033;
    color: #fff;
}

.bg-navy-light {
    background-color: #1B263B;
    color: #fff;
}

/* ========================================
   ENHANCED SECTION BADGE
======================================== */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(208, 165, 101, 0.15);
    color: #D0A565;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.bg-dark .section-badge,
.bg-gradient .section-badge {
    background: rgba(208, 165, 101, 0.2);
}

/* ========================================
   CALCULATOR NAVY THEME
======================================== */
.calculator-result {
    background: #000033 !important;
}

.calculator-result-value {
    color: #D0A565 !important;
}

.calculator-result-label,
.calculator-result-note {
    color: rgba(255,255,255,0.7) !important;
}

.calculator-slider::-webkit-slider-thumb {
    background: #000033;
    border: 2px solid #000033;
}

.calculator-slider::-moz-range-thumb {
    background: #000033;
    border: 2px solid #000033;
}

.calculator-value {
    color: #000033;
}

/* ========================================
   PROCESS GOLD NUMBERS
======================================== */
.process-step-number {
    background: rgba(255, 255, 255, 0.25);
}

.process-step-number span {
    color: #ffffff;
}

/* ========================================
   IMPACT GOLD ICONS
======================================== */
.impact-benefit-icon svg {
    color: #D0A565;
}

.impact-card-content li svg {
    color: #D0A565;
}

/* ========================================
   COMPARISON GOLD ARROWS
======================================== */
.comparison-arrow svg {
    color: #D0A565;
}

/* ========================================
   VIDEO PLAY BUTTON GOLD
======================================== */
.video-play-btn {
    background: #D0A565;
}

.video-play-btn:hover {
    background: #B08A50;
}

/* ========================================
   CTA GRADIENT WITH GOLD
======================================== */
.bg-gradient {
    background: linear-gradient(135deg, #000033 0%, #1B263B 50%, #D0A565 150%);
}

/* ========================================
   BUTTON GOLD VARIANT
======================================== */
.btn-gold {
    background: linear-gradient(135deg, #D0A565 0%, #B08A50 100%);
    color: #000033;
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #D4B55A 0%, #D0A565 100%);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE FIXES
======================================== */
@media (max-width: 1024px) {
    .hero-fullscreen {
        min-height: auto;
        padding: 120px 0 80px;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen .hero-title {
        font-size: 2rem;
    }

    .hero-fullscreen .hero-subtitle {
        font-size: 1rem;
    }
}
