/* ============================================================
   BRAVICASTO Homepage Styles
   ============================================================ */

/* === Hero Banner === */
.bc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bc-forest);
}

.bc-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    opacity: 0.45;
    filter: brightness(0.85);
    transition: transform 0.1s linear;
}

.bc-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--bc-gradient-hero);
    opacity: 0.7;
}

.bc-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.bc-hero__label {
    font-family: var(--bc-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--bc-copper);
    margin-bottom: 1rem;
    display: inline-block;
}

.bc-hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--bc-white);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.bc-hero__brand {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    display: block;
}

.bc-hero__desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.bc-hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll Hint */
.bc-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.bc-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: bc-pulse 2s infinite;
}
@keyframes bc-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* === Featured Products === */
.bc-featured {
    padding: var(--bc-section-pad) 0;
    background: var(--bc-white);
}

.bc-featured__header {
    text-align: center;
    margin-bottom: 3rem;
}
.bc-featured__header h2 { margin-bottom: 0.5rem; }
.bc-featured__header p { color: var(--bc-text-light); max-width: 500px; margin: 0 auto; }

.bc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product Card */
.bc-product-card {
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
    overflow: hidden;
    transition: transform 0.25s var(--bc-ease), box-shadow 0.25s var(--bc-ease);
}
.bc-product-card:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.bc-product-card__img {
    position: relative;
    aspect-ratio: 1;
    background: var(--bc-mist);
    overflow: hidden;
}
.bc-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--bc-ease);
}
.bc-product-card:hover .bc-product-card__img img { transform: scale(1.05); }

.bc-product-card__body { padding: 20px; }
.bc-product-card__title {
    font-family: var(--bc-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bc-gunmetal);
    margin-bottom: 4px;
    line-height: 1.3;
}

.bc-product-card__price {
    font-family: var(--bc-font-price);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bc-copper);
    margin-bottom: 12px;
}

.bc-product-card__btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.8125rem;
}

/* === Category Grid === */
.bc-categories {
    padding: var(--bc-section-pad) 0;
    background: var(--bc-forest);
}

.bc-categories__header {
    text-align: center;
    margin-bottom: 3rem;
}
.bc-categories__header h2 { color: var(--bc-white); }
.bc-categories__header p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }

.bc-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bc-category-card {
    position: relative;
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    text-decoration: none;
    display: block;
}
.bc-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--bc-ease);
}
.bc-category-card:hover img { transform: scale(1.08); }

.bc-category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,59,43,0.85) 0%, rgba(27,59,43,0.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.bc-category-card__name {
    font-family: var(--bc-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bc-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Brand Story === */
.bc-story {
    padding: var(--bc-section-pad) 0;
    background: var(--bc-white);
}

.bc-story__inner {
    display: flex;
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
}

.bc-story__text { flex: 1; }
.bc-story__text h2 { margin-bottom: 1.5rem; }
.bc-story__text p { color: var(--bc-text-light); margin-bottom: 1rem; font-size: 1.0625rem; line-height: 1.8; }
.bc-story__text h2 em { font-style: normal; color: var(--bc-copper); }

.bc-story__image {
    flex: 1;
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.bc-story__image img { width: 100%; display: block; }

/* === Trust Bar === */
.bc-trust {
    padding: 60px 0;
    background: var(--bc-mist);
    border-top: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
}

.bc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.bc-trust-item { text-align: center; }
.bc-trust-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bc-gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.bc-trust-item__icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2; }

.bc-trust-item__label {
    font-family: var(--bc-font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bc-gunmetal);
    margin-bottom: 4px;
}
.bc-trust-item__desc { font-size: 0.8125rem; color: var(--bc-text-muted); }

/* === Responsive === */
@media (max-width: 1024px) {
    .bc-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .bc-story__inner { flex-direction: column; }
    .bc-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .bc-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bc-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .bc-hero__title { font-size: clamp(2.25rem, 6vw, 3.5rem); }
}
@media (max-width: 480px) {
    .bc-categories-grid { grid-template-columns: 1fr; }
    .bc-product-card__body { padding: 14px; }
}
