:root {
    --bg-color: #0c0c0e;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #d4d4d8;
    --accent-hover: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(12, 12, 14, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
}

.lang-switcher select {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 0;
    /* Sharp corners */
    outline: none;
    transition: var(--transition);
}

.lang-switcher select:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    /* Perfectly sharp */
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    border: 1px solid var(--text-primary);
}

.btn:hover {
    background: transparent;
    color: var(--text-primary);
}

.icon-inline {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

/* Gallery Grid */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 4rem 0 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

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

.content-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.content-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-grid a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-grid a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.social-grid i {
    width: 24px;
    height: 24px;
    stroke-width: 1.2;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    user-select: none;
}

.lightbox-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
}

.lightbox-content-wrapper:active {
    cursor: grabbing;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: white;
    font-size: 3rem;
    font-weight: 200;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--text-secondary);
}

.lightbox-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.lightbox-controls button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-controls button:hover {
    color: var(--text-secondary);
    transform: scale(1.1);
}

.lightbox-controls i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.gallery-item {
    cursor: pointer;
}

footer {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-contact h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }
}