/* css/style.css */
:root {
    --primary: #e08722;
    --secondary: #CAC1B2;
    --accent: #CA3112;
    --dark: #65503A;
}

:root {
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lora', serif;
    --primary-color: #2a2a2a;
    --text-color: #444;
    --accent-color: #e0d7c6;
  }

  :root {
    --background-light: #fafafa;
    --background-white: #ffffff;
    --primary-color: #2a2a2a;
    --text-color: #444;
    --accent-color: #e0d7c6;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lora', serif;
  }

/* Global Resets & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: rgba(202, 193, 178, 0.95) !important;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark) !important;
    position: relative;
    padding: 0.5rem 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    opacity: 0.4;
    object-fit: cover;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, 
            var(--accent) 0px, 
            var(--accent) 10px, 
            transparent 10px, 
            transparent 20px),
        repeating-linear-gradient(-45deg, 
            var(--primary) 0px, 
            var(--primary) 10px, 
            transparent 10px, 
            transparent 20px);
    background-blend-mode: multiply;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Space between title and button */
}

.hero-title {
    color: var(--accent) !important; /* Matches button color */
    text-shadow: 
        1px 1px 2px rgba(101, 80, 58, 0.7), /* Primary color shadow */
        -1px -1px 2px rgba(255, 255, 255, 0.2), /* Light accent */
        0 0 8px rgba(202, 193, 178, 0.4); /* Secondary color glow */
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 0 !important;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    border-radius: 3px;
    transform: skewX(-15deg);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(202, 49, 18, 0.3);
}

.cta-button {
    width: fit-content; /* Makes button only as wide as its content */
    margin-top: 1rem; /* Extra spacing if needed */
}

/* Floating Button */
.floating-commission-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(202, 49, 18, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(202, 193, 178, 0.98);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0 0 8px 8px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 85vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .floating-commission-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Animation Enhancements */
@keyframes heritage-pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* Add this to your CSS */
@media (max-width: 768px) {
    .floating-commission-btn {
        /* Positioning */
        bottom: 2rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        
        /* Visual Adjustments */
        width: 80%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        padding: 1rem 1.5rem;
        
        /* Visibility Enhancements */
        background-color: rgba(202, 49, 18, 0.95); /* Semi-transparent version of accent */
        border: 2px solid var(--secondary);
        box-shadow: 0 4px 15px rgba(101, 80, 58, 0.4);
        
        /* Typography */
        font-size: 1.1rem;
    }

    /* Optional: Add pulse animation for better visibility */
    @keyframes mobile-pulse {
        0% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
        100% { transform: translateX(-50%) scale(1); }
    }

    .floating-commission-btn {
        animation: mobile-pulse 2s ease-in-out infinite;
    }
}


/* Cultural Intro Styles */
.cultural-intro {
    padding: 4rem 0;
    background: rgba(202, 193, 178, 0.1);
    position: relative;
    overflow: hidden;
}

.floating-palette, .floating-drums {
    position: relative;
    min-height: 200px;
}

.tilt-left {
    transform: rotate(-15deg) translateY(0);
    animation: float-left 4s ease-in-out infinite;
    max-width: 150px;
    position: absolute;
    left: -30px;
    filter: drop-shadow(2px 2px 5px rgba(101, 80, 58, 0.2));
}

.tilt-right {
    transform: rotate(15deg) translateY(0);
    animation: float-right 4s ease-in-out infinite;
    max-width: 180px;
    position: absolute;
    right: -30px;
    filter: drop-shadow(-2px 2px 5px rgba(101, 80, 58, 0.2));
}

.intro-text {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(101, 80, 58, 0.1);
}

@keyframes float-left {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-18deg) translateY(-20px); }
}

@keyframes float-right {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(18deg) translateY(-20px); }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .tilt-left, .tilt-right {
        position: static;
        transform: none;
        max-width: 120px;
        margin: 0 auto 2rem;
    }
    
    .floating-palette, .floating-drums {
        min-height: auto;
        text-align: center;
    }
    
    .intro-text {
        order: 3;
        margin-top: 2rem;
    }
}


/* Custom Carousel Sizing */
.carousel {
    max-width: 1200px; /* Control maximum width */
    margin: 0 auto;
    background: var(--secondary);
}

