/* ============================================
   KËRÇOVË — Modern Web Design
   Color Palette:
   - Terracotta: #C75B3A
   - Olive Green: #6B7B3D
   - Sand: #D4C4A8
   - Sapphire Blue: #1E5F8C
   - Gold: #C9A84C
   - Dark: #1A1A2E
   - Light: #FAF8F5
   ============================================ */

/* CSS Variables */
:root {
    --color-terracotta: #C75B3A;
    --color-terracotta-light: #E07A5F;
    --color-olive: #6B7B3D;
    --color-olive-light: #8A9B5C;
    --color-sand: #D4C4A8;
    --color-sand-light: #E8DCC8;
    --color-sapphire: #1E5F8C;
    --color-sapphire-light: #3A7CA5;
    --color-gold: #C9A84C;
    --color-gold-light: #DCC078;
    --color-dark: #1A1A2E;
    --color-dark-light: #2D2D44;
    --color-light: #FAF8F5;
    --color-light-warm: #F5F0E8;
    --color-text: #2C2C3A;
    --color-text-light: #6B6B7B;
    --color-text-muted: #9B9BAB;
    --color-white: #FFFFFF;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.05);
    --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 12px 32px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 24px 48px rgba(26, 26, 46, 0.16);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --header-height: 72px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    transition: box-shadow var(--transition-base), background var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(250, 248, 245, 0.98);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-dark);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
    transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-dark);
    background: rgba(26, 26, 46, 0.04);
}

.nav-link:hover::after,
.nav-link:focus::after {
    transform: translateX(-50%) scaleX(1);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(26, 26, 46, 0.04);
    padding: 4px;
    border-radius: var(--radius-md);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.lang-btn img {
    border-radius: 2px;
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.lang-btn:hover {
    color: var(--color-text);
    background: rgba(26, 26, 46, 0.06);
}

.lang-btn.active {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(26, 26, 46, 0.06);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 46, 0.3) 0%,
        rgba(26, 26, 46, 0.5) 50%,
        rgba(26, 26, 46, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 120px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-top: 12px;
    color: var(--color-gold-light);
}

.hero-quote {
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0.7;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(199, 91, 58, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 91, 58, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    opacity: 0.7;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   QUICK FACTS BAR
   ============================================ */

.quick-facts {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 48px 0;
    position: relative;
    z-index: 2;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.fact-item {
    padding: 8px;
}

.fact-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.2;
    margin-bottom: 8px;
}

.fact-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 500;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   HISTORY / TIMELINE
   ============================================ */

.history {
    padding: 100px 0;
    background: var(--color-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--color-sand) 5%,
        var(--color-sand) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-terracotta);
    letter-spacing: 1px;
    background: var(--color-light);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid var(--color-sand);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--color-terracotta);
    border-radius: 50%;
    border: 3px solid var(--color-light);
    box-shadow: 0 0 0 3px var(--color-terracotta);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(199, 91, 58, 0.2), 0 0 0 3px var(--color-terracotta);
}

.timeline-card {
    width: calc(50% - 48px);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    opacity: 0;
    animation: fadeInSlide 0.6s ease-out forwards;
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-image {
    height: 220px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.timeline-card:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-content {
    padding: 28px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-olive);
    background: rgba(107, 123, 61, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ============================================
   GOLDEN BRIDGE SECTION
   ============================================ */

.golden-bridge {
    padding: 100px 0;
    background: var(--color-light-warm);
    position: relative;
    overflow: hidden;
}

.golden-bridge::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bridge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.bridge-text {
    max-width: 540px;
}

.bridge-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.bridge-text p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.bridge-quote {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
}

.bridge-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 12px;
}

.bridge-quote cite {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: normal;
    font-weight: 500;
}

.bridge-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.bridge-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bridge-image:hover img {
    transform: scale(1.03);
}

.bridge-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.7));
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   CURRENT SITUATION
   ============================================ */

.current {
    padding: 100px 0;
    background: var(--color-white);
}

.current-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.current-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}

.current-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.current-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.current-icon i {
    font-size: 1.1rem;
    color: var(--color-terracotta);
}

.current-image {
    height: 200px;
    overflow: hidden;
}

.current-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.current-card:hover .current-image img {
    transform: scale(1.06);
}

.current-content {
    padding: 24px;
}

.current-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-sapphire);
    background: rgba(30, 95, 140, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.current-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.current-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.current-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.current-meta span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.current-meta i {
    margin-right: 4px;
    color: var(--color-olive);
}

/* ============================================
   VOICES SECTION
   ============================================ */

.voices {
    padding: 100px 0;
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.voices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.voices .section-tag {
    color: var(--color-gold);
}

.voices .section-title {
    color: var(--color-white);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.voice-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
}

.voice-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
}

.voice-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 1;
}

