/* ============================
   Algemeen
============================ */
html, body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #64572a;
    background: transparent;
}

a {
    color: #196d92;
    transition: all 0.3s ease;
}
a:hover, a:focus, .nav-link.active {
    color: #64572a;
    text-decoration: none;
    outline: none;
}

button {
    transition: all 0.3s ease;
}
button:focus {
    outline: none;
}

.container, .container-fluid, .row {
    background: transparent;
}

/* ============================
   Vaste achtergrond
============================ */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../img/rainbow-header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: -1;
}

/* ============================
   Header
============================ */
.tm-site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0;
    flex-direction: column;
}

.tm-site-title {
    color: #fffeff;
    text-shadow: 1px 2px 2px rgb(146, 109, 46);
    font-family: 'Times New Roman', Georgia, sans-serif;
    font-size: 2.4rem;
    margin: 1rem 0 1.5rem 0;
}

.tm-site-description {
    font-size: 2rem;
    margin-bottom: 4rem;
}

/* ============================
   Navbar
============================ */
.tm-navbar-row {
    width: 100%;
    background-color: rgba(235, 222, 180, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 0; /* minder padding dan eerder */
    box-sizing: border-box;
}

.tm-navbar-row.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(235, 222, 180, 0.85);
}

.nav {
    display: inline-block;
    font-size: 1.8rem; /* iets kleiner dan eerder */
    overflow: auto;
    text-align: center;
}

.navbar-nav .nav-link {
    padding: 0.4rem 1rem; /* minder padding voor slanker menu */
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .nav { font-size: 1.5rem; }
    .navbar-nav .nav-link { padding: 0.3rem 0.8rem; }
}

@media (max-width: 767px) {
    .nav { font-size: 1.4rem; }
    .navbar-nav .nav-link { padding: 0.25rem 0.6rem; }
    .tm-navbar-rounded { border-radius: 10px; }
}

/* ============================
   Secties / Kolommen
============================ */
.tm-2-col-img-text {
    display: flex;
    flex-wrap: wrap;
    padding: 2.5% 0;
}

.tm-2-col-img {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4%;
}

.tm-2-col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8% 0 0;
}

.tm-2-col-text-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tm-2-col-text-description {
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 6%;
    width: 100%;
}

/* ============================
   Secties algemene padding
============================ */
.tm-section {
    padding: 3rem 0 3rem 0;
}

#tm-section-1 { padding-top: 2rem; }
#tm-section-2 { padding-top: 2rem; }
#tm-section-3 { padding-top: 2rem; }
#tm-section-4 { padding-top: 2rem; }

.tm-section-title {
    font-size: 2.25rem;
    margin-bottom: 1.8rem;
}

.tm-section-subtitle {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.tm-section-subtitle-contact {
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 1.5rem;
}

/* ============================
   Footer
============================ */
.tm-footer {
    background-image: url('../img/rainbow-header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 3rem 0;
}

.tm-copyright-text {
    color: #655623;
    font-size: 1.3rem;
    padding: 3% 0;
}

/* ============================
   Buttons
============================ */
.tm-btn-rounded {
    border-radius: 2.5rem;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0.8rem 3rem;
    min-width: 180px;
    height: 60px;
    text-align: center;
}

.tm-btn-green { color: #046134; }
.tm-btn-blue { color: #267cab; }
.tm-btn-gold { color: #8b6814; }

.tm-btn-green:hover,
.tm-btn-green:focus { color: #dbf1e4; background-color: #046134; }
.tm-btn-blue:hover,
.tm-btn-blue:focus { color: #d7f4fc; background-color: #267cab; }
.tm-btn-gold:hover,
.tm-btn-gold:focus { color: #f3f2e0; background-color: #8b6814; }

/* ============================
   Media Queries
============================ */
@media (max-width: 991px) {
    .nav { font-size: 1.6rem; }
    .tm-section { padding-top: 5%; padding-bottom: 4%; }
    .tm-section-title { margin-bottom: 1rem; }
    .tm-section-subtitle { margin-bottom: 2rem; }
    .tm-2-col-img-text { display: block; }
    .tm-2-col-text { padding: 5% 0; }
    .tm-2-col-text-title { font-size: 1.8rem; margin-bottom: 1rem; }
    .tm-2-col-text-description { font-size: 1.3rem; margin-bottom: 1.5rem; }
}

@media (max-width: 767px) {
    .tm-section { padding-top: 10%; padding-bottom: 8%; }
    .tm-2-col-text { padding: 10% 0; }
    .tm-navbar-rounded { border-radius: 10px; }
}
