/* Dark Theme Variables */
:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --primary-color: #FF0050;  /* TikTok roze */
    --secondary-color: #00f2ea; /* TikTok cyaan */
    --card-bg: #1a1a1a;
    --gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 2rem;
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-title {
    font-size: 1.2rem;
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    background: var(--bg-primary);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(var(--primary-color-rgb), 0.3);
}

/* Responsive Design voor Header en Hero */
@media (max-width: 768px) {
    .header-title {
        font-size: 1rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-image {
        width: 200px;
        height: 200px;
    }
}

/* Menu Icon */
.menu-icon {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001; /* Hoger dan header */
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

/* Buttons */
.cta-button {
    background: var(--gradient);
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Cards and Sections */
.card, .testimonial-card, .product-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1rem;
    transition: transform 0.3s ease;
}

.card:hover, .testimonial-card:hover, .product-card:hover {
    transform: translateY(-5px);
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    margin-top: -1rem; /* Verminder ruimte tussen hero en stats */
}

.stat-card {
    border-radius: 15px;
    padding: 1.5rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.5)
    );
    backdrop-filter: blur(3px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-content {
    position: relative;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.8rem;
    margin: 0;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                -1px -1px 0 rgba(255, 255, 255, 0.2),
                1px -1px 0 rgba(255, 255, 255, 0.2),
                -1px 1px 0 rgba(255, 255, 255, 0.2),
                1px 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                -1px -1px 0 rgba(0, 0, 0, 0.8),
                1px -1px 0 rgba(0, 0, 0, 0.8),
                -1px 1px 0 rgba(0, 0, 0, 0.8),
                1px 1px 0 rgba(0, 0, 0, 0.8);
}

.stat-highlight {
    margin-top: 0.8rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 0.5rem;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .impact-stats {
        padding: 0.5rem;
    }
    
    .stat-card {
        min-height: 150px;
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 4rem;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .card, .testimonial-card, .product-card {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

/* TikTok Section */
.tiktok-section {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.tiktok-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tiktok-video {
    background: var(--card-bg);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tiktok-video:hover {
    transform: translateY(-5px);
}

.tiktok-video img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 1.5rem 1.5rem 0 0;
}

.tiktok-video h3 {
    padding: 1rem 1rem 0.5rem;
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.tiktok-video .views {
    padding: 0 1rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tiktok-video .challenge-text {
    padding: 0.5rem 1rem 1rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .tiktok-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .tiktok-video img {
        height: 250px;
    }

    .tiktok-video h3 {
        font-size: 1.1rem;
    }
}

/* Work with me Section */
.work-with-me {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    text-align: center;
}

.work-with-me h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.work-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.work-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.work-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonial-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.author-age {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.2rem 0 0 0;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial-image {
        height: 160px;
    }

    .testimonial-text {
        font-size: 1rem;
        margin: 1rem;
    }

    .testimonial-author {
        padding: 0 1rem 1rem;
    }
}

/* Shop Section */
.shop-cta {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-secondary);
}

.shop-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shipping-notice {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.shop-cta .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.product-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.product-preview:hover {
    transform: translateY(-10px);
}

.product-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-preview h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.product-preview p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.shop-link {
    text-decoration: none;
}

.shop-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.shop-btn i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-cta .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-preview img {
        height: 200px;
    }
}

/* Footer */
.site-footer {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Business Dropdown */
.business-dropdown {
    position: relative;
}

.business-btn {
    background: var(--gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.business-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.business-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.business-btn.active i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    min-width: 200px;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: white;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.2s ease;
}

.dropdown-content a:first-child {
    border-radius: 1rem 1rem 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 1rem 1rem;
}

.dropdown-content a:hover {
    background: var(--gradient);
    color: white;
}

.dropdown-content a i {
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .main-header nav {
        padding: 0.8rem 1rem;
    }

    .business-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .dropdown-content {
        min-width: 180px;
    }

    .dropdown-content a {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* Notification Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}