/* ==========================================================================
   RoasTronix V2 - Stronghold Brand Page
   ========================================================================== */

.stronghold-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.stronghold-hero {
    padding: 60px 40px 50px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(160, 28, 46, 0.15) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stronghold-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 28, 46, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Hero with background image */
.stronghold-hero--has-image {
    padding: 0;
    height: 400px;
    background: none;
}

.stronghold-hero--has-image::before {
    display: none;
}

.stronghold-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stronghold-hero--has-image .stronghold-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.4) 100%);
    padding: 80px 60px 50px;
}

.stronghold-hero .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(160, 28, 46, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stronghold-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.stronghold-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   About / Description
   -------------------------------------------------------------------------- */

.stronghold-about {
    padding: 100px 40px;
    background: var(--bg-dark);
}

.stronghold-about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.stronghold-about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 25px;
}

.stronghold-about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stronghold-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stronghold-stat {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
}

.stronghold-stat:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stronghold-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.stronghold-stat span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Products Grid
   -------------------------------------------------------------------------- */

.stronghold-products {
    padding: 100px 40px;
    background: var(--bg-dark-lighter);
}

.stronghold-products h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
}

.stronghold-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stronghold-products-grid-small {
    max-width: 420px;
}

.stronghold-product-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.stronghold-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(160, 28, 46, 0.2);
}

.stronghold-product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.stronghold-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.stronghold-product-card:hover .stronghold-product-image img {
    transform: scale(1.1);
}

.stronghold-product-info {
    padding: 25px;
}

.stronghold-product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stronghold-product-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.stronghold-product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.stronghold-spec-pill {
    display: flex;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(160, 28, 46, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
}

.stronghold-spec-pill .spec-label {
    color: var(--text-secondary);
}

.stronghold-spec-pill .spec-value {
    color: var(--primary-gold);
    font-weight: 600;
}

.stronghold-product-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
    display: inline-flex;
    gap: 4px;
}

.stronghold-product-card:hover .stronghold-product-link {
    gap: 8px;
}

.stronghold-accessories {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border-dark);
}

.stronghold-accessories h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Specs Comparison Table
   -------------------------------------------------------------------------- */

.stronghold-specs {
    padding: 100px 40px;
    background: var(--bg-dark);
}

/* Specs table styles moved to main.css (shared with iRhea) */

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .stronghold-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stronghold-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stronghold-products-grid-small {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .stronghold-hero {
        padding: 40px 25px;
    }

    .stronghold-about {
        padding: 60px 20px;
    }

    .stronghold-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stronghold-products {
        padding: 60px 20px;
    }

    .stronghold-products-grid {
        grid-template-columns: 1fr;
    }

    .stronghold-specs {
        padding: 60px 20px;
    }

    .stronghold-stat {
        padding: 20px 15px;
    }

    .stronghold-stat strong {
        font-size: 1.4rem;
    }
}
