/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6; /* Vibrant purple for creativity */
    --secondary-color: #06b6d4; /* Cyan for artistic energy */
    --accent-color: #f59e0b; /* Warm orange */
    --tertiary-color: #ec4899; /* Magenta for artistic flair */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fef7ff; /* Very light purple tint */
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 25%, #fdf4ff 50%, #fef7ff 75%, #f0f9ff 100%);
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(139, 92, 246, 0.15);
    --shadow-artistic: 0 8px 32px rgba(139, 92, 246, 0.12), 0 4px 16px rgba(6, 182, 212, 0.08);
    --radius: 12px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .site-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.nav-link:nth-child(1):hover {
    color: var(--primary-color);
}

.nav-link:nth-child(1)::after {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.nav-link:nth-child(2):hover {
    color: var(--secondary-color);
}

.nav-link:nth-child(2)::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
}

.nav-link:nth-child(3):hover {
    color: var(--tertiary-color);
}

.nav-link:nth-child(3)::after {
    background: linear-gradient(90deg, var(--tertiary-color), var(--accent-color));
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 25%,
        var(--tertiary-color) 50%,
        var(--accent-color) 75%,
        #8b5cf6 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="10" cy="80" r="0.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.hero-intro p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 400;
}

.highlight {
    color: #0a7a3a;
    font-weight: 700;
    font-style: italic;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.projects-grid {
    display: grid;
    gap: 3rem;
}

.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-card.featured {
    border: 2px solid var(--primary-color);
}

.project-header {
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-title {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-dark);
}

.project-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-content {
    padding: 2rem;
}

.project-image {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.project-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, var(--primary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn.secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn.secondary:hover {
    background: linear-gradient(135deg, #ea580c 0%, var(--accent-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.8) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.1);
    border-color: var(--primary-color);
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    position: relative;
}

.feature-number::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-number::before {
    opacity: 1;
}

.feature-label {
    font-weight: 500;
    color: var(--text-dark);
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="artistic" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(139,92,246,0.03)"/><path d="M5,5 L15,15 M15,5 L5,15" stroke="rgba(6,182,212,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23artistic)"/></svg>');
    pointer-events: none;
}

.experience-timeline {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.experience-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-artistic);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
}

.experience-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15), 0 8px 16px rgba(6, 182, 212, 0.1);
}

.experience-item:nth-child(1) {
    border-left: 4px solid var(--primary-color);
}

.experience-item:nth-child(2) {
    border-left: 4px solid var(--secondary-color);
}

.experience-item:nth-child(3) {
    border-left: 4px solid var(--accent-color);
}

.experience-item:nth-child(4) {
    border-left: 4px solid var(--tertiary-color);
}

.experience-image {
    height: 250px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.experience-item:hover .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    padding: 2rem;
}

.experience-header {
    margin-bottom: 1rem;
}

.experience-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.experience-role {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.experience-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1d4ed8;
}

.read-more-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, #fef7ff 50%, var(--bg-white) 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
    align-items: center;
    /* keep items on a single row and allow horizontal scrolling if needed */
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    aspect-ratio: 1;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
}

.gallery-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-artistic);
    border-color: var(--primary-color);
}

