* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* NAVBAR */

.navbar {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #27ae60;
}

.nav-btn {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* HERO */

.hero {
    background:  url('../images/groningen.jpg') center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.842);
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.btn:hover {
    background: #219150;
}

/* SECTIONS */

section {
    padding: 70px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.about {
    background: #f9f9f9;
}



/* PRICING */

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin-top: 10px;
}

.highlight {
    border: 2px solid #27ae60;
}

.popular {
    display: inline-block;
    margin-top: 10px;
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}

/* FOOTER */


/* Mobile Footer */


/* FLOATING WHATSAPP BUTTON */

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lang-btn {
    background: #eee;
    border: none;
    padding: 6px 10px;
    margin-right: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}


/* MOBILE */

@media (max-width: 600px) {

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        display: block;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }



}
footer {
    background: #222;
    color: #fff;
    padding: 60px 20px 30px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-section h3 {
    color: #27ae60;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #27ae60;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
}

#google-reviews {
    display: inline-block;
    margin-top: 10px;
    background: #4285F4;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

#google-reviews:hover {
    background: #357ae8;
}

/* Divider between sections on desktop */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #444;
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #aaa;
}

/* Desktop: Two columns layout with sections side by side */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        margin-bottom: 0;
    }
}

/* Mobile: stack sections */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-section h3 {
        border-bottom: none;
    }

    .footer-section p {
        font-size: 14px;
    }
}