@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500;600&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8E8 25%, #FFF5F5 50%, #FFF0E8 75%, #FFFAF5 100%);
    color: #2C1810;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Aperture blade pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(231, 76, 60, 0.02) 15deg, transparent 30deg),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(192, 57, 43, 0.02) 60px, rgba(192, 57, 43, 0.02) 62px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Lens flare ambient glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 25% 20%, rgba(231, 76, 60, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 35%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 75%, rgba(236, 112, 99, 0.04) 0%, transparent 50%);
    animation: lensPulse 18s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes lensPulse {
    0% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.08) rotate(5deg);
    }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Futuristic Header */
header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(45px);
    -webkit-backdrop-filter: blur(45px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #E74C3C, #C0392B, #EC7063, #E74C3C) 1;
    padding: 2rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 35px rgba(231, 76, 60, 0.12),
        0 0 55px rgba(255, 255, 255, 0.9) inset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    flex: 1;
    min-width: 200px;
}

.site-title a {
    text-decoration: none;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 35%, #EC7063 65%, #E74C3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.25));
    animation: titleFocus 7s ease-in-out infinite;
}

@keyframes titleFocus {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.25));
    }

    50% {
        filter: drop-shadow(0 0 28px rgba(192, 57, 43, 0.4));
    }
}

.site-title a:hover {
    filter: drop-shadow(0 0 30px rgba(231, 76, 60, 0.45));
    letter-spacing: 10px;
}

.site-tagline {
    font-size: 1.05rem;
    background: linear-gradient(90deg, #C0392B, #E74C3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 0.6rem;
    font-weight: 600;
    font-family: 'Roboto Mono', monospace;
}

/* Navigation Menu */
#menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

#menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

#menu li {
    margin: 0 1.5rem;
    font-size: 1.05rem;
    line-height: 2.5rem;
    position: relative;
}

#menu li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E74C3C, #EC7063);
    transition: width 0.4s ease;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.5);
}

#menu li:hover::before {
    width: 100%;
}

#menu a {
    text-decoration: none;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

#menu li:hover a {
    color: #E74C3C;
    text-shadow: 0 0 12px rgba(231, 76, 60, 0.25);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 5.5rem 2rem 4.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.96) 100%);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 35%, #EC7063 60%, #E74C3C 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 16px;
    position: relative;
    filter: drop-shadow(0 0 22px rgba(231, 76, 60, 0.18));
    animation: cameraFocus 9s ease-in-out infinite;
}

@keyframes cameraFocus {

    0%,
    100% {
        filter: drop-shadow(0 0 22px rgba(231, 76, 60, 0.18));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(192, 57, 43, 0.3));
        transform: scale(1.012);
    }
}

