/* =========================================
   GLOBAL STYLING
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    background: #F7F4EE;
    color: #2C3D2A;
    margin: 0;
    padding: 0;
}


/* =========================================
   CONTENT WIDTH
========================================= */

.content-width {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   TEXT CONTENT WIDTH
========================================= */

.text-content {
    max-width: 700px;
}


/* =========================================
   CONTENT SECTION SPACING
========================================= */

.content-section {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* =========================================
   FIXED HEADER
========================================= */

#t4-header {
    position: fixed !important;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 99999;

    background: rgba(4, 20, 14, 0.10) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding-top: 10px;
    padding-bottom: 10px;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease,
        backdrop-filter 0.35s ease;
}


/* =========================================
   HEADER AFTER SCROLL
========================================= */

#t4-header.scrolled {
    background: rgba(4, 20, 14, 0.82) !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 2px 12px rgba(0,0,0,0.18);

    padding-top: 6px;
    padding-bottom: 6px;
}


/* =========================================
   REMOVE HEADER BORDERS / LINES
========================================= */

#t4-header,
.t4-header,
.header,
.navbar,
.navbar::after,
#t4-header::after {
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}


/* =========================================
   MENU LINKS
========================================= */

#t4-header .nav-link,
#t4-header .navbar-nav > li > a {
    color: #F5F1E8 !important;

    transition: color 0.3s ease;
}


/* =========================================
   MENU HOVER EFFECT
========================================= */

#t4-header .nav-link:hover,
#t4-header .navbar-nav > li > a:hover {
    color: #D9C7A3 !important;
}


/* =========================================
   ACTIVE MENU ITEM
========================================= */

#t4-header .nav-link.active,
#t4-header .navbar-nav > .active > a {
    color: #D9C7A3 !important;

    position: relative;

    font-weight: 600;
}


/* =========================================
   ACTIVE MENU UNDERLINE
========================================= */

#t4-header .nav-link.active::after,
#t4-header .navbar-nav > .active > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 12px;

    width: 100%;
    height: 1.5px;

    background: #C79A4A;

    border-radius: 10px;
}


/* =========================================
   HERO SECTION
========================================= */

.hero-home {
    background-image: url('/images/debeerhorst/page_images/debeerhorst-hero.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    width: 100%;
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
}


/* =========================================
   HERO OVERLAY
========================================= */

.hero-home::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.20);
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-home .hero-content {
    position: relative;
    z-index: 2;

    color: white;

    max-width: 650px;

    padding-top: 80px;
    padding-bottom: 80px;

    opacity: 0;
    transform: translateY(30px);

    animation: heroFade 1.4s ease forwards;
    animation-delay: 0.3s;
}


/* =========================================
   HERO TYPOGRAPHY
========================================= */

.hero-home h1,
.hero-home h2 {
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-home p {
    line-height: 1.7;
    margin-bottom: 20px;
}


/* =========================================
   GENERAL TYPOGRAPHY
========================================= */

h1,
h2,
h3 {
    margin-bottom: 24px;
}

p {
    margin-bottom: 20px;
}


/* =========================================
   HERO FADE ANIMATION
========================================= */

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   GLASS EFFECT CARDS
========================================= */

.glass-card {
    background: rgba(255,255,255,0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 24px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.12);

    padding: 40px;
}


/* =========================================
   CARD GRID
========================================= */

.card-grid {
    gap: 32px;
}


/* =========================================
   BUTTON EFFECTS
========================================= */

.btn,
button {
    margin-top: 12px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover,
button:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   FLOAT COLUMN
========================================= */

#column-wrap-id-3d712b2b-9939-4aaa-8e1d-585be5b65928 {
    float: right !important;
}


/* =========================================
   POINTER CURSOR
========================================= */

.container-header .navigation .nav-link,
.container-header .navigation .nav-item {
    cursor: pointer;
}


/* =========================================
   LOGO SIZE
========================================= */

.navbar-brand img {
    max-height: 80px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: #2C3D2A;

    color: #F5F1E8;

    padding: 60px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
}


/* =========================================
   CONTENT PAGE BACKGROUND
========================================= */

body:not(.home) {

    background:
        linear-gradient(
            rgba(4,20,14,0.55),
            rgba(4,20,14,0.72)
        );

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;
}


/* =========================================
   REMOVE INNER BACKGROUNDS
========================================= */

body:not(.home) #t4-main-body,
body:not(.home) .t4-content,
body:not(.home) .site-content,
body:not(.home) .t4-section,
body:not(.home) .t4-wrapper,
body:not(.home) main,
body:not(.home) .container {
    background: transparent !important;
}


/* =========================================
   MAIN CONTENT SPACING
========================================= */

body:not(.home) #t4-main-body {
    padding-top: 180px;
    padding-bottom: 120px;
}


