/* --- CSS Variables & Reset --- */
:root {
    --bg-dark: #0a0a0a;
    --text-primary: #f0f0f0;
    --text-muted: #888888;
    --accent: #ffffff;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --grid-gap: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Sticky Header --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--text-muted);
    margin-left: 5px;
}

.site-nav a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: var(--text-muted);
}

/* --- Flagship Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: flex-end;
    padding: 4vw;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a; /* Placeholder dark gray */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.hero-overlay h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 1rem;
}

/* --- Asymmetric 12-Column Gallery --- */
.gallery-container {
    padding: 8vw 4vw;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

.gallery-item {
    background-color: #151515; /* Placeholder for actual images */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px; /* Optional: remove for sharp edges */
    overflow: hidden;
    transition: transform 0.4s ease;
}

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

.placeholder-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Grid Spans & Aspect Ratios */
.span-8 { grid-column: span 8; }
.span-4 { grid-column: span 4; }
.span-12 { grid-column: span 12; }

.landscape { aspect-ratio: 16 / 9; }
.portrait { aspect-ratio: 4 / 5; }
.cinematic { aspect-ratio: 21 / 9; }

/* --- Minimalist About Section --- */
.about-section {
    padding: 10vw 4vw;
    display: flex;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
    max-width: 800px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.about-content p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: var(--text-primary);
}

/* --- CTA Footer --- */
.site-footer {
    padding: 8vw 4vw 4vw;
    text-align: center;
    background-color: #050505;
}

.site-footer h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.email-link {
    display: inline-block;
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    margin-bottom: 4rem;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.7;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Responsive Mobile Adjustments --- */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .site-nav a {
        margin: 0 1rem;
    }

    /* Stack grid on small screens */
    .span-8, .span-4 {
        grid-column: span 12;
    }
    
    .portrait {
        aspect-ratio: 4 / 5; 
    }
    
}

/* --- Language Toggle --- */
.lang-toggle {
    display: inline-block;
    margin-left: 3rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.active-lang {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 8px;
}

.lang-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: var(--text-primary);
}

/* --- Image Fitting --- */
.hero-image-placeholder img, 
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* --- JS Fade-In Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Round Profile Picture --- */
.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- Upgraded Email Button --- */
.email-link {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--bg-dark);
    background-color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: none; /* Removes the old underline */
}

.email-link:hover {
    transform: translateY(-4px);
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: var(--text-muted);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-links a:hover svg {
    fill: var(--text-primary);
    transform: scale(1.15);
}