.hero-subtitle {
    font-size: 1.9rem;
    background: linear-gradient(90deg, #C0392B, #E74C3C, #EC7063);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1.8rem;
    font-family: 'Roboto Mono', monospace;
}

.hero-quote {
    font-size: 1.35rem;
    color: #8B4513;
    font-style: italic;
    margin-top: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.9;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Photography Journey SVG */
.photography-svg {
    width: 100%;
    height: 500px;
    margin-top: 3.5rem;
}

/* SVG Animations */
.aperture-spin {
    animation: apertureSpin 8s linear infinite;
    transform-origin: center;
}

@keyframes apertureSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.shutter-pulse {
    animation: shutterOpen 4s ease-in-out infinite;
}

@keyframes shutterOpen {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.lens-reflect {
    animation: lensShine 5s ease-in-out infinite;
}

@keyframes lensShine {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.focus-ring {
    animation: focusRotate 6s linear infinite;
    transform-origin: center;
}

@keyframes focusRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.flash-burst {
    opacity: 0;
    animation: flashEffect 4s ease-in-out infinite;
}

@keyframes flashEffect {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    10% {
        opacity: 1;
        transform: scale(1.2);
    }

    30% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.camera-float {
    animation: cameraHover 5s ease-in-out infinite;
}

@keyframes cameraHover {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Content Section */
.main-content {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 3rem 4rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(38px);
    -webkit-backdrop-filter: blur(38px);
    border-radius: 22px;
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
        linear-gradient(135deg, #E74C3C, #EC7063, #C0392B);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 12px 45px rgba(231, 76, 60, 0.14),
        0 0 65px rgba(255, 255, 255, 0.9) inset;
    padding: 4rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(231, 76, 60, 0.05) 50%,
            transparent 70%);
    animation: cardExposure 4.5s linear infinite;
    pointer-events: none;
}

@keyframes cardExposure {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.content-card h2 {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 7px;
    margin-bottom: 2.2rem;
    position: relative;
    padding-left: 35px;
}

.content-card h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 85%;
    background: linear-gradient(180deg, #E74C3C, #C0392B);
    box-shadow: 0 0 18px rgba(231, 76, 60, 0.35);
    border-radius: 10px;
}

.content-card h3 {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #C0392B;
    margin-top: 3rem;
    margin-bottom: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.content-card p {
    font-size: 1.18rem;
    line-height: 2.1;
    color: #5D4037;
    margin-bottom: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.content-card ol {
    padding-left: 2.5rem;
    position: relative;
    z-index: 1;
}

.content-card li {
    font-size: 1.12rem;
    line-height: 2;
    color: #5D4037;
    margin-bottom: 1rem;
}

.content-card a {
    color: #E74C3C;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.content-card a:hover {
    color: #C0392B;
    border-bottom: 2px solid #E74C3C;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
}

/* Decorative camera lens accents */
.lens-accent {
    position: absolute;
    pointer-events: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid;
    transition: all 0.6s ease;
}

.accent-tl {
    top: 20px;
    left: 20px;
    border-color: #E74C3C;
    opacity: 0.3;
}

.accent-tr {
    top: 20px;
    right: 20px;
    border-color: #EC7063;
    opacity: 0.3;
}

.accent-bl {
    bottom: 20px;
    left: 20px;
    border-color: #C0392B;
    opacity: 0.3;
}

.accent-br {
    bottom: 20px;
    right: 20px;
    border-color: #E74C3C;
    opacity: 0.3;
}

.content-card:hover .lens-accent {
    box-shadow: 0 0 25px currentColor;
    opacity: 0.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.98) 100%);
    backdrop-filter: blur(45px);
    -webkit-backdrop-filter: blur(45px);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #E74C3C, #C0392B, #EC7063, #E74C3C) 1;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 -10px 35px rgba(231, 76, 60, 0.12);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-credits {
    color: #8B4513;
    font-size: 1.05rem;
    letter-spacing: 2.5px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.footer-credits strong {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .site-branding {
        margin-bottom: 1rem;
    }

    #menu {
        justify-content: center;
    }

    #menu ul {
        justify-content: center;
    }

    .hero-title {
        font-size: 4rem;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }

    .content-card {
        padding: 3rem 2rem;
    }
}

@media screen and (max-width: 600px) {
    .site-title a {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .site-tagline {
        font-size: 0.85rem;
    }

    #menu li {
        margin: 0 0.8rem;
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .hero-quote {
        font-size: 1.05rem;
    }

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

    .content-card h2 {
        font-size: 1.9rem;
    }

    .content-card h3 {
        font-size: 1.5rem;
    }

    .content-card p {
        font-size: 1.05rem;
    }

    .main-content {
        padding: 0 1.5rem 3rem;
    }
}

#langlist {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg, 1rem);
    padding: 0;
    margin: 0;
}

#langlist li {
    position: relative;
}

#langlist a {
    text-decoration: none;
    color: var(--text-muted, inherit);
    font-size: var(--text-sm, 0.95rem);
    letter-spacing: 0.08em;
    padding: var(--space-sm, 0.5rem) var(--space-md, 1rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    background: rgba(212, 165, 116, 0.06);
    border: 1px solid rgba(212, 165, 116, 0.15);
    white-space: nowrap;
}

#langlist a:hover {
    background: rgba(212, 165, 116, 0.12);
    border-color: rgba(212, 165, 116, 0.3);
    color: var(--baltic-deep-amber, currentColor);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm, 0 4px 12px rgba(0, 0, 0, 0.12));
}

#langlist .highlight a {
    background: linear-gradient(135deg, var(--baltic-deep-teal, #0f766e), var(--baltic-amber, #d4a574));
    color: var(--baltic-cream, #fffaf0);
    border-color: var(--baltic-deep-amber, #b7791f);
}
