/* Global Reset and Variables */
:root {
    --primary-color: #2575FC;
    --secondary-color: #6A11CB;
    --text-color: #333;
    --background-color: #F4F4F4;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navigation Bar Styles */
/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    margin-right: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.4s;
}
/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(37, 117, 252, 0.7), rgba(106, 17, 203, 0.7)), 
                url('hero-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* About Section Styles */
.about-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.about-cards {
    display: flex;
    justify-content: space-between;
}

.about-card {
    flex: 1;
    text-align: center;
    padding: 30px;
    margin: 0 15px;
    background-color: var(--background-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.about-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design for Gallery */
@media screen and (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
    }

    .gallery-item {
        margin-bottom: 20px;
    }

    .gallery-item img {
        height: 250px;
    }
}


/* Gallery Section Styles */
#gallery {
    background-color: #f4f4f4;
    padding: 4rem 0;
}

#gallery .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#gallery .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 3rem;
    font-weight: 700;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

#gallery .gallery-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#gallery .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    #gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    #gallery .section-title {
        font-size: 2rem;
    }
}

/* Accessibility and Focus States */
#gallery .gallery-item:focus-within {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#gallery .gallery-item {
    animation: fadeIn 0.6s ease-out;
}


/* Plans Section Styles */
.plans-section {
    padding: 80px 5%;
    background-color: var(--background-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.plans-container {
    display: flex;
    justify-content: space-between;
}

.plan-card {
    flex: 1;
    padding: 30px;
    margin: 0 15px;
    background-color: var(--white);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.plan-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.plan-price {
    font-size: 2rem
}
.plan-price {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.plan-card ul {
    list-style: none;
    margin: 20px 0;
}

.plan-card ul li {
    margin: 10px 0;
}

.plan-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
}

/* Location Section Styles */
#locatie {
    background-color: #f4f7fa;
    padding: 4rem 0;
}

#locatie .location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

#locatie .location-info {
    flex: 1;
    min-width: 350px;
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

#locatie .location-info:hover {
    transform: translateY(-10px);
}

#locatie .location-title {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

#locatie .contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4b5563;
}

#locatie .contact-detail-icon {
    background-color: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
}

#locatie .contact-detail:hover .contact-detail-icon {
    background-color: #1d4ed8;
}

#locatie .contact-detail-text {
    font-size: 1rem;
}

#locatie .map-container {
    flex: 1;
    min-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#locatie .map-container:hover {
    transform: scale(1.02);
}

#locatie .map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #locatie .location-container {
        flex-direction: column;
    }
    
    #locatie .location-info,
    #locatie .map-container {
        min-width: 100%;
    }
    
    #locatie .location-title {
        font-size: 2rem;
    }
}

/* Accessibility and Focus States */
#locatie .contact-detail:focus-within {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Subtle Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#locatie .location-info,
#locatie .map-container {
    animation: fadeIn 0.6s ease-out;
}
/* Footer Styles */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 60px 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin: 0 15px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .about-cards,
    .plans-container,
    .footer-content {
        flex-direction: column;
    }

    .about-card,
    .plan-card,
    .footer-section {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}