/* La Stelle - Luxury Celebrity Magazine Stylesheet */

:root {
    --gold: #D4AF37;
    --ivory: #FCFBF7;
    --black: #0A0A0A;
    --charcoal: #1a1a1a;
    --muted-gold: #B8956E;
    --soft-cream: #F5F3EE;
    --pale-rose: #E8D5D5;
    --silver: #C0C0C0;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--ivory);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--ivory);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav-links .magazines-btn {
    background: var(--gold);
    color: var(--black);
    padding: 12px 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links .magazines-btn:hover {
    background: var(--ivory);
    color: var(--black);
}

.nav-links .magazines-btn::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--ivory);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/magazine collage.jpg') center/cover no-repeat;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content .tagline {
    font-size: 0.9rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--ivory);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--gold);
    color: var(--black);
}

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

/* Countries Ticker */
.ticker-wrap {
    background: var(--black);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 60s linear infinite;
}

.ticker span {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 30px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stats Section */
.stats-section {
    background: var(--black);
    padding: 100px 50px;
    text-align: center;
}

.stats-header {
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--ivory);
    margin-bottom: 20px;
}

.stats-header p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
}

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

.stat-item {
    padding: 40px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    color: var(--ivory);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Featured Magazines Section */
.featured-magazines {
    padding: 120px 50px;
    background: var(--ivory);
}

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

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--black);
}

.section-header p {
    color: var(--muted-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.mag-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mag-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mag-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.mag-card:hover img {
    transform: scale(1.05);
}

.mag-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--ivory);
    transform: translateY(100%);
    transition: var(--transition);
}

.mag-card:hover .mag-overlay {
    transform: translateY(0);
}

.mag-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mag-overlay p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 18px 60px;
    background: var(--black);
    color: var(--ivory);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Editorial Section */
.editorial-section {
    padding: 120px 50px;
    background: var(--soft-cream);
}

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

.editorial-image {
    position: relative;
}

.editorial-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.editorial-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.editorial-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    line-height: 1.2;
}

.editorial-content p {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.editorial-link {
    display: inline-block;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
    margin-top: 20px;
}

.editorial-link:hover {
    color: var(--gold);
}

/* Team Preview */
.team-preview {
    padding: 120px 50px;
    background: var(--black);
    text-align: center;
}

.team-preview .section-header h2 {
    color: var(--ivory);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    text-align: left;
}

.team-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--gold);
    padding: 10px;
    margin-bottom: 25px;
    filter: grayscale(30%);
    transition: var(--transition);
}

.team-card:hover img {
    filter: grayscale(0%);
}

.team-card h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.team-card .role {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--silver);
    margin-bottom: 20px;
}

.team-card .bio {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #aaa;
}

/* Events Section */
.events-section {
    padding: 120px 50px;
    background: var(--ivory);
}

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

.event-card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--ivory);
}

.event-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.event-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--black);
    padding: 80px 50px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand .logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: #888;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.75rem;
}

.footer-locations {
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* Page Headers */
.page-header {
    padding: 180px 50px 100px;
    background: var(--black);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--ivory);
    margin-bottom: 20px;
}

.page-header p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
}

/* Magazines Page */
.magazines-page {
    padding: 100px 50px;
    background: var(--ivory);
}

.magazines-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.magazine-item {
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.magazine-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.magazine-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.magazine-item:hover img {
    transform: scale(1.03);
}

/* Team Page */
.team-page {
    padding: 100px 50px;
    background: var(--ivory);
}

.team-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.team-member-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-member-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--black);
}

.team-member-info .role {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.team-member-info p {
    color: #666;
    line-height: 1.9;
}

/* Interviews Page */
.interviews-page {
    padding: 100px 50px;
    background: var(--ivory);
}

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

.interview-card {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.interview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.interview-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.interview-card-content {
    padding: 30px;
}

.interview-card-content .category {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    margin-bottom: 15px;
    display: block;
}

.interview-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.interview-card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
}

.read-more:hover {
    color: var(--gold);
}

/* Contact Page */
.contact-page {
    padding: 100px 50px;
    background: var(--ivory);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-info p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item-content h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-item-content p {
    color: #666;
    margin-bottom: 0;
}

.contact-item-content a {
    color: var(--gold);
}

.contact-form {
    background: white;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 10px;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--black);
    color: var(--ivory);
    border: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Refund Policy */
.refund-section {
    padding: 80px 50px;
    background: var(--soft-cream);
}

.refund-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.refund-content h3 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.refund-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .magazine-grid,
    .magazines-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .magazine-grid,
    .magazines-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-image::before {
        display: none;
    }

    .team-grid,
    .team-full-grid {
        grid-template-columns: 1fr;
    }

    .team-member-card {
        grid-template-columns: 1fr;
    }

    .events-grid,
    .interviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .magazine-grid,
    .magazines-full-grid {
        grid-template-columns: 1fr;
    }

    .events-grid,
    .interviews-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .page-header,
    .featured-magazines,
    .editorial-section,
    .team-preview,
    .events-section,
    .magazines-page,
    .team-page,
    .interviews-page,
    .contact-page {
        padding: 80px 20px;
    }

    .mag-card img,
    .magazine-item img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .tagline {
        letter-spacing: 4px;
        font-size: 0.75rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .contact-form {
        padding: 30px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
