/* ==========================================
   EIGHTLEGGED - Promotion Theme
   Minimalist Black & White Editorial
   ========================================== */

.theme-promotion {
    --theme-black: #000;
    --theme-white: #fff;
    --theme-gray: #666;
    --theme-light: #f5f5f5;
    --theme-accent: #f97316;
}

.theme-promotion .site-header {
    background: var(--theme-black);
    border-bottom: none;
}

.theme-promotion .site-header .logo-text,
.theme-promotion .site-header .nav-links a {
    color: var(--theme-white);
}

.theme-promotion .site-header .nav-links a:hover {
    color: var(--theme-accent);
}

.theme-promotion .site-main {
    background: var(--theme-black);
}

/* Hero - Editorial Style */
.promotion-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/backgrounds/pexels-therato-1933239.jpg') center/cover no-repeat;
    padding: var(--space-16) var(--space-6);
    position: relative;
}

.promotion-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.promotion-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    text-align: center;
}

.promotion-hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--theme-white);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-8);
}

.promotion-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--theme-gray);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
}

/* Section Layout */
.promotion-section {
    padding: var(--space-24) var(--space-6);
    background: var(--theme-black);
}

.promotion-section-white {
    background: var(--theme-white);
    color: var(--theme-black);
}

.promotion-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Editorial Typography */
.promotion-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: var(--space-8);
}

.promotion-headline-white {
    color: var(--theme-white);
}

.promotion-headline-black {
    color: var(--theme-black);
}

.promotion-body-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--theme-gray);
    max-width: 700px;
}

/* Navigation - Minimal */
.promotion-nav {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-4);
}

.promotion-nav-item {
    color: var(--theme-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: var(--space-4);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--transition-fast);
}

.promotion-nav-item:hover,
.promotion-nav-item.active {
    color: var(--theme-white);
    border-bottom-color: var(--theme-white);
}

/* Service Grid - Editorial */
.promotion-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.promotion-service-card {
    background: var(--theme-black);
    padding: var(--space-12);
    transition: background var(--transition-fast);
}

.promotion-service-card:hover {
    background: #111;
}

.promotion-service-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: var(--space-4);
}

.promotion-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-white);
    margin-bottom: var(--space-4);
}

.promotion-service-desc {
    color: var(--theme-gray);
    line-height: 1.6;
}

/* Stats - Bold Numbers */
.promotion-stats {
    display: flex;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
    padding: var(--space-16) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promotion-stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.promotion-stat-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--theme-white);
    line-height: 1;
}

.promotion-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--theme-gray);
    margin-top: var(--space-2);
}

/* Quote/Callout */
.promotion-callout {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--theme-white);
    line-height: 1.4;
    border-left: 4px solid var(--theme-accent);
    padding-left: var(--space-8);
    margin: var(--space-16) 0;
}

/* Feature List - Minimal */
.promotion-features {
    display: flex;
    flex-direction: column;
}

.promotion-feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--theme-white);
    transition: all var(--transition-fast);
}

.promotion-feature-item:hover {
    padding-left: var(--space-4);
}

.promotion-feature-title {
    font-size: 1.25rem;
    font-weight: 500;
}

.promotion-feature-arrow {
    font-size: 1.5rem;
    color: var(--theme-gray);
    transition: transform var(--transition-fast);
}

.promotion-feature-item:hover .promotion-feature-arrow {
    transform: translateX(8px);
    color: var(--theme-accent);
}

/* Buttons - Minimal */
.theme-promotion .btn-primary {
    background: var(--theme-white);
    color: var(--theme-black);
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.theme-promotion .btn-primary:hover {
    background: var(--theme-accent);
    color: var(--theme-white);
    transform: none;
}

.theme-promotion .btn-secondary {
    border-color: var(--theme-white);
    color: var(--theme-white);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.theme-promotion .btn-secondary:hover {
    background: var(--theme-white);
    color: var(--theme-black);
}

/* Footer - Minimal */
.theme-promotion .site-footer {
    background: var(--theme-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-promotion .footer-logo .highlight {
    color: var(--theme-accent);
}