.image-container {
    position: relative;
    height: 70vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Portrait image styling */
.img-portrait {
    width: auto;
    height: 85% !important;
    max-width: 90%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

/* Landscape image styling */
.img-landscape {
    width: 90% !important;
    height: auto !important;
    max-height: 85%;
    object-fit: contain;
}

/* Carousel Enhancements */
.image-container {
    max-height: 80vh;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.carousel-caption {
    background: rgba(101, 80, 58, 0.85);
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    border-radius: 5px;
    padding: 1.5rem;
}

.yoruba-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.english-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.medium-text {
    font-style: italic;
    opacity: 0.9;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .image-container {
        max-height: 60vh;
    }
    
    .yoruba-title {
        font-size: 1.5rem;
    }
    
    .english-title {
        font-size: 1.3rem;
    }
    
    .carousel-caption {
        width: 90%;
        padding: 1rem;
    }
}


/* Smooth transitions */
.carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: block !important;
}

.carousel-item.active {
    opacity: 1;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .image-container {
        height: 50vh;
        min-height: 400px;
        padding: 1rem;
    }
    
    .img-portrait {
        height: 75% !important;
    }
    
    .img-landscape {
        width: 95% !important;
    }
}

/* Prevent Bootstrap default transitions */
.carousel-inner {
    transition: none !important;
    transform: none !important;
}

/* Fix image sizing and transitions */
.carousel-item {
    height: 70vh; /* Adjust this value as needed */
    min-height: 500px;
    background-color: var(--secondary); /* Fill empty space with your color */
}

.carousel-item img {
    width: auto !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: contain; /* Show full image without cropping */
    margin: 0 auto; /* Center images horizontally */
    transition: opacity 0.2s ease; /* Smooth transition between slides */
}

/* Smooth fade transition instead of slide */
.carousel-item {
    position: relative;
    transform: none !important;
    transition: opacity 0.1s ease !important;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item:not(.active) {
    opacity: 0;
    display: block !important; /* Override bootstrap display property */
}

/* Mobile optimization */
@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
        min-height: 300px;
    }
}

/* Artist Statement Section */
.artist-statement {
    padding: 5rem 0;
    background: 
        linear-gradient(rgba(202, 193, 178, 0.9), rgba(202, 193, 178, 0.9)),
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,50 Q40,25 60,50 T100,50" fill="%23816E58" opacity="0.1"/></svg>');
}

/* Benin Bronze Portrait Effect */
.bronze-portrait-frame {
    position: relative;
    border: 15px solid var(--primary);
    border-image: 
        linear-gradient(45deg, #65503A 0%, #816E58 100%) 1;
    transform: rotate(3deg);
    box-shadow: 15px 15px 0 var(--accent);
}

.benin-portrait {
    filter: grayscale(100%) brightness(90%) contrast(120%) 
            sepia(30%) hue-rotate(-5deg);
    mix-blend-mode: multiply;
    width: 100%;
    height: auto;
}

.uli-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, 
            var(--accent) 0px, 
            var(--accent) 3px, 
            transparent 3px, 
            transparent 6px);
    opacity: 0.15;
    pointer-events: none;
}

/* Text Styling */
.statement-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark);
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.nsibidi-symbol {
    font-family: 'Nsibidi', sans-serif; /* You'll need font file */
    font-size: 2.5em;
    margin-right: 0.5rem;
}

blockquote p {
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

blockquote p::before {
    content: '“';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    left: -1.5rem;
    top: -1rem;
    opacity: 0.7;
}

.signature {
    margin-top: 2rem;
    text-align: right;
}

.nsibidi-sign {
    font-family: 'Nsibidi', sans-serif;
    font-size: 2rem;
    margin-right: 1rem;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--dark);
    letter-spacing: 0.1em;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .bronze-portrait-frame {
        margin-bottom: 2rem;
        transform: rotate(1deg);
    }
    
    blockquote p {
        font-size: 1.1rem;
    }
}




/* Exhibition Timeline Styles */
.exhibition-timeline {
    padding: 4rem 0;
    background: linear-gradient(rgba(202, 193, 178, 0.1), rgba(202, 193, 178, 0.1));
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-date {
    width: 45%;
    text-align: right;
    padding-right: 1rem;
    font-family: 'Playfair Display';
    color: var(--dark);
    font-size: 1.5rem;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.calabash-marker {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 5px var(--secondary);
}

.timeline-content {
    width: 45%;
    padding-left: 2rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 8px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--primary);
}

.zuma-rock {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .timeline-date,
    .timeline-content {
        width: 90%;
        text-align: left;
        padding: 1rem;
    }

    .timeline-icon {
        left: 20px;
        transform: none;
    }

    .timeline-content::before {
        left: auto;
        right: 100%;
        border-right: none;
        border-left: 10px solid var(--primary);
    }

    .zuma-rock {
        right: auto;
        left: -20px;
    }
}


/* ===== Visual Side Styles ===== */
.cta-visual {
    min-height: 655px;
    background-image: 
        linear-gradient(rgba(247, 12, 0, 0.9), 
        url('assets/cta-bg.jpg'));
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    position: relative;
    overflow: hidden;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(248, 44, 3, 0.15) 0px,
            rgba(1, 1, 1, 0.15) 40px,
            transparent 10px,
            transparent 10px
        );
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: pattern-scroll 20s linear infinite;
}

@keyframes pattern-scroll {
    from { background-position: 0 0; }
    to { background-position: 80px 80px; }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cta-visual {
        min-height: 300px;
        background-position: 60% center;
    }
}

