/*--------------------------------------------------------------
# CONTENTS
--------------------------------------------------------------
1. CSS VARIABLES & RESET
2. BASE STYLES
3. LAYOUT & CONTAINERS
4. HEADER & NAVIGATION
5. ANIMATIONS
6. SECTIONS & CONTENT
7. CARDS & GRIDS
8. ARTWORK DISPLAY
9. PROPOSAL PAGE COMPONENTS
10. UTILITY COMPONENTS
11. DARK MODE
12. ACCESSIBILITY
13. RESPONSIVE STYLES
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 1. CSS VARIABLES & RESET
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  /* Color scheme */
  --primary-color: #1e90ff;
  --secondary-color: #222;
  --text-color: #333;
  --background-color: #f9f9f9;
  --card-bg: #fff;
  --card-border: #eaeaea;
  --news-border: #ddd;
  --news-bg: #fff;
  --news-accent: #f0f7ff;
  
  /* Layout */
  --container-width: 90%;
  --max-container-width: 1200px;
  --content-padding: 40px 20px;
  
  /* Effects */
  --header-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
  --transition-speed: 0.3s;
  --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# 2. BASE STYLES
--------------------------------------------------------------*/
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    min-width: 320px; /* Minimum width for mobile devices */
    transition: background-color var(--transition-speed) ease-in-out,
              color var(--transition-speed) ease-in-out;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Base typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

p, li, a {
    font-family: 'Open Sans', sans-serif;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# 3. LAYOUT & CONTAINERS
--------------------------------------------------------------*/
.container {
    width: var(--container-width);
    max-width: var(--max-container-width);
    min-width: min(320px, 100%);
    margin: 0 auto;
    padding: var(--content-padding);
}

section {
    padding: 60px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section headings styling */
section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1em; /* Start with just the first letter's width */
    height: 4px;
    background: linear-gradient(to right, var(--primary-color) 50%, transparent 100%);
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

section:hover h2::after {
    width: 100%; /* Extend to full width on hover */
}

/*--------------------------------------------------------------
# 4. HEADER & NAVIGATION
--------------------------------------------------------------*/
/* Header styling */
header {
    background-color: #222;
    color: #fff;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.image-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 2rem 1rem;
}

/* Header background image and overlay */
header.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--header-overlay), url('../img/header.webp') center/cover no-repeat;
    background-position: center center;
    z-index: 0;
    animation: slowZoomFromCenter 20s infinite alternate ease-in-out;
    transform-origin: center center;
}

.title-area {
    position: relative;
    z-index: 2;
    padding: 1rem;
    width: 100%;
    white-space: nowrap;
    overflow: visible;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-area h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    animation: fadeInDown 1s ease-out;
}

.title-area .tagline {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    margin: 0.5rem 0 0 0;
    color: #ccc;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Navigation styles */
nav {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem;
    margin: 0;
    align-self: flex-end;
}

.nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 10px 5px;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.nav-list li {
    margin: 0.5rem;
    white-space: nowrap;
}

.nav-list a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.nav-list a:hover::after {
    width: 80%;
}

/* Nav focus states for keyboard accessibility */
.nav-list a:focus {
    outline: none;
}

.nav-list a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

/* Logo styling */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.logo {
  max-width: 80%;
  height: auto;
  max-height: 480px; /* Adjust based on your logo's proportions */
}

/* Hide text visually but keep it for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*--------------------------------------------------------------
# 5. ANIMATIONS
--------------------------------------------------------------*/
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoomFromCenter {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.3);
    }
}

/*--------------------------------------------------------------
# 6. SECTIONS & CONTENT
--------------------------------------------------------------*/
/* General text content */
section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

section ul {
    list-style-type: disc;
    padding-left: 20px;
}

section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* News items styling */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.news-item {
    display: flex;
    background: var(--news-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item-image-container {
    position: relative;
    width: 180px;
    min-width: 180px;
    overflow: hidden;
    border-right: 1px solid var(--news-border);
}

.news-item-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    min-width: 100%;
    object-fit: cover;
}

.news-item-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.news-item-header {
    margin-bottom: 0.5rem;
}

.news-item-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.news-item-date {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-item-date i {
    color: var(--primary-color);
}

.news-item-description {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.news-item-details {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    font-size: 0.9rem;
}

.news-item-location, .news-item-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-item-location i, .news-item-time i {
    color: var(--primary-color);
}

/* For mobile devices */
@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-item-image-container {
        width: 100%;
        height: 180px; /* Fixed height for mobile */
        min-width: auto;
        border-right: none;
        border-bottom: 1px solid var(--news-border);
    }
    
    .news-item-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

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

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-content .social-links {
    display: flex;
    gap: 1rem;
}

.footer-content .social-links a {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.footer-content .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/*--------------------------------------------------------------
# 7. CARDS & GRIDS
--------------------------------------------------------------*/
/* Card Grid Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1024px;
}

/* Card styling */
.card {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    aspect-ratio: 16/9;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.card:hover img {
    transform: scale(1.05);
    filter: none;
}

.card-content {
    position: absolute;
    inset: 0;
    padding: 1.25rem;   
    display: grid;
    grid-template-rows: 1fr auto;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.75) 100%
    );
    transition: background 0.5s ease;
}

.card-content:hover {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.0) 50%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.6) 100%
    );
}

.card-content h3 {
    color: #fff;
    font-size: 1.75rem;
    place-self: center;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,1.0);
    max-width: 90%;
    transition: transform 0.4s ease;
}

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

