/*
Theme Name: 2BU$Y Official
Theme URI: https://2busyofficial.nl
Author: 2BU$Y
Author URI: https://2busyofficial.nl
Description: Official DJ website theme for 2BU$Y
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 2busy
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        body {
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            background-color: #000000;
            overflow-x: hidden;
        }
 
        header {
            position: sticky;
            top: 0;
            background-color: #000000;
            z-index: 100;
            width: 100%;
            transition: all 0.3s ease;
        }
 
        header.scrolled {
            background: rgba(30, 30, 30, 0.7);
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
 
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            width: clamp(320px, 90vw, 1280px);
            margin: 0 auto;
            transition: all 0.3s ease;
        }
 
        header.scrolled .header-content {
            width: clamp(320px, 90vw, 1280px);
            margin: 0 auto;
            padding: 15px 20px;
        }
 
        .logo {
            margin-right: auto;
            max-width: 100%;
            max-height: 50px;
            transition: opacity 0.3s ease;
        }
 
        header.scrolled .logo {
            opacity: 1;
        }
 
        .nav-links {
            list-style: none;
            padding-right: 0;
            display: flex;
            align-items: center;
            margin: 0;
        }
 
        .nav-links li {
            display: inline-flex;
            align-items: center;
            padding: 0px 0px 0px 40px;
        }
 
        .nav-links li a {
            text-transform: uppercase;
            transition: all 0.3s ease 0s;
            text-decoration: none;
            color: #ffffff;
            display: flex;
            align-items: center;
        }
 
        .nav-links li a:hover {
            color: #a9a9a9;
        }
 
        /* Verberg alleen de text links op kleinere schermen, niet de button */
        @media (max-width: 900px) {
            .nav-links li:not(:last-child) {
                display: none;
            }
            
            .nav-links {
                padding-right: 0;
            }
        }
 
        h1 {
            font-size: 120px;
            font-weight: bold;
            font-style: italic;
        }
 
        h2 {
            font-size: 72px;
            font-weight: bold;
            font-style: italic;
        }
 
        p {
            font-size: 20px;
            line-height: 1.8;
        }
 
        a {
            cursor: pointer;
            font-size: 16px;
            text-decoration: none;
            color: #ffffff;
        }
 
        button {
            text-transform: uppercase;
            border: none;
            border-radius: 6px;
            transition: all 0.3s ease 0s;
            padding: 20px 20px;
            min-width: 180px;
            cursor: pointer;
        }
 
        .btn-primary {
            background-color:#ffffff;
            font-weight: bold;
            color: #002366;
            transition: all 0.3s ease;
        }
 
        .btn-primary:hover {
            background-color: #4d9fff;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }
 
        .btn-secundary {
            border: 1px solid white;
            background-color: transparent;
            color: white;
            transition: all 0.3s ease;
        }
 
        .btn-secundary:hover {
            text-decoration: underline;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }
 
        /* Hero Section */
        .hero {
            height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
 
        .hero-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            z-index: 0;
        }
 
        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
 
        .hero-content {
            text-align: center;
            z-index: 2;
            position: relative;
            margin-top: calc(30vh);
        }
 
        .hero h1 {
            margin-bottom: 50px;
            color: #fff;
            position: relative;
            text-shadow: 
                0 0 10px #fff,
                0 0 20px #4d9fff,
                0 0 40px #4d9fff,
                0 0 80px #4d9fff;
            animation: neon-sweep 4s ease-in-out infinite;
        }
 
        @keyframes neon-sweep {
            0%, 100% {
                text-shadow: 
                    -20px 0 30px rgba(77, 159, 255, 0.4),
                    0 0 10px #fff,
                    0 0 20px #4d9fff,
                    0 0 40px #4d9fff,
                    0 0 80px #4d9fff;
            }
            25% {
                text-shadow: 
                    0 0 40px rgba(77, 159, 255, 0.8),
                    0 0 15px #fff,
                    0 0 30px #4d9fff,
                    0 0 60px #4d9fff,
                    0 0 120px #4d9fff;
            }
            50% {
                text-shadow: 
                    20px 0 30px rgba(77, 159, 255, 0.4),
                    0 0 10px #fff,
                    0 0 20px #4d9fff,
                    0 0 40px #4d9fff,
                    0 0 80px #4d9fff;
            }
            75% {
                text-shadow: 
                    0 0 40px rgba(77, 159, 255, 0.8),
                    0 0 15px #fff,
                    0 0 30px #4d9fff,
                    0 0 60px #4d9fff,
                    0 0 120px #4d9fff;
            }
        }
 
        /* About Section */
        .about {
            padding: 300px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            width: clamp(320px, 90vw, 1280px);
            margin: 0 auto;
        }
 
        .about-text {
            flex: 1;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
 
        .about-text h2 {
            margin-bottom: 30px;
        }
 
        .about-text p {
            color: #cccccc;
            margin-bottom: 30px;
        }
 
        .about button {
            margin-top: 30px;
        }
 
        .about-image {
            align-items: flex-end;
            width: 500px;
            min-width: 300px;
            height: 700px;
            border: solid #222222 1px;
            overflow: hidden;
        }
 
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }
 
        .about-image img:hover {
            transform: scale(1.05);
        }
 
        /* Wat ik doe Section */
        .wat-ik-doe {
            padding: 150px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
 
        .wat-ik-doe h2 {
            text-align: center;
            margin-bottom: 80px;
        }
 
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }
 
        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 50px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
 
        .service-card:hover {
            transform: translateY(-10px);
            border-color: #0066ff;
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
            background: rgba(0, 102, 255, 0.05);
        }
 
        .service-card h3 {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
 
        .service-card p {
            font-size: 16px;
            line-height: 1.6;
            color: #cccccc;
        }
 
        .section-cta {
            text-align: center;
            margin-top: 60px;
        }
 
        /* Music Section */
        .music {
            padding: 150px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px;
            width: clamp(320px, 90vw, 1280px);
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
 
        .music.visible {
            opacity: 1;
            transform: translateY(0);
        }
 
        .music-text {
            flex: 1;
            max-width: 600px;
        }
 
        .music-text h2 {
            margin-bottom: 30px;
        }
 
        .music-text p {
            color: #cccccc;
            margin-bottom: 20px;
        }
 
        .music-preview {
            width: 100%;
            max-width: 500px;
            min-width: 300px;
            height: 500px;
            border: 2px solid #222222;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
            transition: all 0.3s ease;
        }
 
        .music-preview:hover {
            border-color: #0066ff;
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
        }
 
        .music-preview iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
 
        /* Photo Gallery Section */
        .photo-gallery {
            padding: 150px 20px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
 
        .photo-gallery h2 {
            text-align: center;
            margin-bottom: 20px;
        }
 
        .gallery-subtitle {
            text-align: center;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #888;
            margin-bottom: 80px;
        }
 
        .gallery-container {
            position: relative;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 60px;
        }
 
        .photo-stack {
            position: relative;
            width: 250px;
            height: 310px;
        }
 
        .photo-item {
            position: absolute;
            width: 250px;
            height: 310px;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            background: #ffffff;
            padding: 15px 15px 50px 15px;
        }
 
        .photo-item:active {
            transform: scale(0.98);
        }
 
        .photo-item:hover {
            transform: scale(1.05) rotate(0deg) !important;
            z-index: 1000 !important;
        }
 
        .photo-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            pointer-events: none;
            display: block;
        }
 
        .photo-caption {
            text-align: center;
            color: #333;
            font-size: 14px;
            margin-top: 12px;
            font-weight: 500;
            user-select: none;
        }
 
        /* Initial positions for photos - large screens */
        .photo-item:nth-child(1) {
            left: -400px;
            top: 20px;
            transform: rotate(-3deg);
            z-index: 2;
        }
 
        .photo-item:nth-child(2) {
            left: -200px;
            top: 35px;
            transform: rotate(2deg);
            z-index: 3;
        }
 
        .photo-item:nth-child(3) {
            left: 0;
            top: 10px;
            transform: rotate(-1deg);
            z-index: 5;
        }
 
        .photo-item:nth-child(4) {
            left: 200px;
            top: 25px;
            transform: rotate(3deg);
            z-index: 3;
        }
 
        .photo-item:nth-child(5) {
            left: 400px;
            top: 40px;
            transform: rotate(-2deg);
            z-index: 1;
        }
 
        /* Contact Section */
        .contact {
            padding: 150px 50px;
            background: #000000;
            position: relative;
        }
 
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .contact-card {
            background: #0a0a0a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            position: relative;
            display: grid;
            grid-template-columns: 2fr 1fr;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
 
        .contact-info-section {
            padding: 60px;
        }
 
        .contact-info-section h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }
 
        .contact-info-section p {
            color: #888;
            margin-bottom: 40px;
            max-width: 600px;
        }
 
        .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
 
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 0;
        }
 
        .contact-icon {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: #0066ff;
            stroke-width: 2;
        }
 
        .contact-text h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }
 
        .contact-text p {
            font-size: 13px;
            color: #888;
            margin: 0;
        }
 
        .contact-form-section {
            background: rgba(255, 255, 255, 0.02);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px 40px;
            display: flex;
            align-items: center;
        }
 
        /* De velden */
.form-field input,
.form-field textarea,
.form-field span.wpcf7-form-control-wrap input,
.form-field span.wpcf7-form-control-wrap textarea {
    width: 100% !important; /* Forceert de breedte */
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
	margin-bottom: 40px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    display: block;
}

/* Focus staat */
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0066ff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Placeholder kleur */
::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* De rest van je styling kan blijven zoals hij was */
.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ffffff;
}

