/* 
 * Bay Cap Run - Artist Blog
 * Main stylesheet
 */

/* ===== RESET & BASE STYLES ===== */
:root {
    --primary-color: #5e35b1;
    --primary-dark: #4527a0;
    --primary-light: #9575cd;
    --secondary-color: #ff9800;
    --secondary-dark: #ef6c00;
    --secondary-light: #ffcc80;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --background-dark: #303030;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition-standard: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-standard);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn.secondary {
    background-color: var(--secondary-color);
}

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

.btn.outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-standard);
}

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

.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-medium);
    transition: var(--transition-standard);
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--background-white);
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--background-white);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    flex: 1;
}

.featured-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== FEATURED POSTS ===== */
.featured-posts {
    padding: 80px 5%;
    text-align: center;
}

.featured-posts h2 {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.featured-posts h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-standard);
}

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

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

.post-card h3 {
    font-size: 1.25rem;
    padding: 20px 20px 10px;
}

.post-card p {
    padding: 0 20px;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition-standard);
}

.read-more:hover::after {
    margin-left: 10px;
}

.view-all {
    margin-top: 30px;
}

/* ===== SUBSCRIPTION SECTION ===== */
.subscription {
    background-color: var(--primary-dark);
    color: var(--background-white);
    padding: 80px 5%;
    text-align: center;
}

.subscription-content {
    max-width: 700px;
    margin: 0 auto;
}

.subscription h2 {
    color: var(--background-white);
    margin-bottom: 1.5rem;
}

.subscription p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.subscription-counter {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.counter-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 10px;
}

.subscription-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-primary);
}

.subscription-form button {
    border-radius: 0 4px 4px 0;
}

/* ===== ART PROCESS SECTION ===== */
.art-process {
    padding: 80px 5%;
    background-color: var(--background-white);
}

.art-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition-standard);
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.process-list {
    text-align: left;
    list-style-type: none;
    padding-left: 0;
}

.process-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.process-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ===== BLOG PAGE STYLES ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--background-white);
    padding: 60px 5% 30px;
    text-align: center;
}

