*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #111;
    color: #fff;
    overflow-x: hidden;
}
#shader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}
#shader-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}
.logo {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.logo:hover {
    opacity: 1;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    cursor: pointer;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.nav-links a:hover {
    color: #fff;
}
.nav-links a:hover::after {
    transform: scaleX(1);
}
#content {
    position: relative;
    z-index: 1;
    padding-top: 56px;
}
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 2rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.section.visible {
    opacity: 1;
}
.hero {
    min-height: calc(100vh - 56px);
    padding: 0 2rem;
    margin-bottom: 0.3rem;
    opacity: 1;
}
.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2.5rem 3.5rem;
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 5px;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.section-inner {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.section-inner:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px) scale(1.004);
}
.section-inner h2 {
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
}
.section-inner p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.6rem 0;
}
.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.035);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    will-change: transform;
}
.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: scale(1.025);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
    transform: scale(1.04);
}
.contact-info p {
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
}
.contact-info p:hover {
    color: rgba(255, 255, 255, 0.95);
}
.contact-info strong {
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    animation: modalFade 0.3s ease;
}
.image-modal.active {
    display: flex;
}
@keyframes modalFade {
    0% {
        opacity: 0;
        transform: scale(0.97);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.modal-close {
    position: absolute;
    top: 24px;
    right: 34px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.6rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s, transform 0.3s ease;
    line-height: 1;
}
.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}
.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    animation: modalContentIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalContentIn {
    0% {
        opacity: 0;
        transform: scale(0.94);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.modal-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 18px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.025);
}
@media (max-width: 700px) {
    .nav-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 0.5rem 0;
    }
    .nav-links {
        gap: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 0.2rem;
    }
    #content {
        padding-top: 80px;
    }
    .section {
        padding: 0.4rem 1.2rem;
    }
    .section-inner {
        padding: 1.4rem 1.2rem;
    }
    .hero-content {
        padding: 1.5rem 1.2rem;
    }
    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    .hero {
        min-height: calc(100vh - 80px);
        padding: 0 1.2rem;
    }
    .modal-close {
        top: 16px;
        right: 20px;
        font-size: 2rem;
    }
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .nav-links a {
        font-size: 0.78rem;
    }
    .hero {
        min-height: calc(100vh - 76px);
    }
    .section-inner {
        padding: 1rem 0.7rem;
        border-radius: 14px;
    }
    .hero-content {
        padding: 1rem 0.7rem;
        border-radius: 18px;
    }
    .hero-content h1 {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    .section-inner h2 {
        font-size: 1.3rem;
    }
    .modal-close {
        top: 12px;
        right: 16px;
        font-size: 1.6rem;
    }
}