.form-field textarea {
    min-height: 80px !important; /* Pas dit getal aan naar wens, bijv. 60px of 80px */
    height: 100px;               /* Je kunt ook een vaste hoogte geven */
    resize: vertical;            /* Hiermee kan de gebruiker hem zelf groter slepen indien nodig */
}

.btn-contact-submit {
    width: 100%;
    padding: 14px;
    background: #ffffff !important;
    color: #000000 !important;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-contact-submit:hover {
    background: #0066ff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

span.wpcf7-spinner {
	display: none;
}
 
        /* Footer */
        footer {
            padding: 60px 50px 40px;
            background: #000000;
        }
 
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 60px;
        }
 
        .footer-socials h3,
        .footer-email h3 {
            margin-bottom: 25px;
            text-transform: uppercase;
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
        }
 
        .social-links {
            display: flex;
            gap: 16px;
            align-items: center;
        }
 
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
 
        .social-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
 
        .social-links svg {
            width: 20px;
            height: 20px;
            transition: all 0.3s ease;
        }
 
        .social-links svg {
            fill: #ffffff;
            stroke: #ffffff;
        }
 
        .social-links a:hover svg {
            fill: #0066ff;
            stroke: #0066ff;
        }
 
        .footer-copyright {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #333;
            margin-top: 40px;
            font-size: 14px;
            font-style: italic;
            font-weight: 500;
            color: #666;
        }
 
        /* Responsive Design */
        @media (max-width: 1024px) {
            .about,
            .music {
                flex-direction: column;
            }
 
            .about-image {
                width: 100%;
                height: 600px;
            }
 
            .music-preview {
                width: 100%;
                max-width: 100%;
                height: 400px;
            }
 
            .contact-card {
                grid-template-columns: 1fr;
            }
 
            .contact-form-section {
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
 
            .hero h1 {
                font-size: 100px;
            }
 
            /* Medium screens - medium spacing */
            .photo-item:nth-child(1) { left: -300px; }
            .photo-item:nth-child(2) { left: -150px; }
            .photo-item:nth-child(3) { left: 0; }
            .photo-item:nth-child(4) { left: 150px; }
            .photo-item:nth-child(5) { left: 300px; }
        }
 
        @media (max-width: 768px) {
            p {
                font-size: 16px;
            }
 
            .hero h1 {
                font-size: 80px;
            }
 
            .about,
            .music,
            .wat-ik-doe,
            .photo-gallery,
            .contact {
                padding: 80px 20px;
                width: 100%;
            }
 
            .contact-info-section,
            .contact-form-section {
                padding: 40px 30px;
            }
 
            .contact-info-section h2 {
                font-size: 36px;
            }
 
            .contact-details {
                grid-template-columns: 1fr;
            }
 
            .about-image {
                width: 100%;
                height: 500px;
                overflow: hidden;
            }
 
            .about-text h2,
            .music-text h2,
            .contact-info-section h2,
            .wat-ik-doe h2,
            .photo-gallery h2 {
                font-size: 36px;
            }
 
            .music-preview {
                height: 300px;
            }
 
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
 
            .service-card {
                padding: 40px 25px;
            }
 
            .service-card h3 {
                font-size: 20px;
            }
 
            .service-card p {
                font-size: 15px;
            }
 
.gallery-container {
        height: 500px;
    }

    .photo-stack {
        width: 200px;
        height: 260px;
    }

    .photo-item {
        width: 200px;
        height: 260px;
        padding: 12px 12px 40px 12px;
    }

    .photo-item img {
        height: 180px;
    }

    .photo-caption {
        font-size: 12px;
        margin-top: 8px;
    }

    /* Piramide layout: 2 bovenaan, 1 midden, 2 onderaan */
    .photo-item:nth-child(1) { 
        left: -80px; 
        top: 0px; 
        transform: rotate(-8deg);
        z-index: 2;
    }
    .photo-item:nth-child(2) { 
        left: 80px; 
        top: 20px; 
        transform: rotate(6deg);
        z-index: 3;
    }
    .photo-item:nth-child(3) { 
        left: 0px; 
        top: 120px; 
        transform: rotate(-3deg);
        z-index: 5;
    }
    .photo-item:nth-child(4) { 
        left: -80px; 
        top: 240px; 
        transform: rotate(5deg);
        z-index: 3;
    }
    .photo-item:nth-child(5) { 
        left: 80px; 
        top: 260px; 
        transform: rotate(-7deg);
        z-index: 2;
    }
 
            footer {
                padding: 50px 30px 30px;
            }
 
            .footer-content {
                flex-direction: column;
                gap: 40px;
                margin-bottom: 0px;
            }
        }