/* Base Styles & Variables */
:root {
    --primary-color: #4e7a9e;
    --primary-dark: #356487;
    --primary-light: #7aa3c1;
    --secondary-color: #e9937c;
    --secondary-dark: #d17a62;
    --secondary-light: #f3b8a7;
    --accent-color: #6b8e4e;
    --text-dark: #2c3e50;
    --text-medium: #546e7a;
    --text-light: #78909c;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
}

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

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
    font-display: swap;
}

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

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 2rem;
}

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 2rem;
}

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

button, .btn {
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    border: none;
    outline: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 1.6rem;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    font-size: 1.6rem;
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

.tertiary-btn:hover {
    background-color: var(--border-light);
    transform: translateY(-2px);
}

.small-btn {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

/* Header & Navigation */
header {
    background-color: var(--background-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.logo img {
    width: 4.8rem;
    height: 4.8rem;
    margin-right: 1rem;
    border-radius: 50%;
    object-fit: cover;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 1.5rem;
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.6rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.5rem;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.language-toggle {
    position: relative;
}

#language-btn {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
}

#language-btn svg {
    margin-left: 0.5rem;
}

#language-btn:hover {
    background-color: var(--background-light);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background-color: var(--background-white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.hero-content {
    flex: 1;
    max-width: 60rem;
}

.hero h1 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero p {
    font-size: 2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Featured Posts Section */
.featured-posts {
    padding: 8rem 0;
    background-color: var(--background-light);
}

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

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

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

.post-content {
    padding: 2.5rem;
}

.post-content h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.post-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 1rem;
}

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

/* Poll Section */
.poll-section {
    padding: 8rem 0;
    background-color: var(--background-white);
}

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

.poll-container {
    max-width: 80rem;
    margin: 0 auto;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
}

.poll-container h3 {
    margin-bottom: 3rem;
    text-align: center;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.poll-option {
    display: flex;
    align-items: center;
}

.poll-option input[type="radio"] {
    margin-right: 1.5rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}

.poll-option label {
    font-size: 1.8rem;
    cursor: pointer;
}

#artist-poll button {
    display: block;
    margin: 0 auto;
}

/* Poll Results */
#poll-results {
    max-width: 80rem;
    margin: 0 auto;
}

#poll-results h3 {
    margin-bottom: 3rem;
    text-align: center;
}

.result-bar {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.result-label {
    flex: 0 0 20%;
    font-weight: 600;
}

.result-progress {
    flex: 1;
    height: 2.4rem;
    background-color: var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 2rem;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 12px;
}

.result-percentage {
    flex: 0 0 5%;
    font-weight: 600;
    text-align: right;
}

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

.newsletter-content {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

#newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 60rem;
    margin: 0 auto;
}

#newsletter-form input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.6rem;
}

#newsletter-form button {
    background-color: white;
    color: var(--primary-color);
}

#newsletter-form button:hover {
    background-color: var(--background-light);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 6rem 0 3rem;
}

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

.footer-logo img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-contact svg {
    margin-right: 1rem;
}

.footer-social h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

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

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

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

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

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

.cookie-content {
    padding: 2rem;
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.cookie-content a {
    font-size: 1.4rem;
    text-decoration: underline;
}

/* Blog Page Styles */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 2rem;
    opacity: 0.9;
    max-width: 80rem;
    margin: 0 auto;
}

.blog-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.search-bar {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.search-bar input {
    border: none;
    padding: 1rem 1.5rem;
    min-width: 30rem;
}

.search-bar button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: var(--primary-dark);
}

.categories {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.categories span {
    font-weight: 600;
}

.categories ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 1.5rem;
}

.categories a {
    color: var(--text-medium);
    font-size: 1.5rem;
}

.categories a:hover,
.categories a.active {
    color: var(--primary-color);
}

