/* ALT GLAMOUR GIRLS - Vogue Editorial Style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --black: #000000;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #666666;
    --light-gray: #999999;
    --off-white: #f5f5f5;
    --white: #ffffff;
    --accent: #c9a96e; /* subtle gold */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
}

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

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 6px;
}

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

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 50px 100px;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero1.jpg') center/cover no-repeat;
    opacity: 0.3;
    filter: grayscale(100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeIn 1.2s ease-out;
}

.hero-issue {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
    display: block;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 140px;
    font-weight: 400;
    line-height: 0.85;
    margin-bottom: 40px;
    letter-spacing: 12px;
    color: var(--white);
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 16px 50px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
}

/* Editorial Section */
.editorial {
    padding: 120px 50px;
    background: var(--white);
    color: var(--black);
}

.editorial .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.editorial-image {
    position: relative;
}

.editorial-image img {
    width: 100%;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.editorial-image:hover img {
    filter: grayscale(0%);
}

.editorial-label {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.editorial-content h3 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.editorial-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--black);
}

.editorial-content p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.9;
    margin-bottom: 40px;
}

.editorial-features {
    list-style: none;
    margin-bottom: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.editorial-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 15px;
}

.editorial-features li::before {
    content: '—';
    color: var(--accent);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: transparent;
    color: var(--black);
}

/* Stats Section */
.stats {
    background: var(--charcoal);
    padding: 80px 50px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 10px;
    font-weight: 500;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Philosophy Section */
.philosophy {
    padding: 120px 50px;
    background: var(--black);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 14px;
    color: var(--light-gray);
    max-width: 500px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card {
    text-align: center;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.philosophy-card:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

.philosophy-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 25px;
    font-style: italic;
}

.philosophy-card h3 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--white);
}

.philosophy-card p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.8;
}

/* Instagram Section */
.instagram-section {
    padding: 100px 50px;
    background: var(--off-white);
    text-align: center;
}

.instagram-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
}

.instagram-section p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: var(--white);
    padding: 18px 45px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.instagram-link:hover {
    background: var(--charcoal);
}

.instagram-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* CTA Section */
.cta-section {
    padding: 150px 50px;
    background: var(--black);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent));
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 15px;
    color: var(--light-gray);
    margin-bottom: 50px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--charcoal);
    padding: 60px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo {
    font-size: 18px;
    letter-spacing: 4px;
}

footer p {
    color: var(--medium-gray);
    font-size: 12px;
}

footer .footer-links {
    display: flex;
    gap: 40px;
}

footer .footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 90px;
        letter-spacing: 8px;
    }
    
    .editorial .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 56px;
        letter-spacing: 4px;
    }
    
    .editorial-content h2 {
        font-size: 36px;
    }
    
    nav .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    footer .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}
