/* 
   Lens & Light Photography Design System
   Brand Personality: Artistic, Cinematic, Premium, Minimalist
*/

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

:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #f5f1ed; /* Soft Sand */
    --text-muted: #666666;
    --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    background-color: var(--secondary);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* BrandVelocity Badge */
.bv-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 10px 20px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 5%;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    font-size: 28px;
    text-transform: uppercase;
}

.logo span {
    font-weight: 300;
    margin: 0 10px;
    opacity: 0.3;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

nav ul li a:hover, nav ul li a.active {
    opacity: 0.5;
}

/* Sections */
section {
    padding: 140px 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    display: block;
    opacity: 0.5;
}

h2 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.2;
    margin-bottom: 40px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    transition: transform 2s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-black {
    background: var(--primary);
    color: var(--secondary);
}

.btn-black:hover {
    background: var(--secondary);
    color: var(--primary);
}

.btn-white {
    background: var(--secondary);
    color: var(--primary);
}

/* Footer */
footer {
    padding: 100px 5%;
    background: var(--accent);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col h4 {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 12px;
    opacity: 0.6;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    margin-top: 100px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.4;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    nav { display: none; }
}
