/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Navigatie === */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

#navbar.scrolled .logo,
#navbar.scrolled .nav-links a {
    color: #1a1a2e;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    transition: all 0.3s;
}

.logo-text {
    text-align: center;
    line-height: 1;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
}

.logo-nova {
    color: #d4792c;
}

.logo-finish {
    color: #1a7a7a;
}

#navbar.scrolled .logo-nova {
    color: #d4792c;
}

#navbar.scrolled .logo-finish {
    color: #1a7a7a;
}

.logo-nl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 3px;
    margin-top: 2px;
}

.logo-line {
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: #888;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e94560;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

#navbar.scrolled .hamburger span {
    background: #1a1a2e;
}

/* === Hero === */
.hero {
    height: 100vh;
    background: url('icon1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(22, 33, 62, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 5px;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.hero-nl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.15s both;
}

.hero-nl .logo-line {
    width: 40px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 5px;
}

.btn-primary {
    background: #e94560;
    color: #fff;
}

.btn-primary:hover {
    background: #c73651;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.btn-service {
    background: #1a1a2e;
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 24px;
}

.btn-service:hover {
    background: #e94560;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

/* === Section Styling === */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: #e94560;
    border-radius: 2px;
    margin-bottom: 20px;
}

.section-line.center {
    margin: 0 auto 20px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* === Over Ons === */
.about {
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-checkmarks {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.about-checkmarks li {
    font-size: 1.05rem;
    color: #1a1a2e;
    padding: 5px 0;
    font-weight: 400;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.stat h3 {
    font-size: 2rem;
    color: #e94560;
}

.stat p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* === Diensten === */
.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
}

.services-grid .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 500px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e94560;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-info {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info .btn-service {
}

.service-info i {
    font-size: 2rem;
    color: #e94560;
    margin-bottom: 12px;
}

.service-info h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 15px;
    flex: 1;
}

.service-features li {
    font-size: 0.85rem;
    color: #555;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-features li i {
    color: #1a7a7a;
    font-size: 0.75rem;
    margin-top: 4px;
}

.service-note {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 10px;
}

.service-note i {
    margin-right: 4px;
}

.price {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.price strong {
    font-size: 1.6rem;
    color: #e94560;
}

/* === Ons Werk === */
.our-work {
    background: #f8f9fa;
}

.work-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.work-cta-icon {
    font-size: 3.5rem;
    color: #e94560;
    margin-bottom: 20px;
}

.work-cta-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.9;
}

.btn-facebook {
    background: #1877F2;
    color: #fff;
}

.btn-facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.btn-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

/* === Waarom Wij === */
.why-us {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.why-us h2 {
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* === Contact === */
.contact {
    background: #fff;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta {
    margin-bottom: 50px;
}

.cta-icon {
    font-size: 3.5rem;
    color: #e94560;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.9;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-large i {
    margin-right: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
    text-align: left;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.4rem;
    color: #e94560;
    width: 45px;
    height: 45px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 400;
}

.contact-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.contact-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.contact-socials a:hover {
    background: #e94560;
    transform: translateY(-3px);
}



/* === Footer === */
footer {
    background: #0f0f1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-logo-text {
    margin-bottom: 15px;
}

.footer-logo-text .logo-main {
    font-size: 1.5rem;
}

.footer-logo-text .logo-nl {
    justify-content: flex-start;
    color: #666;
}

.footer-logo-text .logo-line {
    background: #666;
}

.footer-col h3 i {
    color: #e94560;
    margin-right: 8px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #999;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #e94560;
}

.footer-col ul li i {
    color: #e94560;
    margin-right: 8px;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
    color: #666;
}

/* === Scroll Top Button === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e94560;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #c73651;
    transform: translateY(-3px);
}

/* === Animaties === */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #1a1a2e;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: #fff !important;
        font-size: 1.1rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    section h2 {
        font-size: 2rem;
    }
    

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
