/* CSS voor index.php - Hoofdpagina */

/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8fafc;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 135vh;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.video-absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    background: linear-gradient(to bottom right, rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.4), transparent);
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

/* Overlapping Content Container */
.hero-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background-color: #1a1a2e;
    color: white;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.hero-inner {
    height: 90%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem;
}

/* Mobile styles for hero content */
@media (max-width: 768px) {
    .hero-section {
        height: 120vh;
    }
    
    .hero-content {
        width: 90vw;
        height: auto;
        min-height: 50vh;
        bottom: 2vh;
        padding: 1rem;
    }
    
    .hero-inner {
        padding: 1.5rem;
        height: auto;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 95vw;
        bottom: 1vh;
    }
    
    .hero-inner {
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-inner {
        padding: 3rem;
    }
}

.hero-title {
    height: 20%;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Mobile title adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
        height: auto;
        margin-bottom: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-accent {
    color: #F15A24;
    position: relative;
}

.hero-description {
    height: 40%;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e5e7eb;
    max-width: 64rem;
}

/* Mobile description adjustments */
@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        height: auto;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: #F15A24;
    height: 5vh;
    width: 15vw;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #d4491e;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    height: 5vh;
    width: 12vw;
    border: 2px solid white;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: white;
    color: #1a1a2e;
}

/* Mobile button adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        width: 100%;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        height: 48px;
        max-width: 280px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-primary, .btn-secondary {
        height: 44px;
        font-size: 0.85rem;
    }
}

/* Wie zijn wij sectie */
.about-section {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    height: 80%;
    width: 91.666667%;
    display: flex;
}

.about-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mobile styles for about section */
@media (max-width: 768px) {
    .about-section {
        height: auto;
        min-height: 100vh;
        padding: 0;
    }
    
    .about-container {
        height: auto;
        width: 100%;
        padding: 0;
    }
    
    .about-content {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }
    
    .about-text {
        width: 100%;
        height: auto;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .about-image {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        order: -1; /* Show image first on mobile */
    }
}

@media (max-width: 480px) {
    .about-container {
        width: 100%;
        padding: 0;
    }
    
    .about-text {
        padding: 0 0.75rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-text {
        gap: 1.5rem;
    }
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-description p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
}

.stat-card {
    width: 45.45%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 1rem;
    transition: all 0.2s ease;
}

/* Mobile stats adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 0.75rem;
    }
}

.stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-content {
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(241, 90, 36, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.stat-icon i {
    color: #F15A24;
    font-size: 1.25rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #F15A24;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.about-cta {
    width: 50%;
    background-color: #F15A24;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Mobile CTA button adjustments */
@media (max-width: 768px) {
    .about-cta {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-cta:hover {
    background-color: #d4491e;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 40%;
}

.about-image-container {
    position: relative;
}

.about-img {
    position: relative;
    z-index: 10;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 24rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Mobile image adjustments */
@media (max-width: 768px) {
    .about-img {
        height: 16rem;
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-img {
        height: 14rem;
        width: 100%;
    }
}

.about-img:hover {
    transform: scale(1.02);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.2), transparent);
}

/* Services Section */
.services-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.services-container {
    position: relative;
    z-index: 10;
    width: 91.666667%;
    margin: 0 auto;
    padding: 0;
}

/* Mobile services section adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 2rem 0;
        align-items: flex-start;
    }
    
    .services-container {
        width: 95%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        width: 100%;
        padding: 0.5rem;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

/* Mobile services header adjustments */
@media (max-width: 768px) {
    .services-header {
        margin-bottom: 2rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {
    .services-title {
        font-size: 3rem;
    }
}

.services-title-accent {
    color: #F15A24;
    position: relative;
}

.services-title-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F15A24;
    border-radius: 9999px;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile services subtitle adjustments */
@media (max-width: 768px) {
    .services-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-subtitle {
        font-size: 1rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: visible;
    transition: all 0.2s ease;
    z-index: 1;
}

.service-card.zoomed {
    z-index: 2;
    
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .service-card:last-child {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .service-card:last-child {
        grid-column: span 1;
    }
}

.service-content {
    position: relative;
    z-index: 10;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: #F15A24;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    color: white;
    font-size: 1.25rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.service-check {
    width: 1.25rem;
    height: 1.25rem;
    background-color: rgba(241, 90, 36, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.service-check i {
    color: #F15A24;
    font-size: 0.75rem;
}

.service-link {
    color: #F15A24;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: #d4491e;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.cta-container {
    background-color: #1a1a2e;
    border-radius: 8px;
    padding: 2rem 3rem;
}

@media (min-width: 1024px) {
    .cta-container {
        padding: 3rem;
    }
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 1.875rem;
    }
}

.cta-description {
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #F15A24;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: #d4491e;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Projects Section */
.projects-section {
    min-height: 100vh;
    padding: 5rem 0;
    background-color: #1a1a2e;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.projects-container {
    position: relative;
    z-index: 10;
    width: 91.666667%;
    margin: 0 auto;
    padding: 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .projects-title {
        font-size: 3rem;
    }
}

.projects-title-accent {
    color: #F15A24;
    position: relative;
}

.projects-title-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F15A24;
}

.projects-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(241, 90, 36, 0.5);
}

@media (min-width: 768px) {
    .project-card:last-child {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .project-card:last-child {
        grid-column: span 1;
    }
}

.project-image-container {
    position: relative;
}

.project-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.project-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    background-color: #F15A24;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.project-badge i {
    margin-right: 0.25rem;
}

.project-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.project-description {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: #F15A24;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: white;
}

.project-link i {
    margin-left: 0.5rem;
}

.projects-cta {
    text-align: center;
}

.projects-cta-buttons {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .projects-cta-buttons {
        flex-direction: row;
    }
}

.projects-cta-link {
    background-color: #F15A24;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-cta-link:hover {
    background-color: #d4491e;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.projects-cta-link span {
    margin-right: 0.5rem;
}

.house-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: visible;
}

.interactive-house {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
    cursor: pointer;
    transform-origin: center center;
}

.interactive-house.zoomed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.8);
    object-fit: fill;
    width: 500px;
    height: 300px;
    z-index: 999999;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.zoom-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.zoom-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.zoom-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.zoomed ~ .zoom-button .zoom-icon {
    transform: rotate(90deg);
}

/* Hotspots */
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #F15A24;
    /* border: 3px solid white; */
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.interactive-house.zoomed ~ .hotspot {
    opacity: 1;
    pointer-events: auto;
    animation: hotspotPulse 2s infinite;
}

.hotspot:hover {
    transform: scale(1.2);
}



@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}



/* Hotspot Popup */
.hotspot-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10000000;
    min-width: 350px;
    max-width: 500px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.hotspot-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.popup-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.popup-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
}

.popup-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.popup-btn-primary {
    background: #F15A24;
    color: white;
}

.popup-btn-primary:hover {
    background: #d4491e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(241, 90, 36, 0.3);
}

.popup-btn-secondary {
    background: #1f2937;
    color: white;
}

.popup-btn-secondary:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}