:root {
    --primary-pink: #D48181;
    --accent-pink: #F2C1B1;
    --dark-bg: #121212;
    --alt-bg: #1A1A1A;
    --text-white: #EAEAEA;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
}

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

.alternate-bg {
    background-color: var(--alt-bg);
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 50px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 80px; }

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: var(--transition-medium);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(18, 18, 18, 0.9);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-pink);
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-pink);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('fashion_hero_pink_1774761367738.png') no-repeat center center/cover;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

#hero h1 span {
    color: var(--primary-pink);
    font-style: italic;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-pink);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--primary-pink);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Typography & General */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-pink);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.lead {
    font-size: 1.5rem;
    color: var(--primary-pink);
    font-style: italic;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

p {
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

@media (max-width: 991px) {
    .grid-2, .grid-2-rev {
        grid-template-columns: 1fr;
    }
    .grid-2-rev .content-wrapper {
        order: 1;
    }
}

.image-wrapper {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 129, 129, 0.1);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card {
    background: var(--alt-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-medium);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(212, 129, 129, 0.1);
}

.card h3 {
    color: var(--primary-pink);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* List */
.info-list {
    list-style: none;
    margin-top: 30px;
}

.info-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
}

/* Quote */
.quote-block {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--accent-pink);
}

/* Special Section */
.pink-section {
    background: linear-gradient(135deg, rgba(212, 129, 129, 0.1) 0%, rgba(18, 18, 18, 1) 100%);
}

.white { color: white !important; }

/* Footer */
footer {
    background: #0a0a0a;
    border-top: 1px solid var(--glass-border);
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition-medium);
}

.footer-links a:hover {
    color: var(--primary-pink);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s forwards 0.5s;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}
