/*
Theme Name: noodappwordpress
Author: Elsa
Version: 1.0
*/

/* -----------------------------------------------------------
   1. GLOBAL RESET
----------------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -----------------------------------------------------------
   2. HOME HEADER (alleen front-page.php)
----------------------------------------------------------- */

.top-header {
    background: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 40px;
    height: 40px;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.home-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.home-navigation a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 16px;
}

.home-navigation a:hover {
    color: #0073e6;
}

/* -----------------------------------------------------------
   3. GLOBAL HEADER (alle pagina’s behalve Home)
----------------------------------------------------------- */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #d3d9e0;
    padding: 15px 0;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation ul {
    justify-content: flex-end;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-navigation ul li a {
    font-size: 16px;
    color: #2a3a4a;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 0;
}

.main-navigation ul li a:hover {
    color: #0d6efd;
}

/* Mobiel global header */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* -----------------------------------------------------------
   4. HERO SECTION
----------------------------------------------------------- */

.hero-section {
    width: 100%;
    background-image: url('assets/img/bannergroot.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 150px 0;
    text-align: center;
    color: #fff;
    margin: 0;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 22px;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.appstore-btn {
    display: inline-block;
    background: #0073e6;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.appstore-btn:hover {
    background: #005bb5;
}

/* -----------------------------------------------------------
   5. PARALLAX
----------------------------------------------------------- */

.parallax-section {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* -----------------------------------------------------------
   6. READMORE
----------------------------------------------------------- */

.readmore-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.readmore-text {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.readmore-text.expanded {
    max-height: 1000px;
}

#readmore-btn {
    margin-top: 15px;
}

/* -----------------------------------------------------------
   7. FOOTER
----------------------------------------------------------- */

.site-footer {
    background: #e9eef5;
    padding: 45px 0;
    margin-top: 60px;
    border-top: 1px solid #d3d9e0;
}

.footer-columns {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #2a3a4a;
    margin: 0 0 6px 0;
}

.footer-sub {
    font-size: 15px;
    color: #2a3a4a;
    margin: 0;
    font-weight: 500;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li a {
    color: #2a3a4a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-menu li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: #4a5a6a;
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.scroll-top-btn.show {
    display: block;
    opacity: 1;
}

.scroll-top-btn:hover {
    transform: scale(1.08);
}

/* Mobiel footer */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-menu li {
        margin-bottom: 12px;
    }
}

/* -----------------------------------------------------------
   8. FEATURE GRID
----------------------------------------------------------- */

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feature-icon {
        width: 55px;
        height: 55px;
    }
}