/* BODY */
body {
    font-family: 'Inter', sans-serif;
    /* font-family: 'Poppins', sans-serif; */
}

/* COLORS */
:root {
    --primary: #f26522;
    --primary-dark: #d9541b;
    --light-bg: #fff7f2;
    --soft-bg: #fff1e8;
    --font-family: "Luckiest Guy";
    --letter-spacing: 0.15rem;
}

/* NAVBAR */
.navbar-brand {
    font-weight: 600;
    color: var(--primary) !important;
    font-family: var(--font-family), serif;
    letter-spacing: var(--letter-spacing);
}

.navbar-brand span {
    display: block;
    font-size: 0.7rem;
    color: #999;
}

/* HEADINGS */
h1, h2, h3, h4 {
    font-family: var(--font-family), serif;
    letter-spacing: var(--letter-spacing);
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600771488491-c22d42a9347d');
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;

    -webkit-mask-image: linear-gradient(
        to left,
        transparent 0%,
        00%,
        transparent 0%,
        70%,
        black 100%
    );

    mask-image: linear-gradient(
        to left,
        transparent 0%,
        0%,
        transparent 0%,
        70%,
        black 100%
    );
}        


/* HERO TITLE EXTRA STYLING */
.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    /* letter-spacing: -0.5px; */
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.7rem;
    }
}

/* donkere overlay (optioneel maar mooi voor leesbaarheid) */
.hero-overlay {
    /* background: var(--light-bg); */
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    padding: 120px 30px;
}


/* PAGEHEADER */
.pageheader {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

.pageheader-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600771488491-c22d42a9347d');
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        00%,
        transparent 0%,
        70%,
        black 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        0%,
        transparent 0%,
        70%,
        black 100%
    );
}        


/* pageheader TITLE EXTRA STYLING */
.pageheader h1 {
    font-size: 3rem;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .pageheader h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .pageheader h1 {
        font-size: 1.7rem;
    }
}

/* donkere overlay (optioneel maar mooi voor leesbaarheid) */
.pageheader-overlay {
    /* background: var(--light-bg); */
    position: absolute;
    inset: 0;
}

.pageheader-content {
    position: relative;
    padding: 10px 30px;
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* FEATURES */
.feature-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* CONTENT */
.content {
    background: var(--soft-bg);
}

.content h2 {
    color: var(--primary);
}

.content a {
    color: var(--primary);
}

/* FOOTER */
footer {
    background: var(--primary);
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

footer li {
    white-space:nowrap;
}        