.page-header h1 {
    color: var(--background-white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
    color: var(--background-white);
}

.blog-intro {
    text-align: center;
    padding: 60px 5% 30px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-posts {
    padding: 30px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-card {
    display: flex;
    margin-bottom: 50px;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image {
    flex: 1;
    min-width: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 2;
    padding: 30px;
}

.post-meta {
    display: flex;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-date, .post-category {
    margin-right: 15px;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-content h2 {
    margin-bottom: 15px;
}

.post-content h2 a {
    color: var(--text-dark);
    transition: var(--transition-standard);
}

.post-content h2 a:hover {
    color: var(--primary-color);
}

.post-highlights {
    margin: 20px 0;
    padding-left: 25px;
}

.post-highlights li {
    margin-bottom: 8px;
    position: relative;
}

.post-highlights li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    font-weight: 700;
}

.blog-subscription {
    margin-top: 60px;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-artist {
    display: flex;
    padding: 80px 5%;
    background-color: var(--background-white);
}

.artist-image {
    flex: 1;
    padding-right: 50px;
}

.portrait-image {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.artist-bio {
    flex: 2;
}

.artist-bio h2 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.artist-bio h3 {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 20px;
}

.artist-details {
    display: flex;
    margin: 30px 0;
    gap: 30px;
}

.detail {
    flex: 1;
}

.detail h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.detail h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.artist-quote {
    background-color: var(--background-light);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.artist-quote blockquote {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 1.2rem;
}

.artistic-journey {
    padding: 80px 5%;
    background-color: var(--background-light);
}

.artistic-journey h2 {
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--background-white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    top: 15px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-year {
    position: absolute;
    top: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -70px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--background-white);
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 5%;
    background-color: var(--background-white);
    text-align: center;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-standard);
}

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

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

.team-card h3 {
    margin: 15px 0 5px;
    color: var(--primary-color);
}

.team-card p {
    padding: 0 15px;
    margin-bottom: 15px;
}

.team-card p:nth-of-type(1) {
    font-weight: 600;
    color: var(--text-medium);
}

.exhibition-history {
    padding: 80px 5%;
    background-color: var(--background-light);
}

.exhibition-history h2 {
    text-align: center;
    margin-bottom: 50px;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.exhibition-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.exhibition-item h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.exhibition-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-intro {
    text-align: center;
    padding: 60px 5% 30px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-filter {
    padding: 0 5% 30px;
    text-align: center;
}

.gallery-filter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 15px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-standard);
}

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

.gallery-grid {
    padding: 30px 5% 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    margin-bottom: 20px;
}

.artwork {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.artwork img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-standard);
}

.artwork:hover img {
    transform: scale(1.05);
}

.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(94, 53, 177, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-standard);
    padding: 20px;
    text-align: center;
}

.artwork-overlay h3 {
    color: var(--background-white);
    margin-bottom: 10px;
}

.artwork-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.artwork-year {
    font-style: italic;
    font-size: 0.9rem;
}

.collection-info {
    padding: 60px 5%;
    background-color: var(--background-light);
}

.collection-info h2 {
    text-align: center;
    margin-bottom: 40px;
}

.collection-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-text {
    flex: 2;
}

.collection-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.collection-list {
    margin-bottom: 30px;
}

.collection-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item {
    background-color: var(--background-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition-standard);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-container {
    display: flex;
    padding: 60px 5%;
    background-color: var(--background-white);
    gap: 50px;
}

.contact-info {
    flex: 1;
    padding-right: 30px;
}

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

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    background-color: var(--primary-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--background-white);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

address {
    font-style: normal;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    margin-bottom: 5px;
}

.hours-list span {
    font-weight: 600;
    margin-right: 5px;
}

.social-connect {
    margin-top: 40px;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--background-light);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition-standard);
}

.contact-social a:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: var(--transition-standard);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(94, 53, 177, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.studio-map {
    padding: 60px 5% 80px;
    background-color: var(--background-light);
    text-align: center;
}

.map-container {
    margin: 40px 0;
}

.map-placeholder {
    background-color: var(--background-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder p {
    margin-bottom: 20px;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.visit-info {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 500px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

/* ===== BLOG POST STYLES ===== */
.blog-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5% 80px;
}

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.8rem;
    margin: 20px 0;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.post-info {
    display: flex;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.post-date, .post-category, .post-author {
    margin-right: 15px;
}

.post-author {
    font-style: italic;
}

.post-share {
    display: flex;
    align-items: center;
}

.post-share span {
    margin-right: 10px;
    color: var(--text-light);
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 5px;
    background-color: var(--background-light);
    border-radius: 50%;
    color: var(--text-medium);
    transition: var(--transition-standard);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.post-callout {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.post-callout h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-callout p {
    margin-bottom: 0;
}

.post-image {
    margin: 30px 0;
}

.post-image figcaption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

.post-cta {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0 20px;
    color: var(--background-white);
}

.post-cta h3 {
    color: var(--background-white);
    margin-bottom: 15px;
}

.post-cta p {
    margin-bottom: 0;
}

.post-cta a {
    color: var(--background-white);
    text-decoration: underline;
    font-weight: 600;
}

.post-cta a:hover {
    color: var(--secondary-light);
}

.post-footer {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.post-tags {
    margin-bottom: 30px;
}

.post-tags span {
    font-weight: 600;
    color: var(--text-medium);
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    background-color: var(--background-light);
    padding: 5px 10px;
    border-radius: 4px;
    margin: 5px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.post-tags a:hover {
    background-color: var(--primary-light);
    color: var(--background-white);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.post-nav-previous, .post-nav-next {
    max-width: 45%;
}

.post-nav-next {
    text-align: right;
}

.post-navigation span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.post-navigation a {
    font-weight: 600;
    color: var(--text-medium);
}

.post-navigation a:hover {
    color: var(--primary-color);
}

.related-posts {
    padding: 60px 5%;
    background-color: var(--background-light);
    text-align: center;
}

.related-posts h2 {
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.related-post-card {
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-standard);
}

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

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-card h3 {
    font-size: 1.1rem;
    padding: 15px 15px 5px;
    line-height: 1.4;
}

.related-post-card h3 a {
    color: var(--text-dark);
}

.related-post-card h3 a:hover {
    color: var(--primary-color);
}

.related-post-date {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 15px 15px;
    margin: 0;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--background-dark);
    color: var(--background-light);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: var(--background-white);
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-section {
    min-width: 160px;
}

.footer-section h4 {
    color: var(--background-white);
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-standard);
}

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

.footer-section address p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--background-white);
    transition: var(--transition-standard);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
}

.cookie-more-info {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero, .about-artist, .contact-container, .collection-content {
        flex-direction: column;
    }
    
    .hero-content, .artist-image, .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 20px;
        right: auto;
    }
    
    .timeline-year {
        left: 0 !important;
        right: auto !important;
    }
    
    .blog-post-card {
        flex-direction: column;
    }
    
    .post-image {
        min-width: 100%;
    }
    
    .artist-details {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--background-white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition-standard);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .post-meta, .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-share, .post-nav-next {
        text-align: left;
    }
    
    .post-nav-previous, .post-nav-next {
        max-width: 100%;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .subscription-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .subscription-form button {
        border-radius: 4px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo-container h1 {
        font-size: 1.2rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .post-header h1 {
        font-size: 2.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
