/* Sébastien Night - Professional Website Styles */
/* Brand Colors */
:root {
    --golden-grass: #E3AE28;
    --bleached-cedar: #241826;
    --alabaster: #F8F7F7;
    --cabaret: #D33E5D;
    --cold-turkey: #D1B0B3;
    --white: #FFFFFF;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--alabaster);
    color: var(--bleached-cedar);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--golden-grass);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cabaret);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--golden-grass);
}

h2 {
    font-size: 2rem;
    color: var(--bleached-cedar);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--bleached-cedar);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
    color: var(--golden-grass);
    border-bottom-color: var(--golden-grass);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--bleached-cedar);
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--alabaster) 0%, var(--white) 100%);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--bleached-cedar);
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--bleached-cedar);
    border: 2px solid var(--bleached-cedar);
}

.btn-secondary:hover {
    background-color: var(--bleached-cedar);
    color: var(--white);
}

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

.card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: var(--golden-grass);
    margin-bottom: 1rem;
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: var(--golden-grass);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--golden-grass);
}

/* Timeline (for Resume) */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--golden-grass);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.7rem;
    top: 0.3rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--golden-grass);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--golden-grass);
}

.timeline-item h3 {
    color: var(--bleached-cedar);
}

.timeline-item .date {
    color: var(--cold-turkey);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Press Kit Styles */
.press-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.press-photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.press-photo:hover {
    transform: scale(1.05);
}

.press-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.quick-facts {
    background-color: var(--alabaster);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--golden-grass);
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cold-turkey);
}

.quick-facts li:last-child {
    border-bottom: none;
}

/* Media Embeds */
.media-embed {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.media-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Source Links */
.source-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--cold-turkey);
    margin-left: 0.5rem;
}

.source-link::before {
    content: "[";
}

.source-link::after {
    content: "]";
}

/* Footer */
footer {
    background-color: var(--bleached-cedar);
    color: var(--alabaster);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

footer a {
    color: var(--golden-grass);
}

.version {
    font-size: 0.8rem;
    color: var(--cold-turkey);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
    }

    nav li {
        border-bottom: 1px solid var(--alabaster);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    main {
        padding: 2rem 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.highlight {
    color: var(--golden-grass);
    font-weight: 600;
}

/* Press Timeline Filters */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--golden-grass);
    background: var(--white);
    color: var(--bleached-cedar);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: var(--alabaster);
}

.filter-btn.active {
    background: var(--golden-grass);
    color: var(--white);
}

/* Press Timeline */
.press-timeline {
    position: relative;
}

.year-section {
    margin-bottom: 3rem;
}

.year-header {
    font-size: 1.75rem;
    color: var(--golden-grass);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--golden-grass);
}

.press-timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    border-left: 4px solid var(--cold-turkey);
    transition: all 0.3s ease;
}

.press-timeline-item:hover {
    border-left-color: var(--golden-grass);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.press-timeline-item.hidden {
    display: none;
}

.press-date {
    min-width: 100px;
    font-weight: 600;
    color: var(--cold-turkey);
    font-size: 0.9rem;
}

.press-outlet {
    min-width: 120px;
    font-weight: 700;
    color: var(--golden-grass);
}

.press-content {
    flex: 1;
}

.press-content h3 {
    font-size: 1.1rem;
    color: var(--bleached-cedar);
    margin-bottom: 0.5rem;
}

.press-type-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--alabaster);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bleached-cedar);
    margin-right: 0.5rem;
    text-transform: uppercase;
}

.press-embed {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.press-embed iframe {
    width: 100%;
    max-width: 640px;
    height: 360px;
    border: none;
}

@media (max-width: 768px) {
    .press-timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .press-date, .press-outlet {
        min-width: auto;
    }

    .press-embed iframe {
        height: 240px;
    }
}