/* =========================================
   ARTICLE CONTAINER
========================================= */

body:not(.home) .item-page {
/*    max-width: 980px;*/
    margin: 0 auto;

    padding-top: 60px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 70px;

    background: rgba(8, 18, 12, 0.52);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
}


/* =========================================
   ARTICLE TITLE
========================================= */

body:not(.home) .item-page .page-header h1 {
    font-size: 4rem;
    line-height: 1.1;

    margin-bottom: 50px;

    color: #F5F1E8;
}


/* =========================================
   ARTICLE TEXT
========================================= */

body:not(.home) .item-page p {
    font-size: 1.32rem;
    line-height: 2.1;

    color: #F2EFE5;

    font-weight: 300;
    letter-spacing: 0.01em;

    margin-bottom: 2rem;
}


/* =========================================
   EMPHASIS TEXT
========================================= */

body:not(.home) .item-page em {
    display: block;

    font-size: 2rem;
    line-height: 1.6;

    color: #D7C7A3;

    margin: 40px 0 70px;

    font-style: italic;
}


/* =========================================
   ARTICLE IMAGES
========================================= */

body:not(.home) .item-page img {
    border-radius: 18px;

    margin-top: 50px;
    margin-bottom: 50px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}


/* =========================================
   OPTIONAL CONTENT WIDTH
========================================= */

body:not(.home) .container {
    max-width: 1280px;
}


/* =========================================
   MOBILE OPTIMIZATION
========================================= */

@media (max-width: 991px) {

    .navbar-brand img {
        max-height: 60px;
    }

    #t4-header {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    #t4-header .nav-link,
    #t4-header .navbar-nav > li > a {
        font-size: 15px;
    }

    .content-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    h1,
    h2,
    h3 {
        margin-bottom: 18px;
    }

    p {
        margin-bottom: 16px;
    }

    body:not(.home) .item-page {
        padding-top: 40px;
        padding-left: 28px;
        padding-right: 28px;
        padding-bottom: 40px;

        border-radius: 20px;
    }

    body:not(.home) .item-page .page-header h1 {
        font-size: 2.6rem;
    }

    body:not(.home) .item-page p {
        font-size: 1.08rem;
        line-height: 1.9;
    }

}

/* =========================================
   DONATE MENU BUTTON
========================================= */

#t4-header .menu-donate-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: auto !important;
    line-height: normal !important;

    padding: 12px 26px !important;

    background: #4E6B1F;

    color: #FFFFFF !important;

    border-radius: 14px;

    font-weight: 600;

    margin-top: 16px;
    margin-bottom: 16px;
    margin-left: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.12);

    transition:
        background 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;

    cursor: pointer;

    position: relative;
}


/* =========================================
   DONATE ICON
========================================= */

#t4-header .menu-donate-btn::before {

    content: "\f4be";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 14px;

    order: 2;
}


/* =========================================
   BUTTON HOVER
========================================= */

#t4-header .menu-donate-btn:hover {

    background: #5F7E29 !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}


/* =========================================
   TEXT COLOR
========================================= */

#t4-header .menu-donate-btn,
#t4-header .menu-donate-btn .menu-item-title {
    color: #FFFFFF !important;
}


/* =========================================
   REMOVE ACTIVE UNDERLINE
========================================= */

#t4-header .menu-donate-btn::after {
    display: none !important;
}