@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #fdfdfd;
    --text-color: #1a1a1a;
    --accent-color: #c5a059;
    --secondary-text: #666;
    --border-color: #e5e5e5;
    --section-padding: 100px 5%;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Scroll Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-color);
    z-index: 1001;
    transition: width 0.1s;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    color: white; /* Default color for hero */
}

header.scrolled {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: inherit;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

/* Editorial Sections */
section:not(.hero) {
    max-width: 1400px;
    margin: 0 auto;
}

section {
    padding: var(--section-padding);
}

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

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Full Width Text Section */
.text-feature {
    background-color: #1a1a1a;
    color: white;
    padding: 150px 15%;
    text-align: center;
}

.text-feature h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
}

.text-feature .lead-text {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Footer */
footer {
    padding: 100px 5%;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-nav {
    margin-bottom: 40px;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.copyright {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-feature {
        padding: 100px 5%;
    }
}
