﻿/* =========================
   Home - Index
   (Index view)
   ========================= */

/* HERO */
.botc-hero {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background-image: url("/img/background.png");
    background-size: cover;
    background-position: center;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.75rem;
}

    .botc-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(245,237,255,.9));
    }

.botc-hero-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    color: var(--botc-text-main);
}

.botc-hero-title {
    font-family: 'Nosifer', cursive;
    color: #8b0000;
    font-size: clamp(1.6rem, 2.1vw, 2rem);
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
    text-transform: none;
    font-weight: 400;
}

    .botc-hero-title span {
        display: block;
        font-family: 'Nosifer', cursive;
        font-size: 0.95em;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--botc-gold-soft);
        margin-top: 0.3rem;
    }

@media (min-width: 992px) {
    .botc-hero-title {
        white-space: nowrap;
    }
}

.botc-hero-tagline {
    font-size: 1rem;
    color: var(--botc-text-muted);
    margin-bottom: 1.3rem;
}



/* ABOUT */
.botc-about p {
    color: var(--botc-text-muted);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* INDEX: UNDER CONSTRUCTION WRAPPER */
.botc-under-construction {
    text-align: center;
    background-image: linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,237,255,.98));
    border-radius: 1rem;
    border: 1px solid var(--botc-border-soft);
    box-shadow: 0 10px 30px rgba(37, 25, 70, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

/* Новият wrapper от вю-то */
.botc-uc-image-wrapper {
    display: flex;
    justify-content: center;
}

/* Social icons (само тук, не в Contacts) */
.botc-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

    .botc-social-icons img {
        width: 48px;
        height: 48px;
        opacity: 0.85;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

        .botc-social-icons img:hover {
            opacity: 1;
            transform: scale(1.08);
        }

