@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Unbounded:wght@400;600;800&display=swap');

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

:root {
    --sky-blue: #E0F4FF;
    --soft-lavender: #F3E8FF;
    --mint-fresh: #E0FFF4;
    --peachy-cream: #FFE8D6;
    --bright-coral: #FF6B6B;
    --electric-blue: #4ECDC4;
    --sunny-yellow: #FFE66D;
    --vibrant-purple: #A78BFA;
    --ocean-teal: #06B6D4;
    --rose-pink: #FB7185;
    --light-base: #FAFBFF;
    --soft-white: #FFFFFF;
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --shadow-color: rgba(100, 116, 139, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--light-base) 0%, var(--sky-blue) 50%, var(--soft-lavender) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated Light Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 230, 109, 0.1) 0%, transparent 60%);
    animation: lightPulse 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes lightPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
}

/* Floating light orbs */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(78, 205, 196, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(167, 139, 250, 0.3) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 230, 109, 0.3) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    background-position: 0 0, 50px 50px, 100px 100px;
    animation: orbFloat 30s linear infinite;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

@keyframes orbFloat {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-150px) translateX(100px);
    }
}

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

/* Light Futuristic Header */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--electric-blue), var(--vibrant-purple), var(--rose-pink)) 1;
    box-shadow: 0 8px 32px var(--shadow-color), 0 0 60px rgba(78, 205, 196, 0.15);
    padding: 1.5rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.site-title h1 {
    margin: 0;
}

.site-title a {
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(135deg, var(--ocean-teal), var(--vibrant-purple), var(--rose-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.3));
}

.site-title a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-blue), var(--rose-pink));
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    border-radius: 2px;
}

.site-title a:hover::after {
    width: 100%;
}

.site-title a:hover {
    filter: drop-shadow(0 0 30px rgba(78, 205, 196, 0.6)) brightness(1.2);
}

.site-tagline {
    font-size: 0.95rem;
    background: linear-gradient(90deg, var(--ocean-teal), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

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

nav#menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav#menu li {
    position: relative;
}

nav#menu a {
    text-decoration: none;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

nav#menu li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--vibrant-purple));
    transition: width 0.4s ease;
    box-shadow: 0 2px 15px rgba(78, 205, 196, 0.5);
    border-radius: 2px;
}

nav#menu li:hover::after {
    width: 100%;
}

nav#menu li:hover a {
    color: var(--ocean-teal);
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 8rem 3rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    animation: heroShimmer 5s ease-in-out infinite;
}

@keyframes heroShimmer {

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

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

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(135deg, var(--ocean-teal), var(--vibrant-purple), var(--rose-pink), var(--sunny-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: titleLevitate 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(78, 205, 196, 0.3));
    position: relative;
    z-index: 2;
}

@keyframes titleLevitate {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--ocean-teal), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-secondary);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Decorative Camera Icon */
.camera-icon {
    width: 140px;
    height: 140px;
    margin: 2rem auto;
    position: relative;
    animation: cameraBounce 5s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(78, 205, 196, 0.3));
}

@keyframes cameraBounce {

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

    25% {
        transform: translateY(-25px) rotate(-3deg);
    }

    75% {
        transform: translateY(-10px) rotate(3deg);
    }
}

.camera-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(78, 205, 196, 0.4));
}

/* Main Content Area */
.main-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(135deg, var(--ocean-teal), var(--vibrant-purple), var(--rose-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.2));
}

.section-header::after {
    content: '';
    display: block;
    width: 200px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), var(--vibrant-purple), var(--rose-pink), transparent);
    margin: 1.5rem auto;
    border-radius: 3px;
    box-shadow: 0 3px 20px rgba(78, 205, 196, 0.4);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {

    0%,
    100% {
        box-shadow: 0 3px 20px rgba(78, 205, 196, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(167, 139, 250, 0.6);
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* Card Design - Light Theme */
.gallery-card {
    position: relative;
    height: 380px;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 40px var(--shadow-color), 0 5px 20px rgba(78, 205, 196, 0.1);
}

.gallery-card:hover {
    transform: translateY(-25px) scale(1.03);
    box-shadow: 0 30px 70px rgba(78, 205, 196, 0.25), 0 15px 40px rgba(167, 139, 250, 0.2);
    border-color: var(--electric-blue);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--electric-blue), var(--vibrant-purple), var(--rose-pink), var(--sunny-yellow));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 3;
    animation: gradientFlow 3s linear infinite;
}

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

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

.gallery-card:hover::before {
    transform: scaleX(1);
}

.card-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.1) contrast(1.05);
}

