/*
Theme Name: Kimmie Glamour Studio
Theme URI: https://kimmiesglamourstudio.be
Description: Strak en modern custom thema voor Kimmie Glamour Studio.
Author: Samuel Bodde - Salonbear
Version: 1.0.0
*/
/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #0C0A09;          /* Deep luxury charcoal black */
    --color-bg-dark: #15110E;     /* Dark bronze-tinted brown for cards and sections */
    --color-text: #F3EFE9;        /* Warm cream for body text */
    --color-text-muted: #9E9385;  /* Muted warm gold/grey */
    --color-text-light: #F3EFE9;  /* Off-white for dark backgrounds */
    --color-accent: #C5A880;      /* Luxury champagne gold */
    --color-accent-hover: #D4AF37;/* Rich gold hover state */
    --color-border: rgba(197, 168, 128, 0.15); /* Gold-tinted border line */
    --color-border-dark: rgba(197, 168, 128, 0.3); /* Divider for dark sections */
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Layout */
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    
    /* Shadows */
    --shadow-subtle: 0 4px 20px rgba(197, 168, 128, 0.05);
    --shadow-md: 0 12px 40px rgba(197, 168, 128, 0.1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    color: var(--color-text);
}

.section-description {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-bg);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-bg);
    border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-bg);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn.lg {
    padding: 18px 38px;
    font-size: 14px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled {
    background-color: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--color-border);
    border-bottom: none;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.scrolled .header-container {
    padding: 10px 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
    filter: none;
}

.header.scrolled .logo-img {
    height: 52px;
    filter: none;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.header.scrolled .nav-link:hover {
    color: var(--color-accent);
}

.header.scrolled .hamburger span {
    background-color: var(--color-text);
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFF;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--color-accent);
    color: #FFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: var(--color-accent-hover);
    color: #FFF;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: #FFF;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #FFF;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-banner.jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.07);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 25, 21, 0.5); /* Overlay to make text legible */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 24px;
    margin-top: 60px;
}

.hero-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--color-accent);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% { top: -15px; }
    100% { top: 50px; }
}

/* ==========================================================================
   MARQUEE TICKER
   ========================================================================== */
.marquee-ticker {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--color-border-dark);
    border-bottom: 1px solid var(--color-border-dark);
    display: flex;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    animation: marqueeAnimation 35s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    padding-right: 30px;
}

.marquee-content .marquee-star {
    color: var(--color-accent);
    padding-right: 30px;
}

@keyframes marqueeAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   MINI GALLERY DIVIDER
   ========================================================================== */
.mini-gallery {
    padding: 0;
    overflow: hidden;
    background-color: var(--color-bg);
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 25, 21, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   DIENSTEN & PRIJZEN SECTION
   ========================================================================== */
.services-section {
    padding: 120px 24px;
    background-color: var(--color-bg);
}

.services-card-container {
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: var(--color-bg-dark);
    padding: 60px 48px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
}

.service-category {
    margin-bottom: 50px;
}

.service-category:last-of-type {
    margin-bottom: 40px;
}

.category-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.category-header h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
}

.category-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 600;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 48px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 8px;
    position: relative;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 80%;
}

.service-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.service-duration {
    font-size: 12px;
    color: var(--color-text-muted);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-accent);
}

.service-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

.note-star {
    color: var(--color-accent);
}

.services-cta-wrapper {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 120px 24px;
    background-color: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
}

.about-image-arch {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 300px 300px 0 0; /* Arched design as reference */
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 10px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    padding: 16px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-usps {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.usp-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.usp-icon {
    color: var(--color-accent);
    font-size: 16px;
    line-height: 1;
    margin-top: 4px;
}

.usp-text h4 {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}

.usp-text p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   POLICIES & HOUSE RULES
   ========================================================================== */
.policies-section {
    padding: 120px 24px;
    background-color: var(--color-bg);
}

.policies-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.policy-card {
    background-color: var(--color-bg-dark);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.policy-card.highlight {
    border-color: var(--color-accent);
    background-color: #1F1710;
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.policy-icon {
    font-size: 24px;
}

.policy-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
}

.policy-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT & HOURS SECTION
   ========================================================================== */
.contact-section {
    padding: 120px 24px;
    background-color: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.contact-grid {
    max-width: var(--max-width);
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-intro {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 16px;
    color: var(--color-text);
}

.contact-link {
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 18px 0;
    font-size: 15px;
    color: var(--color-text);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
}

.highlight-day {
    color: var(--color-accent) !important;
}

.tag-koopavond {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--color-accent);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

.map-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
}

/* ==========================================================================
   BOTTOM CTA BAR
   ========================================================================== */
.bottom-cta {
    padding: 100px 24px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    text-align: center;
}

.bottom-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.bottom-cta p {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #111111;
    color: rgba(255, 255, 255, 0.4);
    padding: 40px 24px;
    border-top: 1px solid #222222;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 15px;
    color: rgba(254, 254, 254, 0.9);
    letter-spacing: 0.15em;
}

.footer-copyright {
    font-size: 12px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-wrapper {
        padding-right: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #1A1613;
        z-index: 105;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 100px 40px 40px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .hamburger {
        display: block;
    }
    
    /* Open hamburger styles */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    
    .hero-content {
        margin-top: 40px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .gallery-track {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item:nth-child(4), .gallery-item:nth-child(5) {
        display: none;
    }
    
    .services-card-container {
        padding: 40px 24px;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   ACCORDION (ALGEMENE VOORWAARDEN)
   ========================================================================== */
.accordion-wrapper {
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 0 24px;
}

.accordion-title-main {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    color: var(--color-accent);
    margin-bottom: 32px;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-subtle);
}

.accordion-header-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.accordion-header-btn:hover {
    background-color: rgba(197, 168, 128, 0.04);
}

.accordion-icon {
    font-size: 12px;
    color: var(--color-accent);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(12, 10, 9, 0.2);
}

.accordion-body {
    padding: 0 28px 24px 28px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.accordion-body p {
    margin-bottom: 12px;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.accordion-body li {
    margin-bottom: 8px;
}

/* ==========================================================================
   PORTFOLIO / CREATIES SECTION
   ========================================================================== */
.portfolio-section {
    padding: 120px 24px;
    background-color: var(--color-bg);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.portfolio-tabs .tab-btn {
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-tabs .tab-btn:hover {
    color: var(--color-text);
    border-color: var(--color-accent);
}

.portfolio-tabs .tab-btn.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-dark);
    position: relative;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
