/* Base Styles and Variables */
:root {
    --primary-color: #4a6fa5;
    --secondary-color: #e94c89;
    --tertiary-color: #53bfa4;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e1e4e8;
    --heading-font: 'Playfair Display', Georgia, serif;
    --body-font: 'Open Sans', Arial, sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-max-width: 1200px;
    --container-padding: 0 20px;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Playfair+Display:wght@400;700&display=swap');

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

html {
    font-size: 62.5%; /* 10px if browser default is 16px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

button, .btn {
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: #3c5a84;
    color: white;
}

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

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

.btn-tertiary {
    background-color: #f8f9fa;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: #e9ecef;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 1rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background-color: var(--background-alt);
    padding: 8rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Page Header */
.page-header {
    background-color: var(--background-alt);
    padding: 6rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Posts Section */
.featured-posts {
    padding: 6rem 0;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

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

.post-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.post-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-card.featured .post-image {
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-image img:hover {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-content h3 a {
    color: var(--text-color);
}

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

.post-meta {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.post-meta span {
    color: var(--secondary-color);
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

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

.view-all {
    text-align: center;
    margin-top: 4rem;
}

/* Artist Spotlight Section */
.artist-spotlight {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.artist-spotlight h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.spotlight-text h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.artist-specialty {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.spotlight-text blockquote {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 2rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    color: var(--text-color);
}

.artist-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.artist-social a {
    color: var(--text-light);
}

.artist-social a:hover {
    color: var(--secondary-color);
}

/* For Beginners Preview Section */
.for-beginners-preview {
    padding: 6rem 0;
    text-align: center;
}

.for-beginners-preview h2 {
    margin-bottom: 2rem;
}

.for-beginners-preview p {
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
    color: white;
}

.newsletter-form button:hover {
    background-color: #d83b78;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
}

.social-icons a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.cookie-more-info {
    font-size: 1.4rem;
}

/* Blog Categories */
.blog-categories {
    margin-bottom: 4rem;
}

.category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-list li a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.category-list li a:hover,
.category-list li a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Blog Posts Section */
.blog-posts {
    padding: 4rem 0 6rem;
}

/* Single Blog Post */
.blog-post {
    padding: 4rem 0 6rem;
}

.post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.post-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-intro {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.post-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 1rem;
}

.post-tip,
.post-quote {
    margin: 3rem 0;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.post-tip {
    background-color: #f1f8e9;
    border-left: 4px solid var(--tertiary-color);
}

.post-tip h4 {
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.post-quote {
    background-color: var(--background-alt);
}

.post-quote blockquote {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.post-quote cite {
    font-style: normal;
    color: var(--text-light);
}

.post-tags {
    margin: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    font-size: 1.4rem;
    color: var(--text-light);
}

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

.post-author-bio {
    display: flex;
    gap: 2rem;
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
}

.post-author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.post-author-bio h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.post-author-bio h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

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

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

.related-posts {
    padding: 4rem 0;
    background-color: var(--background-alt);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

/* About Page */
.about-story {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.mission-values {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-section {
    padding: 6rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 1rem;
}

.team-member p:nth-of-type(1) {
    color: var(--secondary-color);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-light);
}

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

.testimonials {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.8rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Beginners Page */
.beginners-intro {
    padding: 4rem 0;
}

.beginners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.starter-guides {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.starter-guides h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.guide-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.guide-icon {
    color: var(--tertiary-color);
    margin-bottom: 2rem;
}

.beginner-faqs {
    padding: 6rem 0;
}

.beginner-faqs h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--background-alt);
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 500px;
}

.admin-preview {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.admin-preview h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.admin-preview p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.admin-iframe {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.admin-dashboard-preview {
    width: 100%;
    height: 500px;
    border: none;
}

.admin-dashboard-image {
    width: 100%;
    height: auto;
}

.beginner-testimonials {
    padding: 6rem 0;
}

.beginner-testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content h4 {
    font-style: normal;
    margin-bottom: 0;
    text-align: right;
}

.beginners-resources {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.beginners-resources h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.resource-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.resource-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 2rem;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1.6rem;
}

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

.contact-form .checkbox-group input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.map-section {
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-image {
    width: 100%;
    height: auto;
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.faq-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

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

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

.modal h2 {
    margin-bottom: 1.5rem;
}

.modal p {
    margin-bottom: 2rem;
}

.modal-btn {
    display: inline-block;
}

/* Interview Styling */
.interview-post .post-featured-image {
    height: 500px;
}

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

.interview-intro {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.interview-question {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.interview-question h3 {
    color: var(--primary-color);
}

.interview-answer p {
    margin-bottom: 1.5rem;
}

.interview-image {
    margin: 4rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-caption {
    font-size: 1.4rem;
    color: var(--text-light);
    text-align: center;
    padding: 1rem;
    background-color: var(--background-alt);
    margin-bottom: 0;
}

.interview-quote {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
}

.interview-quote blockquote {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: center;
}

.interview-conclusion {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .post-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .post-card.featured .post-image {
        height: 200px;
    }
    
    .spotlight-content,
    .about-content,
    .beginners-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-slider,
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 2rem;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-nav-prev,
    .post-nav-next {
        max-width: 100%;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-content h4 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .interview-post .post-featured-image {
        height: auto;
    }
}