/* Form Styling */
.commission-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary);
}

.form-title {
    font-family: 'Cormorant Garamond';
    color: var(--dark);
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--primary);
    background: rgba(202, 193, 178, 0.1);
    font-family: 'Playfair Display';
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(202, 49, 18, 0.1);
}

.budget-selector {
    position: relative;
}

.currency {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-weight: 700;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    font-family: 'Cormorant Garamond';
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary);
    letter-spacing: 0.1em;
}

.arrow-icon {
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .commission-form {
        padding: 1.5rem;
    }
    
    .form-input {
        padding: 0.6rem;
    }
}







/* Testimonials Styles */
.testimonials {
    padding: 4rem 0;
    background: rgba(202, 193, 178, 0.1);
}

.testimonial-card {
    border: 2px solid var(--primary);
    padding: 1.5rem;
    background: white;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: -1;
    background: repeating-linear-gradient(
        45deg,
        var(--accent) 0px,
        var(--accent) 10px,
        transparent 10px,
        transparent 20px
    );
}

.uli-frame {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    padding: 3px;
    background: white;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cowrie-rating {
    color: var(--accent);
    letter-spacing: 2px;
    margin: 0.5rem 0;
}

blockquote {
    font-style: italic;
    color: var(--dark);
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 1rem;
    }
    
    .uli-frame {
        width: 60px;
        height: 60px;
    }
}

/* Footer Styles */
.site-footer {
    background: var(--dark);
    color: var(--secondary);
    padding: 4rem 0 0;
    border-top: 3px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--secondary);
    opacity: 0.9;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.instagram-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(202, 193, 178, 0.2);
    padding: 2rem 0;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.heart {
    color: var(--accent);
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    
    .instagram-link {
        justify-content: center;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 93%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
}




/* Philosophy Hero */
.philosophy-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(rgba(202, 193, 178, 0.1), 
                url('texture.png') center/cover);
}

.manifesto-content {
    max-width: 780px;
    margin: 0 auto;
}

.manifesto-title {
    font-family: 'Cormorant Garamond';
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.manifesto-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 3rem;
}

.manifesto-text p {
    margin-bottom: 1.5rem;
    text-indent: 2rem;
}

.nsibidi-signature {
    text-align: center;
    margin-top: 3rem;
}

.handwritten-signature {
    font-family: 'Nsibidi', sans-serif; /* Requires font file */
    font-size: 3.5rem;
    color: var(--primary);
}

.signature-caption {
    display: block;
    font-style: italic;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .philosophy-hero {
        padding: 4rem 0;
    }
    
    .manifesto-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .handwritten-signature {
        font-size: 2.5rem;
    }
}


/*mission section*/
:root {
  --primary-color: #2a2a2a;       /* Your existing dark text color */
  --secondary-color: #666;       /* Subdued gray for accents */
  --accent-color: #e0d7c6;       /* Warm neutral for lines/backgrounds */
  --text-color: #444;            /* Body text color */
  --heading-font: 'Playfair Display', serif;  /* Your elegant heading font */
  --body-font: 'Lora', serif;    /* Your body font from previous design */
}

.mission-section {
  padding: 4rem 0;
  background: var(--accent-color); /* Matches your website's warm tones */
}

.mission-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mission-heading {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 1.8rem;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 1rem;
}

.mission-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--secondary-color); /* Subtle decorative line */
}

.mission-statement {
  font-family: var(--body-font);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 2rem 0;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



/* Alternating Timeline Items (Desktop) */
@media (min-width: 769px) {
    .timeline-item:nth-child(odd) .timeline-date {
        order: 1;
        text-align: right;
        padding-right: 1.5rem;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        order: 3;
        text-align: left;
        padding-left: 2rem;
        margin-left: 50%;
    }

    .timeline-item:nth-child(even) .timeline-date {
        order: 3;
        text-align: left;
        padding-left: 2rem;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 1;
        text-align: right;
        padding-right: 2rem;
        margin-right: 50%;
    }

    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
}

/* Mobile Optimization Reset */
@media (max-width: 768px) {
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-date,
    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
        padding: 1rem !important;
        text-align: left !important;
    }
    
    .timeline-content {
        margin-left: 4rem !important;
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    border-left: 3px solid var(--accent);
}

.timeline-item:nth-child(even) .timeline-content {
    border-right: 3px solid var(--primary);
}


/* About Core Styles */
.about-core {
    padding: 4rem 0;
    background: linear-gradient(rgba(202, 193, 178, 0.05), 
                rgba(202, 193, 178, 0.05)),
                url('assets/texture-light.jpg');
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.adinkra-title {
    display: block;
    font-family: 'Adinkra', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border: 2px solid var(--primary);
    position: relative;
}

.cultural-pillars {
    list-style: none;
    margin: 1.5rem 0;
}

.cultural-pillars li {
    margin: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
}

.pillar-icon {
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 1.5rem;
}

.artist-voice {
    font-style: italic;
    color: var(--primary);
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.mission-list {
    list-style: none;
    margin: 1.5rem 0;
}

.mission-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--secondary);
}

.signature-block {
    margin-top: 2rem;
    text-align: right;
}

.nsibidi-sig {
    font-family: 'Nsibidi', sans-serif;
    font-size: 2rem;
    display: block;
}

.legal-disclosure {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary);
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
    background: #919090;
    padding: 1rem;
    
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .story-card {
        grid-template-columns: 1fr;
    }
    
    .mission-card {
        margin-top: 2rem;
    }
    
    .cultural-pillars li {
        padding-left: 2rem;
    }
}