.gallery-card:hover .card-image-wrapper img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05) saturate(1.3) contrast(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 40%,
            transparent 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.gallery-card:hover .card-overlay {
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.2) 60%,
            rgba(224, 244, 255, 0.1) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.card-title {
    font-size: 1.55rem;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.4);
}

.card-title::before {
    content: '';
    position: absolute;
    left: -0.75rem;
    top: -0.3rem;
    right: -0.75rem;
    bottom: -0.3rem;
    z-index: -1;
    background: linear-gradient(135deg,
            rgba(0, 200, 200, 0.15),
            rgba(138, 43, 226, 0.15));
    -webkit-backdrop-filter: blur(8px) brightness(0.7);
    backdrop-filter: blur(8px) brightness(0.7);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card:hover .card-title {
    transform: translateX(5px);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(78, 205, 196, 0.6);
}

.gallery-card:hover .card-title::before {
    background: linear-gradient(135deg,
            rgba(78, 205, 196, 0.25),
            rgba(138, 43, 226, 0.25));
    border-color: rgba(78, 205, 196, 0.3);
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    font-weight: 400;
}

.gallery-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
}

/* Corner Accent - Light */
.corner-accent {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    z-index: 4;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-purple));
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.4);
}

.corner-accent::before {
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
}

.corner-accent::after {
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    border-radius: 2px;
}

.gallery-card:hover .corner-accent {
    opacity: 1;
    width: 65px;
    height: 65px;
}

.gallery-card:hover .corner-accent::before,
.gallery-card:hover .corner-accent::after {
    box-shadow: 0 0 25px rgba(78, 205, 196, 0.7);
}

/* Footer - Light Theme */
footer {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(224, 244, 255, 0.8) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--electric-blue), var(--vibrant-purple), var(--rose-pink)) 1;
    box-shadow: 0 -10px 40px var(--shadow-color);
    padding: 3rem 2rem;
    margin-top: 5rem;
    text-align: center;
}

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

.footer-title {
    font-size: 1.3rem;
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(135deg, var(--ocean-teal), var(--vibrant-purple), var(--rose-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 800;
    filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.2));
}

#langsection {
    padding-top: 2rem;
}

#langlist {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.8rem;
    border: 2px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 30px var(--shadow-color), inset 0 0 30px rgba(78, 205, 196, 0.05);
    margin-bottom: 2rem;
    list-style: none;
}

#langlist li {
    display: inline-block;
    margin: 0.4rem;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    transition: all 0.4s ease;
}

#langlist a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

#langlist .highlight {
    background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-purple));
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

#langlist .highlight a {
    color: white;
    font-weight: 700;
}

#langlist li:not(.highlight):hover {
    background: rgba(78, 205, 196, 0.15);
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
    transform: translateY(-2px);
}

#langlist li:not(.highlight):hover a {
    color: var(--ocean-teal);
}

.footer-credits {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 2rem;
    font-weight: 400;
}

.footer-credits strong {
    background: linear-gradient(135deg, var(--ocean-teal), var(--vibrant-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
}

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

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

    nav#menu {
        justify-content: center;
    }

    nav#menu ul {
        gap: 1.5rem;
    }

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

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

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

    .section-header h2 {
        font-size: 2.5rem;
    }
}

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

    .site-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    nav#menu ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .gallery-card {
        height: 350px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

/* Additional light effects */
.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(78, 205, 196, 0.1) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-card:hover::after {
    opacity: 1;
}