.gallery-item:nth-child(odd):hover {
    transform: translateY(-8px) rotate(-1deg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item > a { display:block; width:100%; height:100%; }

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

/* Prevent hover transforms from causing page scrollbars in static gallery blocks */
.gallery-grid { overflow-x: hidden; }
.gallery-item { will-change: transform; -webkit-backface-visibility: hidden; backface-visibility: hidden; }

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

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

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, white 0%, #fef7ff 100%);
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--tertiary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
    color: white;
}

.contact-btn:hover::before {
    opacity: 1;
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Project Pages - Professional Design */

/* Project Hero Section */
.project-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 25%,
        var(--tertiary-color) 50%,
        var(--accent-color) 75%,
        var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.9) 0%,
        rgba(6, 182, 212, 0.8) 50%,
        rgba(236, 72, 153, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.badge-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    min-width: 150px;
}

.meta-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.meta-value {
    font-weight: 600;
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-white);
    margin-top: -2px; /* Overlap with hero */
    position: relative;
    z-index: 3;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.stat-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Section Cards */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.section-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-card:hover::before {
    opacity: 1;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.section-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.section-card.featured::before {
    opacity: 1;
    background: linear-gradient(180deg, var(--primary-color), var(--tertiary-color));
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
}

.section-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-link:hover::after {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.95);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.breadcrumb .container {
    padding: 0 2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-light);
    font-weight: 500;
}

/* Article Styling */
.project-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

.article-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.article-content h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.article-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

.responsibility-item {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.responsibility-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.responsibility-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.article-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    text-align: center;
}

.nav-next {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.nav-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Article Enhancements */
.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.intro-section {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.5) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.objectives-section {
    margin-bottom: 3rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.objective-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.objective-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.objective-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.objective-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.objective-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.responsibilities-section {
    margin-bottom: 3rem;
}

.responsibility-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.responsibility-item h4 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.responsibility-item p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.impact-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.impact-content {
    max-width: 700px;
    margin: 0 auto;
}

.impact-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.impact-content p:last-child {
    margin-bottom: 0;
}

/* Wix-Style Components for Cho Yiu Pages */

/* Navigation */
.nav-wix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-link {
    text-decoration: none;
    color: var(--text-dark);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-wix .nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-wix .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.nav-wix .nav-link:hover {
    color: var(--primary-color);
}

.nav-wix .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-wix {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-background-wix {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgb(var(--primary-color)) 0%,
        rgb(var(--secondary-color)) 25%,
        rgb(var(--tertiary-color)) 50%,
        rgb(var(--accent-color)) 75%,
        rgb(var(--primary-color)) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-overlay-wix {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.9) 0%,
        rgba(6, 182, 212, 0.8) 50%,
        rgba(236, 72, 153, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero-content-wix {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-content-wix .badge-wix {
    margin-bottom: 2rem;
}

.hero-content-wix .font-heading-large {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content-wix .font-body-large {
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-meta-wix {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.meta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    min-width: 150px;
    text-align: center;
}

.meta-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.meta-value {
    font-weight: 600;
    color: white;
}

/* Stats Section */
.stats-wix {
    padding: 4rem 0;
    background: var(--bg-white);
    margin-top: -2px;
    position: relative;
    z-index: 3;
}

.stat-icon-wix {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.stats-wix .card-wix {
    text-align: center;
    padding: 2rem;
}

.stats-wix .card-wix:hover {
    transform: translateY(-3px);
}

/* Sections */
.sections-wix {
    margin-bottom: 4rem;
}

.sections-wix .grid-responsive {
    margin-top: 2rem;
}

.card-header-wix {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon-wix {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-wix.card-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.card-wix.card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px 0 0 2px;
}

/* CTA Section */
.cta-wix {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-content-wix {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-wix .font-heading-medium {
    margin-bottom: 1rem;
    color: white;
}

.cta-content-wix .font-body-large {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer-wix {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design for Wix Components */
@media (max-width: 768px) {
    .nav-wix {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .hero-content-wix .font-heading-large {
        font-size: 2.5rem;
    }

    .hero-meta-wix {
        gap: 1rem;
    }

    .meta-card {
        min-width: 120px;
        padding: 0.75rem;
    }

    .sections-wix .grid-responsive {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-wix {
        padding: 1.5rem;
    }

    .cta-content-wix h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content-wix .font-heading-large {
        font-size: 2rem;
    }

    .hero-meta-wix {
        flex-direction: column;
        align-items: center;
    }

    .meta-card {
        width: 100%;
        max-width: 250px;
    }

    .card-wix {
        padding: 1rem;
    }

    .cta-content-wix h2 {
        font-size: 1.75rem;
    }

    /* Breadcrumb */
    .breadcrumb-wix {
        background: var(--bg-light);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .breadcrumb-wix .container-wix {
        padding: 0 2rem;
    }

    .breadcrumb-wix a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .breadcrumb-wix a:hover {
        color: var(--secondary-color);
    }

    .breadcrumb-wix span {
        color: var(--text-light);
        font-weight: 500;
    }

    /* Article */
    .article-wix {
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem 0;
    }

    .article-header-wix {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .article-header-wix .badge-wix {
        margin-bottom: 1.5rem;
    }

    .article-header-wix .font-heading-large {
        margin-bottom: 1rem;
    }

    .article-header-wix .font-body-large {
        margin-bottom: 0;
    }

    /* Sections */
    .section-wix {
        margin-bottom: 4rem;
    }

    .section-wix h2 {
        margin-bottom: 2rem;
    }

    .intro-wix {
        background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.5) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .objective-icon-wix {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: block;
        text-align: center;
    }

    .responsibility-icon-wix {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        display: block;
        text-align: center;
        color: var(--primary-color);
    }

    .impact-wix {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .impact-content-wix {
        max-width: 700px;
        margin: 0 auto;
    }

    .impact-content-wix p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .impact-content-wix p:last-child {
        margin-bottom: 0;
    }

    /* Quote Section */
    .quote-wix {
        background: linear-gradient(135deg, rgb(var(--color_primary)) 0%, rgb(var(--color_secondary)) 50%, rgb(var(--color_tertiary)) 100%);
        color: white;
        padding: 4rem 0;
        text-align: center;
        margin-top: -2rem;
        position: relative;
    }

    .quote-content-wix {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .quote-name-wix {
        font-family: var(--font_heading);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .quote-tagline-wix {
        font-family: var(--font_primary);
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-style: italic;
    }

    .role-badges-wix {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .role-badge-wix {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .values-badges-wix {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .value-badge-wix {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-weight: 500;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .value-badge-wix:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    /* Reflection Section */
    .reflection-wix {
        background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.8) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .reflection-content-wix {
        max-width: 700px;
        margin: 0 auto;
    }

    .reflection-content-wix p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-dark);
    }

    /* AI Section */
    .ai-wix {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .ai-content-wix {
        max-width: 700px;
        margin: 0 auto;
    }

    .video-placeholder-wix {
        background: var(--bg-white);
        border: 2px dashed rgba(139, 92, 246, 0.3);
        border-radius: var(--radius);
        padding: 3rem 2rem;
        text-align: center;
        margin: 2rem 0;
        box-shadow: var(--shadow);
    }

    .video-icon-wix {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    /* Exhibition Section */
    .exhibition-wix {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        box-shadow: var(--shadow);
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .exhibition-content-wix {
        max-width: 800px;
        margin: 0 auto;
    }

    .artwork-showcase-wix {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .artwork-item-wix {
        text-align: center;
    }

    .artwork-placeholder-wix {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
        border-radius: var(--radius);
        padding: 3rem 2rem;
        margin-bottom: 1rem;
        border: 2px solid rgba(139, 92, 246, 0.2);
        transition: all 0.3s ease;
    }

    .artwork-placeholder-wix:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .artwork-icon-wix {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .artwork-item-wix h4 {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .artwork-item-wix p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Immersive Classroom Section */
    .immersive-wix {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        border: 1px solid rgba(245, 158, 11, 0.1);
    }

    .immersive-content-wix {
        max-width: 800px;
        margin: 0 auto;
    }

    .experience-grid-wix {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .experience-item-wix {
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 2rem;
        box-shadow: var(--shadow);
        border: 1px solid rgba(245, 158, 11, 0.1);
        transition: all 0.3s ease;
    }

    .experience-item-wix:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgb(var(--color_accent));
    }

    .experience-image-wix {
        text-align: center;
        margin-bottom: 1rem;
    }

    .experience-icon-wix {
        font-size: 3rem;
        display: inline-block;
    }

    /* Navigation */
    .navigation-wix {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
        text-align: center;
    }

    .navigation-wix .btn-wix-primary {
        display: inline-block;
    }

/* ==================================================
   CHO YIU CATHOLIC PRIMARY SCHOOL - PROFESSIONAL LAYOUT
   ================================================== */

/* Page Background */
#cho-yiu-page {
    background: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
}

/* ==================================================
   PAGE HEADER
   ================================================== */

.page-header {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--color_primary));
}

.nav-brand .site-title a {
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(var(--color_primary));
}

/* ==================================================
   PROJECT HERO SECTION
   ================================================== */

.project-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.project-hero .container {
    max-width: 800px;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgb(var(--color_primary));
    margin-bottom: 0.5rem;
}

.project-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.9rem;
    color: #4b5563;
}

.meta-item strong {
    color: rgb(var(--color_primary));
}

/* ==================================================
   OVERVIEW SECTION
   ================================================== */

.overview-section {
    padding: 4rem 0;
    background: #ffffff;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 2rem;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.overview-stats .stat-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.overview-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgb(var(--color_primary));
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(var(--color_primary));
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* ==================================================
   INITIATIVES SECTION
   ================================================== */

.initiatives-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.initiatives-section .container {
    max-width: 1200px;
}

.initiatives-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 3rem;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.initiative-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgb(var(--color_primary));
}

.card-media {
    position: relative;
    overflow: hidden;
}

.card-media video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.initiative-card:hover .card-media video {
    transform: scale(1.02);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--color_primary));
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: rgb(var(--color_accent));
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   STUDENT ARTWORKS SECTION
   ================================================== */

.artworks-section {
    padding: 4rem 0;
    background: #ffffff;
}

.artworks-section .container {
    max-width: 1000px;
}

.artworks-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 3rem;
}

.artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.artwork-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.artwork-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgb(var(--color_primary));
}

.artwork-image {
    overflow: hidden;
}

.artwork-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

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

.artwork-content {
    padding: 2rem;
}

.artwork-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--color_primary));
    margin-bottom: 1rem;
}

.artwork-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   TEACHING METHODOLOGY SECTION
   ================================================== */

.methodology-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.methodology-section .container {
    max-width: 1000px;
}

.methodology-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 3rem;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.methodology-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: rgb(var(--color_primary));
    margin-bottom: 1.5rem;
}

.methodology-text p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.methodology-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.media-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.media-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.media-caption {
    padding: 1rem;
    background: #ffffff;
    text-align: center;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.9rem;
}

.methodology-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgb(var(--color_primary));
}

.highlight-icon {
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgb(var(--color_primary));
    margin-bottom: 1rem;
}

.highlight-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ==================================================
   SHARED STYLES
   ================================================== */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 2rem;
    text-align: center;
}

.site-footer {
    padding: 2rem 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.site-footer p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

@media (max-width: 1024px) {
    .methodology-content,
    .artworks-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

    .project-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .overview-stats {
        gap: 1.5rem;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .methodology-content {
        gap: 2rem;
    }

    .methodology-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .artworks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .project-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .meta-item {
        text-align: center;
    }

    .overview-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
        min-width: auto;
        width: 100%;
    }

    .methodology-highlights {
        gap: 1rem;
    }

    .highlight-item {
        padding: 1.5rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

@media (max-width: 1024px) {
    .philosophy-container,
    .experience-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .innovation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .innovation-item.item-large {
        grid-column: span 2;
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .masonry-item.item-large {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-heading,
    .experience-title {
        font-size: 3rem;
    }

    .innovation-title,
    .gallery-title {
        font-size: 3rem;
    }

    .philosophy-container,
    .experience-content {
        gap: 3rem;
    }

    .floating-cards {
        width: 250px;
        height: 250px;
    }

    .float-card {
        width: 100px;
        height: 100px;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-item.item-large {
        grid-column: span 2;
    }

    .experience-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge {
        width: 100%;
        max-width: 200px;
    }

    .section-heading,
    .experience-title {
        font-size: 2.5rem;
    }

    .innovation-title,
    .gallery-title {
        font-size: 2.5rem;
    }

    .philosophy-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-cards {
        width: 200px;
        height: 200px;
    }

    .float-card {
        width: 80px;
        height: 80px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .visual-quote {
        padding: 2rem;
    }

    .visual-quote blockquote {
        font-size: 1.2rem;
    }
}

    /* Responsive Design for Overview Page */
    @media (max-width: 768px) {
        .article-wix {
            padding: 2rem 0;
        }

        .article-header-wix {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
        }

        .intro-wix {
            padding: 2rem;
        }

        .section-wix {
            margin-bottom: 3rem;
        }

        .grid-wix {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .impact-wix {
            padding: 2rem;
        }

        .container-wix {
            padding: 0 1rem;
        }
    }

    @media (max-width: 480px) {
        .article-header-wix .font-heading-large {
            font-size: 2rem;
        }

        .intro-wix {
            padding: 1.5rem;
        }

        .card-wix {
            padding: 1.5rem;
        }

        .impact-wix {
            padding: 1.5rem;
        }
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .projects-grid {
        gap: 2rem;
    }

    .project-header {
        padding: 1.5rem 1.5rem 0;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-actions {
        flex-direction: column;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-image {
        height: 200px;
    }

    .experience-content {
        padding: 1.5rem;
    }

    .experience-links {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Project page responsive */
    .project-main-title {
        font-size: 2.5rem;
    }

    .hero-meta {
        gap: 1rem;
    }

    .meta-item {
        min-width: 120px;
        padding: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-card {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .experience-title {
        font-size: 1.5rem;
    }

    .project-image img {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
    }

    .project-main-title {
        font-size: 2rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: center;
    }

    .meta-item {
        width: 100%;
        max-width: 250px;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6; /* Vibrant purple for creativity */
    --secondary-color: #06b6d4; /* Cyan for artistic energy */
    --accent-color: #f59e0b; /* Warm orange */
    --tertiary-color: #ec4899; /* Magenta for artistic flair */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fef7ff; /* Very light purple tint */
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 25%, #fdf4ff 50%, #fef7ff 75%, #f0f9ff 100%);
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(139, 92, 246, 0.15);
    --shadow-artistic: 0 8px 32px rgba(139, 92, 246, 0.12), 0 4px 16px rgba(6, 182, 212, 0.08);
    --radius: 12px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .site-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.nav-link:nth-child(1):hover {
    color: var(--primary-color);
}

.nav-link:nth-child(1)::after {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.nav-link:nth-child(2):hover {
    color: var(--secondary-color);
}

.nav-link:nth-child(2)::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
}

.nav-link:nth-child(3):hover {
    color: var(--tertiary-color);
}

.nav-link:nth-child(3)::after {
    background: linear-gradient(90deg, var(--tertiary-color), var(--accent-color));
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 25%,
        var(--tertiary-color) 50%,
        var(--accent-color) 75%,
        #8b5cf6 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.15)"/><circle cx="10" cy="80" r="0.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    opacity: 0.6;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.hero-intro p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 400;
}

.highlight {
    color: #0a7a3a;
    font-weight: 700;
    font-style: italic;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.projects-grid {
    display: grid;
    gap: 3rem;
}

.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-card.featured {
    border: 2px solid var(--primary-color);
}

.project-header {
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-title {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-dark);
}

.project-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-content {
    padding: 2rem;
}

.project-image {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.project-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, var(--primary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn.secondary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn.secondary:hover {
    background: linear-gradient(135deg, #ea580c 0%, var(--accent-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.8) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.1);
    border-color: var(--primary-color);
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    position: relative;
}

.feature-number::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-number::before {
    opacity: 1;
}

.feature-label {
    font-weight: 500;
    color: var(--text-dark);
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="artistic" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(139,92,246,0.03)"/><path d="M5,5 L15,15 M15,5 L5,15" stroke="rgba(6,182,212,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23artistic)"/></svg>');
    pointer-events: none;
}

.experience-timeline {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.experience-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-artistic);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
}

.experience-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15), 0 8px 16px rgba(6, 182, 212, 0.1);
}

.experience-item:nth-child(1) {
    border-left: 4px solid var(--primary-color);
}

.experience-item:nth-child(2) {
    border-left: 4px solid var(--secondary-color);
}

.experience-item:nth-child(3) {
    border-left: 4px solid var(--accent-color);
}

.experience-item:nth-child(4) {
    border-left: 4px solid var(--tertiary-color);
}

.experience-image {
    height: 250px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.experience-item:hover .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    padding: 2rem;
}

.experience-header {
    margin-bottom: 1rem;
}

.experience-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.experience-role {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.experience-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1d4ed8;
}

.read-more-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, #fef7ff 50%, var(--bg-white) 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    aspect-ratio: 1;
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
}

.gallery-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-artistic);
    border-color: var(--primary-color);
}

.gallery-item:nth-child(odd):hover {
    transform: translateY(-8px) rotate(-1deg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, white 0%, #fef7ff 100%);
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--tertiary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
    color: white;
}

.contact-btn:hover::before {
    opacity: 1;
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Project Pages - Professional Design */

/* Project Hero Section */
.project-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 25%,
        var(--tertiary-color) 50%,
        var(--accent-color) 75%,
        var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.9) 0%,
        rgba(6, 182, 212, 0.8) 50%,
        rgba(236, 72, 153, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
}

.badge-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    min-width: 150px;
}

.meta-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.meta-value {
    font-weight: 600;
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-white);
    margin-top: -2px; /* Overlap with hero */
    position: relative;
    z-index: 3;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.stat-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Section Cards */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.section-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-card:hover::before {
    opacity: 1;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.section-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.section-card.featured::before {
    opacity: 1;
    background: linear-gradient(180deg, var(--primary-color), var(--tertiary-color));
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
}

.section-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-link:hover::after {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.95);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.breadcrumb .container {
    padding: 0 2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-light);
    font-weight: 500;
}

/* Article Styling */
.project-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

.article-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.article-content h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
}

.article-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

.responsibility-item {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.responsibility-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.responsibility-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.article-navigation {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    text-align: center;
}

.nav-next {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.nav-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Article Enhancements */
.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.intro-section {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.5) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.objectives-section {
    margin-bottom: 3rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.objective-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.objective-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.objective-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.objective-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.objective-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.responsibilities-section {
    margin-bottom: 3rem;
}

.responsibility-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.responsibility-item h4 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.responsibility-item p {
    text-align: center;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.impact-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.impact-content {
    max-width: 700px;
    margin: 0 auto;
}

.impact-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.impact-content p:last-child {
    margin-bottom: 0;
}

/* Wix-Style Components for Cho Yiu Pages */

/* Navigation */
.nav-wix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-link {
    text-decoration: none;
    color: var(--text-dark);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-wix .nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-wix .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.nav-wix .nav-link:hover {
    color: var(--primary-color);
}

.nav-wix .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-wix {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-background-wix {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgb(var(--primary-color)) 0%,
        rgb(var(--secondary-color)) 25%,
        rgb(var(--tertiary-color)) 50%,
        rgb(var(--accent-color)) 75%,
        rgb(var(--primary-color)) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-overlay-wix {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.9) 0%,
        rgba(6, 182, 212, 0.8) 50%,
        rgba(236, 72, 153, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero-content-wix {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-content-wix .badge-wix {
    margin-bottom: 2rem;
}

.hero-content-wix .font-heading-large {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content-wix .font-body-large {
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-meta-wix {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.meta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    min-width: 150px;
    text-align: center;
}

.meta-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.meta-value {
    font-weight: 600;
    color: white;
}

/* Stats Section */
.stats-wix {
    padding: 4rem 0;
    background: var(--bg-white);
    margin-top: -2px;
    position: relative;
    z-index: 3;
}

.stat-icon-wix {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.stats-wix .card-wix {
    text-align: center;
    padding: 2rem;
}

.stats-wix .card-wix:hover {
    transform: translateY(-3px);
}

/* Sections */
.sections-wix {
    margin-bottom: 4rem;
}

.sections-wix .grid-responsive {
    margin-top: 2rem;
}

.card-header-wix {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon-wix {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-wix.card-featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.card-wix.card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px 0 0 2px;
}

/* CTA Section */
.cta-wix {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-content-wix {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-wix .font-heading-medium {
    margin-bottom: 1rem;
    color: white;
}

.cta-content-wix .font-body-large {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer-wix {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design for Wix Components */
@media (max-width: 768px) {
    .nav-wix {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .hero-content-wix .font-heading-large {
        font-size: 2.5rem;
    }

    .hero-meta-wix {
        gap: 1rem;
    }

    .meta-card {
        min-width: 120px;
        padding: 0.75rem;
    }

    .sections-wix .grid-responsive {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-wix {
        padding: 1.5rem;
    }

    .cta-content-wix h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content-wix .font-heading-large {
        font-size: 2rem;
    }

    .hero-meta-wix {
        flex-direction: column;
        align-items: center;
    }

    .meta-card {
        width: 100%;
        max-width: 250px;
    }

    .card-wix {
        padding: 1rem;
    }

    .cta-content-wix h2 {
        font-size: 1.75rem;
    }

    /* Breadcrumb */
    .breadcrumb-wix {
        background: var(--bg-light);
        padding: 1rem 0;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .breadcrumb-wix .container-wix {
        padding: 0 2rem;
    }

    .breadcrumb-wix a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .breadcrumb-wix a:hover {
        color: var(--secondary-color);
    }

    .breadcrumb-wix span {
        color: var(--text-light);
        font-weight: 500;
    }

    /* Article */
    .article-wix {
        max-width: 900px;
        margin: 0 auto;
        padding: 3rem 0;
    }

    .article-header-wix {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .article-header-wix .badge-wix {
        margin-bottom: 1.5rem;
    }

    .article-header-wix .font-heading-large {
        margin-bottom: 1rem;
    }

    .article-header-wix .font-body-large {
        margin-bottom: 0;
    }

    /* Sections */
    .section-wix {
        margin-bottom: 4rem;
    }

    .section-wix h2 {
        margin-bottom: 2rem;
    }

    .intro-wix {
        background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.5) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .objective-icon-wix {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: block;
        text-align: center;
    }

    .responsibility-icon-wix {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        display: block;
        text-align: center;
        color: var(--primary-color);
    }

    .impact-wix {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .impact-content-wix {
        max-width: 700px;
        margin: 0 auto;
    }

    .impact-content-wix p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .impact-content-wix p:last-child {
        margin-bottom: 0;
    }

    /* Quote Section */
    .quote-wix {
        background: linear-gradient(135deg, rgb(var(--color_primary)) 0%, rgb(var(--color_secondary)) 50%, rgb(var(--color_tertiary)) 100%);
        color: white;
        padding: 4rem 0;
        text-align: center;
        margin-top: -2rem;
        position: relative;
    }

    .quote-content-wix {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .quote-name-wix {
        font-family: var(--font_heading);
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .quote-tagline-wix {
        font-family: var(--font_primary);
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-style: italic;
    }

    .role-badges-wix {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .role-badge-wix {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .values-badges-wix {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .value-badge-wix {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-weight: 500;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .value-badge-wix:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    /* Reflection Section */
    .reflection-wix {
        background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.8) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .reflection-content-wix {
        max-width: 700px;
        margin: 0 auto;
    }

    .reflection-content-wix p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-dark);
    }

    /* AI Section */
    .ai-wix {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .ai-content-wix {
        max-width: 700px;
        margin: 0 auto;
    }

    .video-placeholder-wix {
        background: var(--bg-white);
        border: 2px dashed rgba(139, 92, 246, 0.3);
        border-radius: var(--radius);
        padding: 3rem 2rem;
        text-align: center;
        margin: 2rem 0;
        box-shadow: var(--shadow);
    }

    .video-icon-wix {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    /* Exhibition Section */
    .exhibition-wix {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        box-shadow: var(--shadow);
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .exhibition-content-wix {
        max-width: 800px;
        margin: 0 auto;
    }

    .artwork-showcase-wix {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .artwork-item-wix {
        text-align: center;
    }

    .artwork-placeholder-wix {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
        border-radius: var(--radius);
        padding: 3rem 2rem;
        margin-bottom: 1rem;
        border: 2px solid rgba(139, 92, 246, 0.2);
        transition: all 0.3s ease;
    }

    .artwork-placeholder-wix:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .artwork-icon-wix {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .artwork-item-wix h4 {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .artwork-item-wix p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    /* Immersive Classroom Section */
    .immersive-wix {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
        border-radius: var(--radius-lg);
        padding: 3rem;
        margin: 2rem 0;
        border: 1px solid rgba(245, 158, 11, 0.1);
    }

    .immersive-content-wix {
        max-width: 800px;
        margin: 0 auto;
    }

    .experience-grid-wix {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .experience-item-wix {
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 2rem;
        box-shadow: var(--shadow);
        border: 1px solid rgba(245, 158, 11, 0.1);
        transition: all 0.3s ease;
    }

    .experience-item-wix:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgb(var(--color_accent));
    }

    .experience-image-wix {
        text-align: center;
        margin-bottom: 1rem;
    }

    .experience-icon-wix {
        font-size: 3rem;
        display: inline-block;
    }

    /* Navigation */
    .navigation-wix {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
        text-align: center;
    }

    .navigation-wix .btn-wix-primary {
        display: inline-block;
    }

/* ==================================================
   CHO YIU CATHOLIC PRIMARY SCHOOL - PROFESSIONAL LAYOUT
   ================================================== */

/* Page Background */
#cho-yiu-page {
    background: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
}

/* ==================================================
   PAGE HEADER
   ================================================== */

.page-header {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .site-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--color_primary));
}

.nav-brand .site-title a {
    color: inherit;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(var(--color_primary));
}

/* ==================================================
   PROJECT HERO SECTION
   ================================================== */

.project-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.project-hero .container {
    max-width: 800px;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgb(var(--color_primary));
    margin-bottom: 0.5rem;
}

.project-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.9rem;
    color: #4b5563;
}

.meta-item strong {
    color: rgb(var(--color_primary));
}

/* ==================================================
   OVERVIEW SECTION
   ================================================== */

.overview-section {
    padding: 4rem 0;
    background: #ffffff;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 2rem;
}

.overview-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
}

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.overview-stats .stat-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.overview-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgb(var(--color_primary));
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(var(--color_primary));
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* ==================================================
   INITIATIVES SECTION
   ================================================== */

.initiatives-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.initiatives-section .container {
    max-width: 1200px;
}

.initiatives-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 3rem;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.initiative-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgb(var(--color_primary));
}

.card-media {
    position: relative;
    overflow: hidden;
}

.card-media video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.initiative-card:hover .card-media video {
    transform: scale(1.02);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--color_primary));
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: rgb(var(--color_accent));
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   STUDENT ARTWORKS SECTION
   ================================================== */

.artworks-section {
    padding: 4rem 0;
    background: #ffffff;
}

.artworks-section .container {
    max-width: 1000px;
}

.artworks-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 3rem;
}

.artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.artwork-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.artwork-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgb(var(--color_primary));
}

.artwork-image {
    overflow: hidden;
}

.artwork-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

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

.artwork-content {
    padding: 2rem;
}

.artwork-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(var(--color_primary));
    margin-bottom: 1rem;
}

.artwork-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   TEACHING METHODOLOGY SECTION
   ================================================== */

.methodology-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.methodology-section .container {
    max-width: 1000px;
}

.methodology-section .section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 3rem;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.methodology-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: rgb(var(--color_primary));
    margin-bottom: 1.5rem;
}

.methodology-text p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.methodology-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.media-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.media-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.media-caption {
    padding: 1rem;
    background: #ffffff;
    text-align: center;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.9rem;
}

.methodology-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: rgb(var(--color_primary));
}

.highlight-icon {
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgb(var(--color_primary));
    margin-bottom: 1rem;
}

.highlight-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* ==================================================
   SHARED STYLES
   ================================================== */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgb(var(--color_primary));
    margin-bottom: 2rem;
    text-align: center;
}

.site-footer {
    padding: 2rem 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.site-footer p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

@media (max-width: 1024px) {
    .methodology-content,
    .artworks-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

    .project-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .overview-stats {
        gap: 1.5rem;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .methodology-content {
        gap: 2rem;
    }

    .methodology-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .artworks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .project-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .meta-item {
        text-align: center;
    }

    .overview-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
        min-width: auto;
        width: 100%;
    }

    .methodology-highlights {
        gap: 1rem;
    }

    .highlight-item {
        padding: 1.5rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

@media (max-width: 1024px) {
    .philosophy-container,
    .experience-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .innovation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .innovation-item.item-large {
        grid-column: span 2;
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .masonry-item.item-large {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-heading,
    .experience-title {
        font-size: 3rem;
    }

    .innovation-title,
    .gallery-title {
        font-size: 3rem;
    }

    .philosophy-container,
    .experience-content {
        gap: 3rem;
    }

    .floating-cards {
        width: 250px;
        height: 250px;
    }

    .float-card {
        width: 100px;
        height: 100px;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-item.item-large {
        grid-column: span 2;
    }

    .experience-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge {
        width: 100%;
        max-width: 200px;
    }

    .section-heading,
    .experience-title {
        font-size: 2.5rem;
    }

    .innovation-title,
    .gallery-title {
        font-size: 2.5rem;
    }

    .philosophy-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-cards {
        width: 200px;
        height: 200px;
    }

    .float-card {
        width: 80px;
        height: 80px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .visual-quote {
        padding: 2rem;
    }

    .visual-quote blockquote {
        font-size: 1.2rem;
    }
}

    /* Responsive Design for Overview Page */
    @media (max-width: 768px) {
        .article-wix {
            padding: 2rem 0;
        }

        .article-header-wix {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
        }

        .intro-wix {
            padding: 2rem;
        }

        .section-wix {
            margin-bottom: 3rem;
        }

        .grid-wix {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .impact-wix {
            padding: 2rem;
        }

        .container-wix {
            padding: 0 1rem;
        }
    }

    @media (max-width: 480px) {
        .article-header-wix .font-heading-large {
            font-size: 2rem;
        }

        .intro-wix {
            padding: 1.5rem;
        }

        .card-wix {
            padding: 1.5rem;
        }

        .impact-wix {
            padding: 1.5rem;
        }
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .projects-grid {
        gap: 2rem;
    }

    .project-header {
        padding: 1.5rem 1.5rem 0;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-actions {
        flex-direction: column;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-image {
        height: 200px;
    }

    .experience-content {
        padding: 1.5rem;
    }

    .experience-links {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Project page responsive */
    .project-main-title {
        font-size: 2.5rem;
    }

    .hero-meta {
        gap: 1rem;
    }

    .meta-item {
        min-width: 120px;
        padding: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sections-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-card {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .experience-title {
        font-size: 1.5rem;
    }

    .project-image img {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
    }

    .project-main-title {
        font-size: 2rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: center;
    }

    .meta-item {
        width: 100%;
        max-width: 250px;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}
