/* Algemene stijlen */
:root {
    --gold: #D4AF37;
    --gold-dark: #B38B2D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --dark-gray: #333333;
    --black: #000000;
}

::selection {
    background: var(--gold);
    color: white;
  }
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--white);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.gold {
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}

/* Navigatie */
.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;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 5px 0;
    transition: all 0.3s ease;
}
.hero2 {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--dark-gray);
}

.hero2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,1) 50%, 
        rgba(212,175,55,0.1) 50%, 
        rgba(212,175,55,0.1) 100%);
    background-size: 400% 400%;
    animation: GradientBackground 8s ease infinite;
    z-index: -1;
}

@keyframes GradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero2 .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Hero Sectie */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('images/hero-bg.jpg') no-repeat center center/cover;
    padding-top: 80px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Over Ons Sectie */
.about {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Sectie */
.team {
    padding: 100px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.team-member p {
    color: var(--gold);
    font-weight: 600;
}


/* Reviews Sectie */
.reviews {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-stars {
    color: var(--gold);
}

.review-source {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
}

.review-author h4 {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.review-author span {
    font-size: 14px;
    color: var(--dark-gray);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Diensten Sectie */
.services {
    padding: 100px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   background-color: rgba(212, 175, 55, 0.8);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Projecten Sectie */
.projects {
    padding: 100px 0;
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: var(--dark-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.preview-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--gold-dark);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preview-btn i {
    margin-right: 10px;
}

.preview-btn:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.project-info p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
}

.text-center {
    text-align: center;
}

/* Offerte Sectie */
.quote {
    padding: 100px 0;
    background-color: var(--white);
}

.quote-form {
    max-width: 600px;
    margin: 50px auto 0;
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Pagina */
.contact-hero {
    height: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/contact-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    margin-top: 80px;
}

.contact-hero h1 {
    color: var(--white);
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.map-container {
    margin-top: 50px;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Under Construction Page Styles */
.construction-content {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.construction-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.construction-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.construction-icon {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: var(--gold);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 8px;
    text-align: center;
    line-height: 40px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .construction-content h1 {
        font-size: 36px;
    }
    
    .countdown-item {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: var(--white);
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section ul li i {
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

/* Responsive stijlen */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .quote-form,
    .contact-form {
        padding: 30px 20px;
    }
}

/* Stats Section */
#stats {
    /* background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(212,175,55,0.1) 100%); */
    padding: 4rem 1rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 10px;
    
}

#stats .max-w-5xl {
    max-width: 80rem;
    margin: 0 auto;
}

#stats h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

#stats .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

#stats .count-up {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    transition: all 0.5s ease;
}

#stats .text-gray-400 {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Animatie voor count-up */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.count-up {
    animation: countUp 1s ease-out forwards;
}

/* Responsive aanpassingen */
@media (min-width: 768px) {
    #stats .grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    #stats h3 {
        font-size: 2.5rem;
    }
    
    #stats .count-up {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    #stats .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #stats h3 {
        font-size: 1.8rem;
    }
    
    #stats .count-up {
        font-size: 2.5rem;
    }
}