/* ROSETTA Styles */
:root {
    --bg-light: #fdfdfc;
    --text-dark: #121212;
    --bg-dark: #111111;
    --text-light: #ffffff;
    --accent: #2c2c2c;
    
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --container-width: 1400px;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.serif {
    font-family: var(--font-serif);
}

.mono-text {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

.section-heading {
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.logo {
    font-family: var(--font-serif);
    font-size: 24px;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .nav-right {
        display: none;
    }
    .nav-container {
        padding: 0 20px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 120%; /* Offset for parallax */
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(253,253,252,0.1) 0%, rgba(253,253,252,0.8) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}

.hero-title {
    font-size: clamp(50px, 8vw, 120px);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.explore-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: var(--text-dark);
    color: var(--bg-light);
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.story-image {
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Lookbook section */
.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.item-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

@media (max-width: 900px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Section */
.feature-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-img {
    width: 100%;
}

.feature-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--bg-light);
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .feature-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin-top: -20px;
    }
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 32px;
    margin-bottom: 10px;
}

.footer-heading {
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    opacity: 0.5;
    text-transform: uppercase;
    text-align: center;
}

/* Animations Tools */
.reveal, .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active, .fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