.blog-posts {
    padding: 6rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.posts-grid .post-card {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .posts-grid .post-card {
        flex-direction: row;
        align-items: stretch;
    }
}

.post-image {
    flex: 0 0 35%;
    overflow: hidden;
}

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

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

.posts-grid .post-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.post-date, .post-category, .post-author {
    display: flex;
    align-items: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
}

.pagination-arrow {
    background-color: transparent;
    border: 1px solid var(--border-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-arrow:hover:not(.disabled) {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-numbers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-weight: 600;
    transition: var(--transition);
}

.page-numbers a.active {
    background-color: var(--primary-color);
    color: white;
}

.page-numbers a:not(.active):hover {
    background-color: var(--border-light);
}

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

.post-header {
    max-width: 80rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.post-header h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
}

.post-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

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

.post-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: var(--border-light);
    color: var(--text-medium);
    transition: var(--transition);
}

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

.post-featured-image {
    max-width: 100rem;
    margin: 0 auto 5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto 6rem;
}

@media (min-width: 992px) {
    .post-content-wrapper {
        grid-template-columns: 2fr 1fr;
    }
}

.post-content {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.lead-paragraph {
    font-size: 2.2rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

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

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

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

.post-content blockquote {
    padding: 2.5rem;
    background-color: var(--background-light);
    border-left: 5px solid var(--primary-color);
    margin: 3rem 0;
    font-style: italic;
}

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

.post-content blockquote cite {
    font-size: 1.6rem;
    font-style: normal;
    color: var(--text-medium);
}

.post-image-container {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image-container img {
    width: 100%;
    height: auto;
}

.image-caption {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-light);
    padding: 1.5rem;
    background-color: var(--background-light);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.post-sidebar {
    position: sticky;
    top: 10rem;
    align-self: start;
}

.author-box {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.author-image {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.author-box h3 {
    margin-bottom: 1rem;
}

.author-box p {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: white;
    color: var(--text-medium);
    transition: var(--transition);
}

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

.related-posts {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.related-posts h3 {
    margin-bottom: 2rem;
}

.related-post {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.related-post:last-child {
    margin-bottom: 0;
}

.related-post img {
    width: 8rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 4px;
}

.related-post h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.related-post span {
    font-size: 1.4rem;
    color: var(--text-light);
}

.tags {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
}

.tags h3 {
    margin-bottom: 2rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

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

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

.post-nav-previous, .post-nav-next {
    max-width: 30rem;
}

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

.post-navigation a {
    font-size: 1.8rem;
    font-weight: 600;
}

.post-nav-previous {
    text-align: left;
}

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

.comments-section {
    max-width: 80rem;
    margin: 0 auto;
}

.comments-section > h3 {
    margin-bottom: 4rem;
}

.comment {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.comment-avatar img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-header h4 {
    margin-bottom: 0;
}

.author-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 1.2rem;
}

.comment-header span:not(.author-tag) {
    color: var(--text-light);
    font-size: 1.4rem;
}

.reply-btn {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    margin-top: 1rem;
}

.reply-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.leave-comment {
    margin-top: 6rem;
}

.leave-comment h3 {
    margin-bottom: 3rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(78, 122, 158, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.form-checkbox input {
    margin-top: 0.3rem;
    width: auto;
}

.form-checkbox label {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 0;
}

/* About Page Styles */
.about-header {
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.about-story {
    padding: 8rem 0;
    background-color: var(--background-white);
}

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

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 3fr 2fr;
    }
}

.about-text h2 {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.8rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-mission {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.mission-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.mission-content h2 {
    margin-bottom: 5rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
}

.mission-value {
    text-align: center;
}

.value-icon {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.mission-value h3 {
    margin-bottom: 1.5rem;
}

.mission-value p {
    color: var(--text-medium);
}

.about-team {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.about-team h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
    color: var(--text-medium);
}

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

.team-member {
    text-align: center;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: var(--transition);
}

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

.team-member img {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
}

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

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-member p:last-of-type {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: white;
    color: var(--text-medium);
    transition: var(--transition);
}

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

.about-values {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.about-values h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

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

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

.value-card .value-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-light);
    margin-bottom: 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

.value-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.about-services {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.about-services h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    margin-bottom: 1.5rem;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.testimonials {
    padding: 8rem 0;
    background-color: var(--background-light);
}

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

.testimonial-slider {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
}

.testimonial-content {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 4rem;
    position: relative;
    box-shadow: var(--box-shadow);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
}

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

.testimonial-author span {
    color: var(--text-medium);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

.about-join {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.join-content {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
}

.join-content h2 {
    margin-bottom: 2rem;
}

.join-content p {
    font-size: 1.8rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

#join-form {
    display: flex;
    max-width: 60rem;
    margin: 0 auto 4rem;
    gap: 1rem;
}

#join-form input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.6rem;
}

.join-social p {
    margin-bottom: 2rem;
}

.join-social .social-icons {
    justify-content: center;
}

/* Contact Page Styles */
.contact-header {
    background-color: var(--primary-color);
    background-image: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.contact-content {
    padding: 8rem 0;
    background-color: var(--background-white);
}

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

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.contact-info > p {
    font-size: 1.8rem;
    color: var(--text-medium);
    margin-bottom: 4rem;
}

.info-items {
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-text h3 {
    margin-bottom: 0.5rem;
}

.info-text p, .info-text a {
    color: var(--text-medium);
}

.contact-social h3 {
    margin-bottom: 2rem;
}

.contact-social .social-icons {
    margin-bottom: 4rem;
}

.office-hours h3 {
    margin-bottom: 1.5rem;
}

.office-hours p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-form-container {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.full-width {
    grid-column: 1 / -1;
}

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

.map-section {
    padding: 8rem 0;
    background-color: var(--background-light);
}

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

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

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

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

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

.faq-item h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.faq-item p {
    color: var(--text-medium);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 4rem;
    max-width: 50rem;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.modal-icon {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.modal p {
    margin-bottom: 3rem;
    color: var(--text-medium);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 52%;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 2rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p, .social-icons {
        justify-content: center;
    }
    
    .posts-grid .post-card {
        flex-direction: column;
    }
    
    .post-header h1 {
        font-size: 3.6rem;
    }
    
    .post-content h2 {
        font-size: 2.8rem;
    }
    
    .post-content h3 {
        font-size: 2.2rem;
    }
    
    .values-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50%;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 3rem;
    }
    
    .post-nav-previous, .post-nav-next {
        text-align: center;
        max-width: 100%;
    }
    
    .comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-content {
        padding: 3rem 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
    }
    
    #join-form {
        flex-direction: column;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
