@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400&display=swap');

:root {
    --bg: #0a0a0a;
    --fg: #f5f5f5;
    --muted: #a0a0a0;
    --border: rgba(255, 255, 255, 0.1);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ━━ NAVIGATION ━━ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.5s ease;
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ━━ HERO ━━ */
.hero {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.h-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.h-slide.active {
    opacity: 1;
}

.h-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* True Dark Vignette overlay */
.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.85) 100%),
                linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    margin: 0 0 40px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid var(--fg);
    color: var(--fg);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--fg);
    color: var(--bg);
}

/* ━━ SECTIONS ━━ */
.section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin: 0;
}

/* ━━ SERVICES GRID (Pure Photography Focus) ━━ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    group: portfolio;
}

.portfolio-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.p-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-style: italic;
    margin: 0 0 10px;
}

.p-link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--fg);
    padding-bottom: 4px;
}

/* ━━ MASONRY GALLERY ━━ */
.masonry {
    column-count: 3;
    column-gap: 20px;
}

.masonry img {
    width: 100%;
    margin-bottom: 20px;
    background-color: #1a1a1a; /* Placeholder color while loading */
}

@media (max-width: 1024px) {
    .masonry { column-count: 2; }
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .masonry { column-count: 1; }
    .nav-links { display: none; }
}

/* ━━ FOOTER ━━ */
.footer {
    padding: 80px 5%;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.copy {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #666;
}

/* Simple Fade-in Reveal */
.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease-out;
}
.fade-in.visible {
    opacity: 1;
}

/* WhatsApp minimal icon */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.wa-float svg { width: 35px; fill: white; }