.voice-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--color-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.voice-card cite {
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: normal;
    font-weight: 500;
}

/* ============================================
   SIGHTS SECTION
   ============================================ */

.sights {
    padding: 100px 0;
    background: var(--color-light);
}

.sights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sight-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sight-card-large {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: 1fr auto;
}

.sight-card-large .sight-image {
    height: 100%;
    min-height: 300px;
}

.sight-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sight-card:hover .sight-image img {
    transform: scale(1.05);
}

.sight-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.sight-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
}

.sight-content {
    padding: 24px;
}

.sight-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.sight-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.sight-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sight-meta span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.sight-meta i {
    margin-right: 4px;
    color: var(--color-olive);
}

/* ============================================
   FACTS SECTION
   ============================================ */

.facts {
    padding: 100px 0;
    background: var(--color-light-warm);
}

.facts-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fact-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(26, 26, 46, 0.04);
}

.fact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(199, 91, 58, 0.25);
}

.fact-card:nth-child(2) .fact-card-icon {
    background: linear-gradient(135deg, var(--color-olive), var(--color-olive-light));
    box-shadow: 0 4px 12px rgba(107, 123, 61, 0.25);
}

.fact-card:nth-child(3) .fact-card-icon {
    background: linear-gradient(135deg, var(--color-sapphire), var(--color-sapphire-light));
    box-shadow: 0 4px 12px rgba(30, 95, 140, 0.25);
}

.fact-card:nth-child(4) .fact-card-icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.fact-card:nth-child(5) .fact-card-icon {
    background: linear-gradient(135deg, #8B5A6B, #A67B8A);
    box-shadow: 0 4px 12px rgba(139, 90, 107, 0.25);
}

.fact-card:nth-child(6) .fact-card-icon {
    background: linear-gradient(135deg, #5A8B7A, #7AA89A);
    box-shadow: 0 4px 12px rgba(90, 139, 122, 0.25);
}

.fact-card-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

.fact-card-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 100px 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 16px;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.7));
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* ============================================
   LIGHTBOX (permanent styles)
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--color-terracotta);
}

.lightbox-caption {
    color: white;
    margin-top: 16px;
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-langs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.lang-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus {
    opacity: 1;
    color: var(--color-gold);
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-gold);
    width: 16px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-imprint {
    margin-top: 8px;
    font-size: 0.75rem !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    background: var(--color-terracotta-light);
    transform: translateY(-4px);
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .current-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(26, 26, 46, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 12px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* FIX: Timeline on mobile */
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 52px;
    }

    .timeline-marker {
        left: 20px;
        transform: none;
    }

    .timeline-card {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .bridge-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bridge-image img {
        height: 350px;
    }

    .current-grid {
        grid-template-columns: 1fr;
    }

    .voices-grid {
        grid-template-columns: 1fr;
    }

    .sights-grid {
        grid-template-columns: 1fr;
    }

    .sight-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .facts-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 240px);
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .history,
    .golden-bridge,
    .current,
    .voices,
    .sights,
    .facts,
    .gallery {
        padding: 60px 0;
    }

    .quick-facts {
        padding: 32px 0;
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .fact-number {
        font-size: 1.5rem;
    }

    .fact-label {
        font-size: 0.75rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-image {
        height: 160px;
    }

    .current-content {
        padding: 20px;
    }

    .voice-card {
        padding: 28px 20px;
    }

    .fact-card {
        padding: 28px 20px;
    }

    .fact-card-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-bg img {
        animation: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--color-terracotta);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-text-light: #333;
        --color-text-muted: #555;
    }

    .timeline-card,
    .current-card,
    .sight-card,
    .fact-card,
    .voice-card {
        border: 1px solid #333;
    }
}

/* Print styles */
@media print {
    .header,
    .hero-scroll,
    .back-to-top,
    .mobile-menu-toggle,
    .lang-switcher {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-bg {
        display: none;
    }

    .hero-content {
        color: var(--color-dark);
        position: static;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }

    .timeline-line {
        background: #000;
    }
}