:root {
    --brand-color: rgb(190, 80, 55);
}

/* HERO */
.hero {
    height: 100vh;
    background: url('/images/hero.png') center/cover no-repeat;
    position: relative;
    transition: opacity 0.4s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;  /* vertical centering */
    align-items: center;      /* horizontal centering */

    text-align: center;
    color: white;
}
.hero-overlay h1 {
    font-weight: 200;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
}

.hero-overlay h2 {
    font-weight: 300;
    font-size: clamp(1.1rem, 2.2vw, 1.8rem);
}
.hero-divider {
    width: 220px;
    height: 3px !important;
    border: none;

    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,1) 25%,
        rgba(255,255,255,1) 75%,
        transparent 100%
    );
}

/* overlay layer */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* adjust darkness here */
}

/* HEADER TRANSITION */
.site-header.scrolled {
    background-color: var(--brand-color)!important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
/* END HERO */

.site-header {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* minimal pages */
.site-header.minimal {
    background-color: var(--brand-color)!important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.site-footer {
    background-color: var(--brand-color);
}

.content {
    padding: 0 2.5rem;
    background: rgba(255,255,255,1);
}

.logo {
    height: 50px;   /* adjust: 24–40px typical */
    width: auto;
}

.img-responsive {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.content-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.5);
    margin: 2.5rem auto;
    width: 100%;
}

ul {
    display: inline-block;
    text-align: left;
}

.app-store-badge {
    width: 180px;
    max-width: 100%;
    height: auto;
}

/* Language switcher */

.language-switcher {
    opacity: 0.65;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.language-switcher a {
    padding: 2px 6px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
}

.language-switcher:hover {
    opacity: 1;
}
/* End Language switcher */

