/* Vietnam Streets - Premium Design System */

/* =====================================================
   CSS VARIABLES & DESIGN TOKENS
   ===================================================== */

:root {
    /* Color Palette */
    --color-primary: #1a1a1a;
    --color-secondary: #2d2d2d;
    --color-accent: #0066cc;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #e0e0e0;
    --color-border-light: #f0f0f0;
    --color-bg: #ffffff;
    --color-bg-alt: #fafafa;
    --color-bg-muted: #f5f5f5;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-input: 4px;
    --radius-btn: 4px;
    --color-ring: rgba(26, 26, 26, 0.18);
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: var(--font-weight-normal);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: #e2d9ce;
    color: var(--color-primary);
}

/* Accessibility: skip to main content — hidden until focused */
.skip-link {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 9999;
    transition: transform 0.2s ease;
    text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

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

a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 2px;
    transition: var(--transition-base);
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

/* Screen-reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Disabled story links (coming soon) */
.story-link-disabled {
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}

/* =====================================================
   TYPOGRAPHY SYSTEM
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: var(--font-weight-normal);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: var(--font-weight-normal);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Inter', Arial, sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* =====================================================
   LAYOUT COMPONENTS
   ===================================================== */

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

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

.logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.logo-link img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-link:hover {
    opacity: 0.7;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--color-primary);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

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

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--color-primary);
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.25s ease;
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta).active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--color-primary);
    font-weight: 500;
}

/* Nav CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    background: none;
    color: var(--color-text) !important;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    color: var(--color-primary) !important;
}

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

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

.nav-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
}

.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0.25rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.6;
}

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

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

.hero-content .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-subtitle {
    color: #f0f0f0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-meta span {
    color: #e0e0e0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 560px;
    font-weight: var(--font-weight-normal);
}

.hero-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* =====================================================
   IMAGE PLACEHOLDERS
   ===================================================== */

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 50%, #f5f5f5 100%);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.image-placeholder:hover {
    background-position: 100% 100%;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 4s infinite;
}

.image-placeholder::after {
    content: '📸';
    font-size: 3.5rem;
    opacity: 0.2;
    position: relative;
    z-index: 1;
}

/* =====================================================
   SECTIONS & SPACING SYSTEM
   ===================================================== */

section {
    padding: 6rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================
   STORIES SECTION
   ===================================================== */

.stories {
    background: #fafafa;
}

.stories-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.story-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-border);
}

.story-card.featured {
    grid-row: span 2;
}

.story-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.story-card.featured .story-image {
    height: 400px;
}

.story-content {
    padding: 1.5rem;
}

.story-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.story-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #999;
}

/* =====================================================
   EVENTS SECTION
   ===================================================== */

.events {
    background: #ffffff;
}

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

.event-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: #fafafa;
    margin: 0 -2rem;
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date-info {
    text-align: left;
}

.event-date-display {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.2;
}

.event-time {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
    font-weight: 400;
}

.event-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
}