/* Timeline Content Centering */
@media (min-width: 769px) {
    .timeline-date {
        width: 40%; /* Reduced from 25% */
        padding-right: 1.5rem; /* Reduced from 3rem */
    }

    .timeline-content {
        width: 40%; /* Reduced from 25% */
        padding-left: 1.5rem; /* Reduced from 3rem */
        margin-left: 2rem; /* New property */
        transform: translateX(-50%); /* Centers content */
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 50%;
        transform: translateX(-2rem); /* Custom adjustment */
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 50%;
        transform: translateX(2rem); /* Mirror adjustment */
    }

    .timeline-marker {
        left: 50%;
        transform: translateX(-50%) scale(1.2); /* Emphasize center */
        z-index: 2;
    }
}

/* Artist Profile Styles */
.artist-profile {
    padding: 7rem 0;
    background: linear-gradient(rgba(202, 193, 178, 0.05), 
                rgba(202, 193, 178, 0.05)),
                url('assets/texture-light.jpg');
}

.artist-portrait-frame {
    position: relative;
    border: 15px solid var(--primary);
    border-image: linear-gradient(45deg, var(--primary) 0%, var(--dark) 100%) 1;
    padding: 10px;
    background: white;
}

.artist-image {
    width: 100%;
    height: auto;
    filter: grayscale(20%) contrast(110%);
    mix-blend-mode: multiply;
}

.cultural-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(202, 49, 18, 0.1) 0px,
        rgba(202, 49, 18, 0.1) 40px,
        transparent 40px,
        transparent 80px
    );
    pointer-events: none;
}

.signature-block {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--secondary);
    padding: 1rem;
    border: 2px solid var(--accent);
}

.handwritten-sig {
    font-family: 'Nsibidi', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    display: block;
}

.artist-philosophy {
    font-style: italic;
    color: var(--primary);
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.artist-principles {
    list-style: none;
    margin: 2rem 0;
}

.artist-principles li {
    margin: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
}

.principle-icon {
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 1.5rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .artist-portrait-frame {
        margin-bottom: 2rem;
    }
    
    .signature-block {
        right: 10px;
        padding: 0.5rem;
    }
    
    .handwritten-sig {
        font-size: 1.5rem;
    }
}

/* Journey Heading */
.journey-heading {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark);
    font-size: 1.4rem;
    margin: 1.8rem 0 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(129, 110, 88, 0.15);
    position: relative;
}

.journey-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent);
}



/* ----- Awards Section Styles ----- */
:root {
  --primary-color: #2a2a2a;
  --secondary-color: #666;
  --accent-color: #e0d7c6;
  --text-color: #444;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Lora', serif;
}

.awards-section {
  padding: 4rem 0;
  background-color: #e0d7c6; 
}

.awards-container {
  position: relative;
}

.section-heading {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
  color: var(--primary-color);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--secondary-color);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.award-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.award-item:hover {
  transform: translateY(-5px);
}

.award-image {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--accent-color);
}

.award-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin: 0 0 0.5rem;
}

