/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #0b0c10;
    color: #c5c6c7;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: #66fcf1;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #45f3ff;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.92);
    backdrop-filter: blur(12px);
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.logo h1 {
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: #ffffff;
    font-weight: 600;
}

.logo p {
    font-size: 0.72rem;
    color: #66fcf1;
    letter-spacing: 1px;
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: #c5c6c7;
    text-decoration: none;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #66fcf1;
    transition: width 0.3s;
}

nav a:hover {
    color: #66fcf1;
}

nav a:hover::after {
    width: 100%;
}

/* === HERO (HOME) === */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(11,12,16,0.5) 70%, #0b0c10 100%),
        url("/images/IMG_6945_1.jpeg") center/cover no-repeat;
}

.hero-content h2 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 300;
    max-width: 750px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1rem;
    color: #66fcf1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* === BIO SECTION === */
.bio-section {
    padding: 100px 0 80px;
}

.bio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 48px;
}

.bio-text p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #d1d2d3;
}

.bio-contact {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-link {
    font-size: 0.95rem;
    padding: 10px 24px;
    border: 1px solid rgba(102, 252, 241, 0.3);
    border-radius: 6px;
    transition: all 0.3s;
}

.contact-link:hover {
    background: rgba(102, 252, 241, 0.1);
    border-color: #66fcf1;
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: #66fcf1;
    color: #0b0c10;
    border: 2px solid #66fcf1;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn:hover {
    background: transparent;
    color: #66fcf1;
}

.btn-outline {
    background: transparent;
    color: #66fcf1;
}

.btn-outline:hover {
    background: #66fcf1;
    color: #0b0c10;
}

/* === PAGE HERO (ABOUT) === */
.page-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
}

.hero-inner {
    max-width: 700px;
}

.page-hero h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 32px;
}

.hero-bio p {
    font-size: 1.1rem;
    color: #d1d2d3;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* === TM DETAILS === */
.about-tm {
    padding: 80px 0;
}

.about-tm h3 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 300;
    letter-spacing: 2px;
}

.tm-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tm-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 36px;
}

.tm-card h4 {
    font-size: 1.2rem;
    color: #66fcf1;
    margin-bottom: 16px;
}

.tm-card p {
    font-size: 1rem;
    color: #d1d2d3;
    margin-bottom: 12px;
}

/* ================================================
   FULL-WIDTH GALLERY (GALLERY PAGE)
   Each image takes full viewport width.
   Scroll down to move through images.
   ================================================ */

.gallery-intro {
    padding: 120px 0 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.015);
}

.gallery-intro h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.gallery-quote {
    font-style: italic;
    color: #66fcf1;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.gallery-scroll-hint {
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* --- THE GALLERY --- */
.full-gallery {
    column-count: 3;
    column-gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 60px;
}

.about-gallery {
    column-count: 2;
}

.gallery-slide {
    break-inside: avoid;
    margin-bottom: 16px;
    background: #111;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- GALLERY OUTRO --- */
.gallery-outro {
    padding: 80px 0;
    text-align: center;
}

.gallery-outro p {
    font-size: 1.1rem;
    color: #d1d2d3;
    margin-bottom: 16px;
}

/* === FOOTER === */
footer {
    background: #000;
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}

.footer-content strong {
    color: #fff;
}

.footer-content a {
    color: #66fcf1;
}

.footer-link {
    margin-top: 20px !important;
}

.footer-link a {
    font-size: 0.8rem;
    color: #555 !important;
    letter-spacing: 1px;
}

.footer-link a:hover {
    color: #66fcf1 !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 12px;
        padding: 14px 20px;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 0.75rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .page-hero h2 {
        font-size: 2rem;
    }

    .bio-card {
        padding: 28px;
    }

    .concept-card {
        padding: 24px;
    }

    .tm-details {
        grid-template-columns: 1fr;
    }

    .gallery-intro h2 {
        font-size: 1.8rem;
    }

    .full-gallery {
        column-count: 2;
        column-gap: 12px;
        padding: 12px 12px 40px;
    }

    .about-gallery {
        column-count: 1;
    }

    .gallery-slide {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .full-gallery {
        column-count: 1;
    }

    .about-gallery {
        column-count: 1;
    }
}