.event-location {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.event-description {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-info-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.event-price {
    background: #f0f8f0;
    color: #2d5a2d;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-capacity {
    color: #666;
    font-size: 0.875rem;
}

.event-register {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    white-space: nowrap;
}

.event-register:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */

.gallery {
    background: #fafafa;
}

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

.gallery-item {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.gallery-content {
    padding: 1rem;
}

.gallery-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.gallery-date {
    font-size: 0.75rem;
    color: #999;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */

.about {
    background: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.about-image {
    height: 500px;
    position: relative;
    overflow: hidden;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #333;
}

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

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ccc;
    transition: all 0.2s;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social svg,
.footer-social i {
    width: 18px;
    height: 18px;
}

.footer-section h4 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section button {
    background: none;
    border: none;
    padding: 0;
    color: #999;
    font-family: inherit;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-section button:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

@media (max-width: 500px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #999;
}

.footer-bottom-links button {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-bottom-links button:hover {
    color: #999;
}

/* Legacy footer support */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* =====================================================
   LOADING STATES
   ===================================================== */

.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
    font-style: italic;
    font-size: 0.875rem;
}

/* =====================================================
   WIDGET NOTES
   ===================================================== */

.events-management-note,
.instagram-widget-note {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.events-management-note p,
.instagram-widget-note p {
    font-size: 0.875rem;
    color: #495057;
    margin-bottom: 1rem;
}

.events-management-note ul,
.events-management-note ol,
.instagram-widget-note ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.events-management-note li,
.instagram-widget-note li {
    font-size: 0.875rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.events-management-note code {
    background: #f1f3f4;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.8rem;
    color: #333;
}

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: relative;
    }

    .nav-overlay {
        display: block;
        pointer-events: none;
    }

    .nav-overlay.active {
        pointer-events: all;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 1.5rem 2rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu a {
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-border-light);
        width: 100%;
    }

    .nav-menu a:not(.nav-cta)::after {
        display: none;
    }

    .nav-menu a.nav-cta {
        margin: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border-light);
    }

    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }

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

    .event-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .event-item:hover {
        margin: 0;
        padding: 2rem 0;
        background: transparent;
        border-radius: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        height: 70px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-text {
        margin-bottom: 1.5rem;
    }

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

    .stories-grid,
    .events-container,
    .gallery-grid,
    .about-content {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }

    .hero-text {
        margin-bottom: 1.5rem;
    }

    .story-card.featured .story-image {
        height: 250px;
    }

    .event-item:hover {
        margin: 0;
        padding: 1.5rem 0;
        background: transparent;
        border-radius: 0;
    }

    .about-image {
        height: 250px;
    }

    section {
        padding: 2rem 0;
    }
}

/* =====================================================
   ANIMATIONS & INTERACTIONS
   ===================================================== */

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

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Intersection Observer Classes */
.observe {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.observe.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover states */
.story-card,
.gallery-item,
.event-item {
    will-change: transform;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus states for accessibility */
.nav-menu a:focus,
.nav-link:focus,
.event-register:focus,
.logo-link:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* Loading state improvements */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* =====================================================
   PAGE-SPECIFIC STYLES
   ===================================================== */

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: #1a1a1a;
}
.breadcrumb .breadcrumb-current {
    color: #666;
}
.breadcrumb i {
    width: 14px;
    height: 14px;
    color: #ccc;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 6rem;
    background: #fafafa;
    text-align: center;
}

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

.page-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stories Filter */
.stories-filter {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.filter-btn:hover,
.filter-btn.active {
    color: #1a1a1a;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #1a1a1a;
}

/* Stories Grid Page */
.stories-grid-page {
    padding: 4rem 0;
    background: #ffffff;
}

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

.story-item {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.story-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.story-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.story-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.story-category-tag {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.story-info {
    padding: 1.5rem;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-family: 'Inter', Arial, sans-serif;
}

.story-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.story-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.story-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

.story-link:hover {
    opacity: 0.6;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #1a1a1a;
    font-weight: 500;
}

/* =====================================================
   PHOTOGRAPHERS PAGE STYLES
   ===================================================== */

.photographers-featured {
    padding: 6rem 0;
    background-color: #fafafa;
}

.featured-photographer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-photographer-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f5f5f5;
}

.featured-photographer-content {
    padding: 2rem;
}

.featured-tag {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.featured-photographer-name {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.featured-photographer-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.featured-photographer-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #444;
}

.featured-photographer-specialties {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.specialty-tag {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border-radius: 2px;
    color: #333;
    border: 1px solid #e0e0e0;
}

.photographer-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.photographer-link:hover {
    opacity: 0.7;
}

.photographers-grid-section {
    padding: 6rem 0;
}

.photographers-filter {
    margin-bottom: 4rem;
    text-align: center;
}

.photographers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.photographer-card {
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.photographer-card:hover {
    transform: translateY(-5px);
}

.photographer-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

.photographer-info {
    padding: 0 0.5rem;
}

.photographer-name {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.photographer-location {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.photographer-specialty {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.photographer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.photographer-portfolio-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.photographer-portfolio-link:hover {
    opacity: 0.7;
}

.photographers-cta {
    padding: 6rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-bg);
    background-color: var(--color-primary);
    text-decoration: none;
    padding: 1.125rem 2.25rem;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-photographer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-photographer-content {
        padding: 1rem;
    }

    .photographers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-photographer-specialties {
        justify-content: center;
    }
}

/* =====================================================
   LEARN PAGE STYLES
   ===================================================== */

.learn-categories {
    padding: 6rem 0;
}

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

.category-card {
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f5f5f5;
}

.category-content {
    padding: 2rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.category-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.category-link:hover {
    opacity: 0.7;
}

.featured-content {
    padding: 6rem 0;
    background-color: #fafafa;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-article-content {
    padding: 2rem;
}

.featured-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.featured-article-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.featured-article-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.featured-article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reading-time, .difficulty {
    font-size: 0.875rem;
    color: #666;
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border-radius: 2px;
}

.featured-article-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.featured-article-link:hover {
    opacity: 0.7;
}

.featured-article-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f5f5f5;
}

.learn-grid {
    padding: 6rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.article-card {
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

.article-content {
    padding: 0 0.5rem;
}

.article-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.article-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.article-link:hover {
    opacity: 0.7;
}

.cultural-guides {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

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

.guide-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.icon-placeholder {
    font-size: 3rem;
    line-height: 1;
}

.guide-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.guide-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.guide-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.guide-link:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-article-content {
        padding: 1rem;
    }

    .categories-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guides-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .featured-article-meta {
        justify-content: center;
    }
}

/* =====================================================
   STORE PAGE STYLES
   ===================================================== */

.store-categories {
    padding: 4rem 0;
    background-color: #fafafa;
}

.categories-filter {
    text-align: center;
}

.featured-products {
    padding: 6rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.featured-product:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.product-info {
    padding: 2rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec {
    font-size: 0.875rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f8f8f8;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
}

.product-pricing {
    margin-bottom: 2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

.shipping {
    font-size: 0.875rem;
    color: #666;
}

.add-to-cart-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.products-grid-section {
    padding: 6rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

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

.product-card .product-image {
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
}

.product-card .product-info {
    padding: 0 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.quick-add-btn {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.quick-add-btn:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.store-info {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

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

.info-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.info-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .featured-product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-info {
        padding: 2rem 1.5rem;
    }

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

    .product-specs {
        justify-content: center;
    }

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

/* =====================================================
   FINE PRINTS PAGE STYLES
   ===================================================== */

.prints-filter {
    padding: 4rem 0;
    background-color: #fafafa;
}

.featured-print {
    padding: 6rem 0;
}

.featured-print-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-print-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f5f5f5;
}

.print-edition-info {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.featured-print-details {
    padding: 2rem 0;
}

.print-collection {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.print-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.print-artist {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.print-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 3rem;
}

.print-specifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.spec-group h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.spec-group ul {
    list-style: none;
    padding: 0;
}

.spec-group li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.spec-group li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.print-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.inquire-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.inquire-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.view-certificate {
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #666;
    transition: color 0.2s ease;
}

.view-certificate:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.prints-gallery {
    padding: 6rem 0;
}

.prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.print-card {
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.print-card:hover {
    transform: translateY(-5px);
}

.print-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

.print-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.print-card:hover .print-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.print-info {
    padding: 0 0.5rem;
}

.print-name {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.print-photographer {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.print-series {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 1rem;
}

.print-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.prints-info {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.info-services h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-print-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .print-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .inquire-btn {
        width: 100%;
        text-align: center;
    }

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

    .info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* =====================================================
   CULTURAL EVENTS PAGE STYLES
   ===================================================== */

.events-filter {
    padding: 4rem 0;
    background-color: #fafafa;
}

.featured-event {
    padding: 6rem 0;
}

.featured-event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-event-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f5f5f5;
}

.event-date-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 4px;
    min-width: 60px;
}

.event-date-badge .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.25rem;
}

.featured-event-details {
    padding: 2rem 0;
}

.event-category {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.event-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.event-location, .event-time {
    font-size: 1rem;
    color: #666;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
}

.event-highlights {
    margin-bottom: 2.5rem;
}

.event-highlights h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.event-highlights ul {
    list-style: none;
    padding: 0;
}

.event-highlights li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.event-highlights li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-item h5 {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.event-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.register-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.register-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.learn-more-link {
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #666;
    transition: color 0.2s ease;
}

.learn-more-link:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.upcoming-events {
    padding: 6rem 0;
}

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

.event-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-card .event-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f5f5f5;
}

.event-type-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.event-info {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
}

.event-date {
    flex-shrink: 0;
    text-align: center;
    padding: 1rem 0.75rem;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    min-width: 70px;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
    margin-top: 0.25rem;
}

.event-content {
    flex: 1;
}

.event-name {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.event-venue {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.event-timing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.time, .duration {
    font-size: 0.875rem;
    color: #666;
}

.event-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.event-link:hover {
    opacity: 0.7;
}

.events-cta {
    padding: 6rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

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

.events-cta .cta-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.events-cta .cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
}

.events-cta .cta-button {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: #1a1a1a;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid #1a1a1a;
    transition: all 0.2s ease;
}

.events-cta .cta-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-event-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .register-btn {
        width: 100%;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-info {
        flex-direction: column;
        gap: 1rem;
    }

    .event-date {
        align-self: flex-start;
        width: fit-content;
    }
}

/* =====================================================
   DIASPORA STORIES PAGE STYLES
   ===================================================== */

.diaspora-stats {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-filter {
    padding: 4rem 0;
    background-color: #fafafa;
}

.featured-diaspora-story {
    padding: 6rem 0;
}

.featured-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-story-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #f5f5f5;
}

.story-location-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
}

.location-flag {
    font-size: 1.25rem;
}

.location-name {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.featured-story-details {
    padding: 2rem 0;
}

.story-type {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.story-headline {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.story-byline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.story-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 3rem;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.highlight-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.story-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.read-story-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.read-story-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.view-photos-link {
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #666;
    transition: color 0.2s ease;
}

.view-photos-link:hover {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.diaspora-stories-grid {
    padding: 6rem 0;
}

.diaspora-story-card {
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.diaspora-story-card:hover {
    transform: translateY(-5px);
}

.diaspora-story-card .story-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 1.5rem;
}

.location-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

.diaspora-story-card .story-info {
    padding: 0 0.5rem;
}

.story-theme {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.diaspora-story-card .story-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.diaspora-story-card .story-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.diaspora-story-card .story-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.author, .year {
    font-size: 0.875rem;
    color: #666;
}

.diaspora-story-card .story-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.diaspora-story-card .story-link:hover {
    opacity: 0.7;
}

.submit-story-cta {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

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

.submit-story-cta .cta-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.submit-story-cta .cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    line-height: 1;
}

.feature-text {
    font-size: 0.95rem;
    color: #666;
}

.submit-story-cta .cta-button {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: #1a1a1a;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid #1a1a1a;
    transition: all 0.2s ease;
}

.submit-story-cta .cta-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .featured-story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .read-story-btn {
        text-align: center;
        width: 100%;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .cta-features {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   SEARCH PAGE STYLES
   ===================================================== */

.search-section {
    padding: 6rem 0;
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-bar-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.search-input {
    width: 100%;
    padding: 1.25rem 4rem 1.25rem 1.5rem;
    font-size: 1.125rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Inter', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.search-button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.search-button:hover {
    color: #1a1a1a;
}

.search-filters {
    margin-bottom: 4rem;
}

.search-filters h3 {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1.5rem;
}

.filter-pills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-pill {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover,
.filter-pill.active {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.search-results {
    margin-top: 4rem;
}

.search-suggestions {
    margin-bottom: 4rem;
}

.search-suggestions h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.suggestion-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: none;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background-color: #f5f5f5;
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.recent-content {
    margin-top: 3rem;
}

.recent-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

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

.recent-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.recent-item:hover {
    transform: translateX(8px);
}

.recent-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background-color: #f5f5f5;
    overflow: hidden;
}

.recent-item-content {
    flex: 1;
}

.recent-item-type {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 0.5rem;
    display: block;
}

.recent-item h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.recent-item-location {
    font-size: 0.875rem;
    color: #666;
}

/* Mobile Responsive for Search */
@media (max-width: 768px) {
    .search-input {
        padding: 1rem 3.5rem 1rem 1rem;
        font-size: 1rem;
    }

    .search-filters h3 {
        text-align: center;
    }

    .filter-pills {
        justify-content: center;
    }

    .recent-items {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   CONNECT PAGE STYLES
   ===================================================== */

.connect-section {
    padding: 6rem 0;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.connect-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.connect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.connect-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #1a1a1a;
}

.connect-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.connect-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.875rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-family: 'Inter', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.submit-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.connect-link {
    font-size: 1rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.connect-link:hover {
    opacity: 0.6;
}

.social-feed-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.social-feed-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.instagram-item {
    aspect-ratio: 1;
    background-color: #f5f5f5;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.instagram-item:hover {
    transform: scale(1.02);
}

/* Mobile Responsive for Connect */
@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .connect-card {
        padding: 2.5rem 2rem;
    }

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

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

/* =====================================================
   COLLABORATE PAGE STYLES
   ===================================================== */

.collaboration-opportunities {
    padding: 6rem 0;
}

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

.opportunity-card {
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.opportunity-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f5f5f5;
}

.opportunity-content {
    padding: 2rem;
}

.opportunity-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.opportunity-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.opportunity-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.opportunity-link:hover {
    opacity: 0.7;
}

.application-forms {
    padding: 6rem 0;
    background-color: #ffffff;
}

.forms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.form-section {
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    padding: 3.5rem 3rem;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5;
}

.collaboration-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0.75rem 0.5rem;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    background: transparent;
    font-size: 1rem;
    font-family: 'Inter', Arial, sans-serif;
    transition: all 0.2s ease;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.form-group label {
    position: absolute;
    left: 0.75rem;
    top: 1rem;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.75rem;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.form-group select:valid {
    color: #1a1a1a;
}

.form-group select option:first-child {
    display: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
    padding-top: 1.5rem;
}

.form-submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    background-color: #333;
    gap: 0.75rem;
}

.form-submit-btn:active {
    transform: scale(0.98);
}

.collaboration-values {
    padding: 6rem 0;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.values-card {
    background-color: #fafafa;
    padding: 2.5rem 2rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #ffffff;
}

.values-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.values-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
}

/* Mobile Responsive for Collaborate */
@media (max-width: 768px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .forms-container {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-submit-btn {
        width: 100%;
        align-self: stretch;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 1.5rem 1rem;
    }

    .values-card {
        padding: 2rem 1.5rem;
    }
}

/* =====================================================
   SUBSCRIBE MODAL
   ===================================================== */

.subscribe-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.subscribe-modal.active {
    display: flex;
}

.subscribe-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.subscribe-modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    padding: 1rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.subscribe-modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem;
}

.subscribe-modal-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-primary);
    margin: 0;
}

.subscribe-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.subscribe-modal-close:hover {
    color: #333;
    background: #e5e5e5;
}

.subscribe-modal-close svg,
.subscribe-modal-close i {
    width: 18px;
    height: 18px;
}

.subscribe-modal-body {
    padding: 0;
}

.subscribe-modal-body iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: none;
    background: #ffffff;
}

@media (max-width: 500px) {
    .subscribe-modal {
        padding: var(--space-sm);
    }

    .subscribe-modal-content {
        max-width: 100%;
    }

    .subscribe-modal-header {
        padding: var(--space-sm) var(--space-md);
    }

    .subscribe-modal-body iframe {
        min-height: 350px;
    }
}

/* Subscribe trigger button in nav */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease;
    margin-left: 0.5rem;
    position: relative;
}

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

.nav-cta-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.25s ease;
}

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

.nav-cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* =====================================================
   ACCESSIBILITY — FOCUS INDICATORS
   ===================================================== */

/* Visible focus ring for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Remove outline only for mouse users (pointer:coarse = touch) */
:focus:not(:focus-visible) {
    outline: none;
}

/* High-contrast ring for buttons */
button:focus-visible,
.nav-cta-btn:focus-visible,
.subscribe-btn:focus-visible,
.submit-btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* Links */
a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* =====================================================
   PHOTOGRAPHER PORTFOLIO GRID — Phase 3
   ===================================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin: 1rem 0;
}

.portfolio-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.3s ease;
}

.portfolio-thumb img.loaded { opacity: 1; }
.portfolio-thumb:hover img { transform: scale(1.06); }

/* =====================================================
   CARD IMAGES — Phase 2 (real images from Cloudinary)
   ===================================================== */

.story-card-img,
.photographer-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-card-img.loaded,
.photographer-card-img.loaded {
    opacity: 1;
}
/* =====================================================
   PHOTOGRAPHER SOCIALS & WEBSITE LINKS
   ===================================================== */

.photographer-website-link {
    display: inline-block;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity var(--transition-fast);
}

.photographer-website-link:hover {
    opacity: 0.7;
}

.photographer-socials {
    display: flex;
    gap: 0.625rem;
    margin-top: 0.625rem;
    flex-wrap: wrap;
}

.photographer-socials a {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    text-decoration: none;
    border: 1px solid var(--color-border);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.photographer-socials a:hover {
    color: var(--color-text);
    border-color: var(--color-text);
}


/* ── Design refinements (shadcn/ui-inspired) ─────────────────────────────── */

/* Consistent focus ring — box-shadow ring instead of outline */
*:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-ring, rgba(26, 26, 26, 0.18));
}

/* Subtle radius on interactive form elements */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
select {
    border-radius: var(--radius-input, 4px);
}

/* Subtle radius on buttons */
button,
.btn,
.cta-button,
.nav-cta-btn,
.btn-submit,
.event-register {
    border-radius: var(--radius-btn, 4px);
}

/* Refined input focus — ring instead of border-color */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-border);
    box-shadow: 0 0 0 3px var(--color-ring, rgba(26, 26, 26, 0.12));
}

/* Remove emoji from type-icons in events, use icon size */
.type-icon svg,
.type-icon i {
    width: 16px;
    height: 16px;
    display: block;
}

/* Tighten muted text to shadcn-level precision */
:root {
    --color-text-muted: #6b7280;
    --color-text-light: #71717a;
}


/* ── Language toggle ─────────────────────────────────────────────────────── */

.lang-toggle {
    background: none;
    border: 1px solid var(--color-border);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    border-radius: 4px;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.lang-toggle:hover {
    color: var(--color-text);
    border-color: var(--color-text-muted);
}