.card-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Collective member profiles */
.collective-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-profile {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    margin-bottom: 0; /* Remove bottom margin */
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    min-height: 600px;
    border-radius: 12px;
    transition: box-shadow 0.4s ease;
    width: 100%; /* Ensure full width */
}

.artist-header {
    cursor: pointer;
}

.artist-profile h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.artist-profile p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.artist-profile .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 0.75rem 0;
}

.artist-profile .social-links a {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.artist-profile .social-links a:hover {
    background-color: rgba(30, 144, 255, 0.1);
    transform: translateX(5px);
    text-decoration: none;
}

.artist-profile .social-links a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Profile button styling */
.profile-link-container {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
}

.profile-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-button:hover {
    background-color: #0b7dda;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    text-decoration: none;
}

/*--------------------------------------------------------------
# 8. ARTWORK DISPLAY
--------------------------------------------------------------*/
/* Common image styles */
.responsive-image {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    flex-shrink: 0;
}

/* Artwork display with hover caption */
.artwork, .headshot {
    position: relative;
    cursor: pointer;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 1rem;
    background-color: transparent; /* Changed from #000 to transparent */
    font-size: 0; /* Eliminate space from inline elements */
    line-height: 0; /* Eliminate line height space */
}

.artwork::after {
    content: attr(data-title) ' (' attr(data-date) ')\A by ' attr(data-artist);
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    opacity: 0;
    transition: bottom 0.4s ease, opacity 0.4s ease;
    white-space: pre-wrap;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
    backdrop-filter: blur(4px) brightness(60%);
    border-radius: 0 0 8px 8px;
    line-height: 1.4; /* Reset line height for text */
    font-size: 1rem; /* Reset font size for text */
}

.artwork:hover::after {
    bottom: 0;
    opacity: 1;
}

.artwork .responsive-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
    vertical-align: bottom; /* Changed from top to bottom */
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
}

.artwork:hover .responsive-image {
    transform: scale(1.05);
}


/*--------------------------------------------------------------
# 9. PROPOSAL PAGE COMPONENTS
--------------------------------------------------------------*/
/* Proposal header */
.proposal-header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.proposal-header h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.proposal-header .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin: 1em 0;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateX(-5px);
}

.feature-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
    /* centering the image */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Concept highlights section */
.concept-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

/* Requirements grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.requirement-item {
    padding: 1.25rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-3px);
}

.requirement-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Budget grid */
.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.budget-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.budget-item:hover {
    transform: translateY(-5px);
}

.budget-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.budget-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.budget-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2.25rem;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.timeline-content {
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Experience preview */
.experience-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.preview-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.preview-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--card-border);
}

.preview-item p {
    padding: 1rem;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Call to action */
.cta-container {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.cta-container p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0b7dda;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Overview content */
.overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.lead {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

.overview-visual {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.overview-visual i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.overview-visual span {
    font-size: 1.1rem;
    margin-right: 1rem;
    color: var(--text-color);
}

/* Artwork grid */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.artwork-item {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.artwork-item:hover {
    transform: translateY(-5px);
}

.artwork-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.artwork-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Engagement options */
.engagement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.engagement-item {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.engagement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.engagement-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

/* Visual item styling */
.overview-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.visual-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background-color: var(--accent-bg-color, rgba(0,0,0,0.05));
    border-radius: 2rem;
}

.visual-item i {
    font-size: 1.2rem;
    color: var(--accent-color, #4a90e2);
}

/*--------------------------------------------------------------
# 10. UTILITY COMPONENTS
--------------------------------------------------------------*/
/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 80px;
    right: 20px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.toast.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Theme toggle */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Video containers for responsive videos */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 2rem 0;
    overflow: hidden;
}

.responsive-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
}

/*--------------------------------------------------------------
# 11. DARK MODE
--------------------------------------------------------------*/
.dark-theme {
    --primary-color: #4da6ff;
    --secondary-color: #111;
    --text-color: #f0f0f0;
    --background-color: #121212;
    --card-bg: #1e1e1e;
    --card-border: #333;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    --news-border: #333;
    --news-bg: #1e1e1e;
    --news-accent: #1a2a3a;
}

/*--------------------------------------------------------------
# 12. ACCESSIBILITY
--------------------------------------------------------------*/
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/*--------------------------------------------------------------
# 13. RESPONSIVE STYLES
--------------------------------------------------------------*/
/* For tablets and small desktops */
@media (max-width: 768px) {
    /* Header & Nav */
    header h1 {
        font-size: 2.5rem;
    }

    header .tagline {
        font-size: 1rem;
    }

    .image-container {
        padding-top: 4rem;
    }
    
    .nav-list {
        gap: 0.5rem;
    }
    
    .nav-list li {
        margin: 0.3rem;
        font-size: 0.9rem;
    }
    
    .nav-list li a {
        padding: 0.5rem 0.7rem;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    /* Cards and grids */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Proposal page components */
    .experience-preview {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lead {
        font-size: 1.3rem;
    }
    
    .overview-visual {
        gap: 1rem;
    }
    
    .highlight-item i {
        font-size: 1.75rem;
    }
    
    /* Artist profiles */
    .collective-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .artist-profile h3 {
        font-size: 1.5rem;
    }
    
    .artist-profile p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .collective-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .collective-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    .image-container {
        padding-top: 5rem;
    }
    
    .nav-list {
        width: 100%;
        justify-content: space-around;
    }
    
    .nav-list li {
        font-size: 0.8rem;
    }
}