.award-year {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.award-description {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-top: 4px;
}

  /* Reusing your existing design variables */
:root {
    --primary-color: #2a2a2a;
    --accent-color: #e0d7c6;
    --heading-font: 'Playfair Display', serif;
  }
  
  .portfolio-hero {
    position: relative;
    padding: 8rem 1rem;
    background: 
      /* Base color with 95% opacity */
      rgba(250, 250, 250, 0.95),
      /* Yoruba-inspired diagonal pattern */
      repeating-linear-gradient(
        45deg,
        var(--accent-color) 0px,
        var(--accent-color) 2px,
        transparent 2px,
        transparent 8px
      );
    background-blend-mode: multiply;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin: 24px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  /* Reuse existing fadeIn animation from your site */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    .portfolio-hero {
      padding: 5rem 1rem;
    }
    
    .hero-title {
      font-size: 2.2rem;
    }
  }

  /* Heritage Statement Styles */
.heritage-statement {
    padding: 4rem 1.5rem;
    background: rgba(250, 250, 250, 0.98);
    border-top: 1px solid var(--accent-color);
  }
  
  .statement-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section-subtitle {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
  }
  
  .heritage-text {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 auto;
    max-width: 600px;
  }
  
  @media (max-width: 768px) {
    .heritage-statement {
      padding: 2.5rem 1rem;
    }
    
    .section-subtitle {
      font-size: 1.5rem;
    }
    
    .heritage-text {
      font-size: 1rem;
    }
  }

  .gallery-grid {
    padding: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 300px;
    gap: 15px;
    grid-auto-flow: dense;
}

.grid-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.grid-container img:hover {
    transform: scale(1.02);
}

/* Optional: Adjust specific image sizes */
.grid-container img:nth-child(4n+1) {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

  /* CSS */
  :root {
    --primary-color: #2a2a2a;
    --secondary-color: #666;
    --accent-color: #e0d7c6;
    --text-color: #444;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lora', serif;
  }
  
  .portfolio-exhibitions {
    padding: 4rem 1.5rem;
    background: rgba(250, 250, 250, 0.98);
  }
  
  .portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .portfolio-heading {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
  }
  
  .exhibition-block {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .exhibition-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .exhibition-title {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .exhibition-year {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-left: 1rem;
  }
  
  .exhibition-description {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 1rem auto;
  }
  
  .stack-container {
    position: relative;
    margin: 3rem 0;
  }
  
  .stack-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto 3rem;
    width: fit-content;
    position: relative;
  }
  
  .stack-title span {
    background: #fff;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }
  
  .stack-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
  }
  
  .stack {
    position: relative;
    width: 280px;
    height: 380px;
    margin: 0 auto;
    cursor: pointer;
  }
  
  .stack-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transform-origin: bottom center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  
  .stack-item:nth-child(n+5) { display: none; }
  
  .stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .stack:hover .stack-item {
    transform: rotate(calc(-4deg * var(--i))) 
              translate(calc(-8px * var(--i)), calc(-15px * var(--i)));
  }
  
  .stack-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 10;
    opacity: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .stack:hover .stack-button {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
  }
  
  .lightbox-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .lightbox img {
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .lightbox-close {
    position: absolute;
    top: 2rem;
    right: 1rem;
    background: none;
    border: none;
    color: #e81313;
    font-size: 5.5rem;
    cursor: pointer;
    background-position-y: top;
}
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 768px) {
    .stack { width: 310px; height: 320px; }
    .lightbox-content { grid-template-columns: 1fr; }
  }

  /* Services Hero Section CSS */
.services-hero {
    padding: 8rem 2rem 6rem;
    background: 
      linear-gradient(rgba(250, 250, 250, 0.9), 
      rgba(250, 250, 250, 0.9)),
      repeating-linear-gradient(
        45deg,
        var(--accent-color) 0px,
        var(--accent-color) 2px,
        transparent 2px,
        transparent 8px
      );
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .services-hero__content {
    width: 100%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .services-hero__title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 400;
    color: #f54e29;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .services-hero__subtitle {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
  }
  
  /* Animation Classes - Same as About Page */
  [data-scroll].is-visible .services-hero__title,
  [data-scroll].is-visible .services-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (max-width: 768px) {
    .services-hero {
      padding: 6rem 1.5rem 4rem;
      min-height: 50vh;
    }
    
    .services-hero__title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    
    .services-hero__subtitle {
      font-size: 1rem;
    }
  }

  /* Service Cards Grid CSS */
.services-cards {
    padding: 4rem 0;
    background: var(--background-light);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: var(--background-white);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
  }
  
  .service-icon {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
  }
  
  .card-title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .card-text {
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
    line-height: 1.6;
    min-height: 4.5em;
    margin-bottom: 1.5rem;
  }
  
  .card-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    font-family: var(--body-font);
    font-size: 0.95rem;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .card-button:hover {
    background: var(--accent-color);
    color: var(--background-white);
  }
  
  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      gap: 1.5rem;
    }
    
    .service-card {
      padding: 1.5rem;
    }
  }

  /* Process Section */
.process-section {
    padding: 4rem 0;
    background: white;
  }
  
  .section-heading {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
  }
  
  /* Connector Line */
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 2px;
    background: var(--accent-color);
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  .process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .process-node {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .process-icon {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
  }
  
  .step-title {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    font-family: var(--body-font);
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .process-timeline {
      flex-direction: column;
      align-items: flex-start;
      padding: 2rem 1rem;
    }
  
    .process-timeline::before {
      width: 2px;
      height: 80%;
      left: 25px;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .process-step {
      flex: none;
      width: 100%;
      text-align: left;
      padding-left: 70px;
      margin-bottom: 2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
  
    .process-node {
      position: absolute;
      left: 0;
      margin: 0;
    }
  
    .step-description {
      max-width: none;
      text-align: left;
    }
  }

 /* CSS */
.licensing-section {
    padding: 4rem 0;
    background: #e0d7c6;
  }
  
  .licensing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .license-option {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
  }
  
  .license-title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .license-list {
    list-style: none;
    margin-bottom: 1.5rem;
  }
  
  .license-list li {
    font-family: var(--body-font);
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .license-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
  }
  
  .download-link {
    font-family: var(--body-font);
    color: var(--primary-color);
    text-decoration: underline;
    margin-top: 1rem;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .licensing-grid {
      grid-template-columns: 1fr;
      padding: 0 1rem;
    }
    
    .license-option {
      padding: 1.5rem;
    }
  }

  .services-intro {
    padding: 2rem 0;
    background: #e0d7c6;
  }
  
  .intro-text {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .intro-text {
      padding: 0 1.5rem;
      font-size: 1rem;
    }
  }

 /* Contact CTA Styles */
.contact-cta {
    padding: 3rem 1rem;
    background: var(--background-light);
    border-top: 1px solid var(--accent-color);
    text-align: center;
  }
  
  .cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-family: var(--body-font); /* Using your body font */
    font-size: 1rem;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background: var(--accent-color);
    color: var(--background-white);
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .contact-cta {
      padding: 2rem 1rem;
    }
    
    .cta-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
    }
  }

 /* Media Page Hero Section */
.media-hero {
    padding: 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
      linear-gradient(rgba(250, 250, 250, 0.9), rgba(250, 250, 250, 0.9)),
      repeating-linear-gradient(45deg,
        var(--accent-color) 0px,
        var(--accent-color) 2px,
        transparent 2px,
        transparent 8px
      );
    text-align: center;
  }
  
  .page-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #f54e29;
    margin: 0 auto 1.5rem;
    max-width: 90%;
  }
  
  .page-subtitle {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .media-hero {
      min-height: 50vh;
      padding: 1rem;
    }
    
    .page-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    
    .page-subtitle {
      font-size: 1rem;
      padding: 0 1rem;
    }
  }

  /* Prevent title text wrapping on desktop */
@media (min-width: 769px) {
    .page-title {
      white-space: nowrap;
      max-width: none !important;
      margin-bottom: 0.5rem !important;
    }
    
    .page-subtitle {
      max-width: 100% !important;
    }
  }

  /* Publications Grid */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .publication-card {
    background: var(--background-white);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .publication-logo {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .publication-logo img {
    max-height: 40px;
    max-width: 160px;
    filter: grayscale(100%) brightness(0%);
    opacity: 0.8;
  }
  
  .article-title {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .article-excerpt {
    font-family: var(--body-font);
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
  }
  
  .publication-date {
    font-family: var(--body-font);
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin: 0.5rem 0;
  }
  
  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color);
  }
  
  .read-button {
    padding: 0.5rem 1.2rem;
    font-family: var(--body-font);
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .platform-icon {
    width: 24px;
    height: 24px;
    stroke: var(--secondary-color);
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    .publications-grid {
      grid-template-columns: 1fr;
      padding: 1rem;
    }
    
    .publication-card {
      padding: 1rem;
    }
  }

  /* CSS Variables (add to :root) */
:root {
    --background-white: #ffffff;
    --accent-color: #e0d7c6;
    --primary-color: #2a2a2a;
    --text-color: #444;
    --secondary-color: #666;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lora', serif;
  }
  
  /* Publication Cards */
  .publication-card {
    background: var(--background-white);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .publication-logo img {
    max-height: 40px;
    max-width: 160px;
    filter: grayscale(100%) brightness(0%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .publication-card:hover .publication-logo img {
    opacity: 1;
  }
  
  /* Platform Icons */
  .platform-icon {
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
  }
  
  /* Dynamic Icon Coloring */
  .publication-card[data-platform="facebook"] .platform-icon {
    stroke: #1877F2; /* Facebook blue */
  }

  /* Tablet View (600px - 1024px) */
@media (min-width: 600px) and (max-width: 1024px) {
    .publications-grid {
      grid-template-columns: repeat(2, 1fr);
      padding: 1.5rem;
      gap: 1.5rem;
    }
  
    .article-title {
      font-size: 1rem;
    }
  
    .article-excerpt {
      font-size: 0.9rem;
    }
  
    .publication-logo img {
      max-height: 35px;
      max-width: 140px;
    }
  }
  
  /* Mobile View (≤768px) */
  @media (max-width: 768px) {
    .publications-grid {
      grid-template-columns: 1fr;
      padding: 1rem;
      gap: 1.2rem;
    }
  
    .publication-card {
      padding: 1rem;
    }
  
    .publication-logo {
      height: 50px;
      margin-bottom: 0.8rem;
    }
  
    .publication-logo img {
      max-height: 30px;
      max-width: 120px;
    }
  
    .article-title {
      font-size: 1rem;
    }
  
    .article-excerpt {
      font-size: 0.9rem;
      -webkit-line-clamp: 3;
    }
  
    .read-button {
      padding: 0.4rem 1rem;
      font-size: 0.9rem;
    }
  
    .platform-icon {
      width: 18px;
      height: 18px;
    }
  }
  
  /* Small Mobile (≤480px) */
  @media (max-width: 480px) {
    .publication-date {
      font-size: 0.8rem;
    }
    
    .card-footer {
      margin-top: 0.8rem;
      padding-top: 0.8rem;
    }
  }

  /* Reuse existing hero styles with 100% matching properties */
.contact-hero {
    padding: 8rem 2rem 6rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: 
      linear-gradient(rgba(250, 250, 250, 0.9), rgba(250, 250, 250, 0.9)),
      repeating-linear-gradient(45deg,
        var(--accent-color) 0px,
        var(--accent-color) 2px,
        transparent 2px,
        transparent 8px
      );
    text-align: center;
  }
  
  /* Inherit exact typography from Services page */
  .page-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #f54e29;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
  }
  
  .page-subtitle {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Match mobile styles from Services hero */
  @media (max-width: 768px) {
    .contact-hero {
      padding: 6rem 1.5rem 4rem;
      min-height: 50vh;
    }
    
    .page-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    
    .page-subtitle {
      font-size: 1rem;
      padding: 0 1rem;
    }
  }

  /* Center-align hero content */
.contact-hero .content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .page-title,
  .page-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
  
  /* Prevent title wrapping on desktop */
  @media (min-width: 769px) {
    .page-title {
      white-space: nowrap;
      max-width: none !important;
    }
  }

  /* Contact Grid Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .contact-info {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  
  .contact-detail h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .contact-detail a,
  .contact-detail p {
    font-family: var(--body-font);
    color: var(--text-color);
    display: block;
    margin-bottom: 0.3rem;
    text-decoration: none;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
  }
  
  .contact-form {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-color);
    font-family: var(--body-font);
    background: var(--background-white);
  }
  
  .submit-button {
    background: transparent;
    border: 2px solid var(--accent-color);
    padding: 0.8rem 2rem;
    font-family: var(--body-font);
    color: var(--primary-color);
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    background: var(--accent-color);
    color: var(--background-white);
  }
  
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
      padding: 1rem;
      gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
      padding: 1.5rem;
    }
    
    .contact-icon {
      width: 30px;
      height: 30px;
    }
  }

  /* Add to existing CSS */
body {
    overflow-x: hidden; /* Prevent horizontal overflow */
    width: 100%;
  }
  
  .content-container {
    max-width: 100%; /* Contain content within viewport */
    padding: 0 15px; /* Add safe spacing */
    box-sizing: border-box;
  }
  
  .contact-grid {
    width: 100%;
    min-width: 0; /* Fix grid overflow */
  }
  
  /* Fix form elements overflow */
  .form-input, 
  .form-select, 
  .form-textarea, 
  .submit-button {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Mobile optimization enhancement */
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
      width: 100vw;
      padding: 0 1rem;
    }
    
    .contact-info, 
    .contact-form {
      width: 100%;
      min-width: unset;
    }
    
    .contact-method {
      flex-wrap: wrap;
    }
  }
  
  /* Prevent images/logo overflow */
  .contact-logo img {
    max-width: 100%;
    height: auto;
  }

  /* Add this to your existing CSS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
  
  html {
    overflow-x: hidden;
  }
  
  body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }
  
  /* Fix for all sections */
  header, 
  section, 
  footer, 
  .content-container, 
  .contact-grid, 
  .publications-grid, 
  .services-grid {
    width: 100vw !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Specific element fixes */
  img, 
  iframe, 
  table, 
  pre, 
  code {
    max-width: 100%;
    height: auto;
  }
  
  /* Grid/Table Fixes */
  .grid-three, 
  .services-grid, 
  .publications-grid, 
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)) !important;
  }
  
  /* Footer specific */
  footer {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  footer > div {
    flex: 1 1 250px;
    min-width: 250px;
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    body {
      touch-action: pan-y;
    }
    
    section {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
    
    .content-container {
      width: 100% !important;
      padding-left: 5px !important;
      padding-right: 5px !important;
    }
    
    /* Force single column layout */
    .grid-three, 
    .services-grid, 
    .contact-grid, 
    .publications-grid {
      grid-template-columns: 1fr !important;
    }
    
    /* Prevent text overflow */
    h1, h2, h3, p, a {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
  }

  /* CSS */
.media-grid {
  padding: 2rem 1rem;
  background: var(--secondary);
  overflow: hidden;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: min-content;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid-item {
  display: flex;
  justify-content: center;
  background: var(--dark);
  border-radius: 8px;
  padding: 0.5rem;
}

.grid-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .image-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .image-grid {
      grid-template-columns: 1fr;
  }
  .grid-item {
      padding: 0.3rem;
  }
}

/* gallery.css */
.gallery-page1 {
  padding: 2rem 1rem;
  background: var(--secondary);
}

.gallery-container1 {
  max-width: 1200px;
  margin: 0 auto;
}

.image-group1 {
  margin-bottom: 3rem;
}

.group-divider1 {
  height: 1px;
  background: var(--dark);
  margin: 2rem auto;
  width: 80%;
  opacity: 0.2;
}

.image-group:first-child .group-divider {
  display: none;
}

.image-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.image-grid img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border: 2px solid var(--primary);
  border-radius: 4px;
  background: white;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.image-grid img:hover {
  transform: scale(1.02);
}

.image-grid .featured {
  grid-column: span 2;
  height: 400px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.lightbox-content {
  max-width: 100%;
  max-height: 90%;
  position: absolute;
  top: 52%;
  left: 12%;
  transform: translate(-12%, -50%);
  object-fit: contain;
}

.close, .prev, .next {
  color: var(--secondary);
  font-size: 3rem;
  position: absolute;
  cursor: pointer;
}

.close {
  right: 2rem;
  top: 1rem;
}

.prev, .next {
  top: 50%;
  transform: translateY(-50%);
}

.prev { left: 2rem; }
.next { right: 2rem; }

@media (max-width: 768px) {
  .image-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .image-grid .featured {
      grid-column: span 2;
      height: 300px;
  }
}

@media (max-width: 480px) {
  .image-grid {
      grid-template-columns: 1fr;
  }
  
  .image-grid .featured {
      height: 250px;
  }
}

/* CSS */
.kilajolu-section {
  padding: 2rem 1rem;
  background: var(--secondary);
}

.section-title {
  color: var(--primary);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.kilajolu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.kilajolu-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  background: var(--dark);
  padding: 4px;
}

@media (max-width: 768px) {
  .kilajolu-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .kilajolu-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
      font-size: 1.5rem;
  }
}

/* CSS */
.video-section {
  padding: 2rem 1rem;
  background: var(--secondary);
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}

.video-container iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .video-container iframe {
      height: 400px;
  }
}

@media (max-width: 480px) {
  .video-container iframe {
      height: 250px;
  }
}

/* ===== Professional CV Styles ===== */
.cv-section {
  max-width: 1000px;
  margin: 1rem auto;
  padding: 0rem;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.cv-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #CAC1B2;
}

.cv-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #65503A;
  margin-bottom: 0.5rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #777;
  font-size: 1rem;
}

.contact-item i {
  color: #e08722;
  font-size: 1.1rem;
}

/* Accordion Styles */
.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #CAC1B2;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
  border-color: #e08722;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #f9f7f4;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #65503A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(202, 193, 178, 0.2);
}

.accordion-icon {
  color: #65503A;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  padding: 1.5rem;
  max-height: 3000px;
}

/* Content Styles */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.skill-item {
  background: #f9f7f4;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  border-left: 4px solid #e08722;
  transition: transform 0.2s ease;
}

.skill-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.exhibition-year {
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed #CAC1B2;
  color: #65503A;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.exhibition-year:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #e08722;
}

.exhibition-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  padding-left: 1.5rem;
}

.exhibition-item:last-child {
  border-bottom: none;
}

.exhibition-title {
  font-weight: 600;
  color: #65503A;
  font-size: 1.05rem;
}

.exhibition-location {
  color: #777;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.solo-exhibition {
  position: relative;
}

.solo-exhibition:before {
  content: "★";
  color: #e08722;
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 1.2rem;
}

.award-item, .media-item, .engagement-item {
  padding: 0.75rem 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
}

.award-icon, .engagement-icon {
  color: #e08722;
  font-size: 1.2rem;
  min-width: 25px;
  padding-top: 0.2rem;
}

.media-item a {
  color: #CA3112;
  text-decoration: none;
  transition: color 0.3s;
}

.media-item a:hover {
  color: #e08722;
  text-decoration: underline;
}

.media-icon {
  color: #CA3112;
  min-width: 20px;
  padding-top: 0.2rem;
}

.membership-item, .language-item, .interest-item {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  margin: 0 0.75rem 0.75rem 0;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.membership-item {
  background: rgba(202, 193, 178, 0.3);
  border: 1px solid #CAC1B2;
}

.language-item {
  background: rgba(224, 135, 34, 0.1);
  border: 1px solid rgba(224, 135, 34, 0.2);
}

.interest-item {
  background: rgba(202, 49, 18, 0.1);
  border: 1px solid rgba(202, 49, 18, 0.2);
}

.membership-item:hover, .language-item:hover, .interest-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cv-section {
      margin: 1rem;
      padding: 1.5rem;
  }
  
  .cv-header h2 {
      font-size: 2rem;
  }
  
  .contact-info {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
  }
  
  .accordion-header {
      padding: 1rem;
      font-size: 1.1rem;
  }
  
  .skills-grid {
      grid-template-columns: 1fr;
  }
  
  .accordion-content.active {
      padding: 1.25rem;
  }
  
  .exhibition-item, .exhibition-year {
      padding-left: 1rem;
  }
}