/* Base Styles */
:root {
    --primary-color: #4a6fa5;
    --primary-dark: #344e7a;
    --primary-light: #7596c5;
    --secondary-color: #df7861;
    --secondary-dark: #c25a43;
    --secondary-light: #f4a899;
    --neutral-dark: #333333;
    --neutral-medium: #666666;
    --neutral-light: #f5f5f5;
    --text-color: #333333;
    --background-color: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    --font-mono: 'Courier New', Courier, monospace;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul {
    list-style: none;
}

button, .btn {
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

button:hover, .btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

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

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

input, textarea, select {
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: 100%;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--neutral-dark);
    position: relative;
}

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

.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;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-dark);
    margin: 5px;
    transition: var(--transition);
}

/* Main Content */
main {
    padding-top: var(--header-height);
    min-height: calc(100vh - 300px); /* Ensure footer stays at bottom */
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Featured Posts Section */
.featured-posts {
    padding: 5rem 2rem;
}

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

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

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

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

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

.post-content {
    padding: 1.5rem;
}

.post-date {
    color: var(--neutral-medium);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-excerpt {
    margin-bottom: 1rem;
}

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

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

.view-all {
    text-align: center;
}

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

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.newsletter input {
    flex: 1;
    margin-right: 0.5rem;
    border: none;
}

.subscriber-count {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

#subscriber-number {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Blog Page Styles */
.blog-header {
    padding: 5rem 2rem;
    background-color: var(--neutral-light);
    text-align: center;
}

.blog-filters {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.search-container {
    display: flex;
    max-width: 300px;
}

.search-container button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0.75rem;
}

.search-container input {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
}

.category-filter select {
    min-width: 200px;
}

.blog-grid {
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
    display: flex;
    flex-direction: column;
}

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

.blog-img-container {
    position: relative;
}

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

.blog-category {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--neutral-medium);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
}

.read-more-btn {
    margin-top: auto;
    align-self: flex-start;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

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

.blog-newsletter {
    margin-top: 3rem;
}

/* Blog Post Styles */
.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

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

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.blog-post-content {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--neutral-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.image-container {
    margin: 2rem 0;
}

.image-container img {
    width: 100%;
    border-radius: var(--border-radius);
}

.image-container figcaption {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.post-tags svg {
    color: var(--primary-color);
}

.post-tags a {
    background-color: var(--neutral-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

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

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.social-share {
    display: flex;
    gap: 0.8rem;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    color: var(--neutral-medium);
}

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

.related-posts {
    margin-bottom: 3rem;
}

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

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

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

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

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

.related-post h3 {
    font-size: 1.1rem;
    margin: 1rem 1rem 0.5rem;
}

.related-post p {
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

.related-post .read-more {
    margin: 0 1rem 1rem;
    display: inline-block;
    font-size: 0.9rem;
}

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

.comments-section h2 {
    margin-bottom: 2rem;
}

.comments-container {
    margin-bottom: 2.5rem;
}

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

.comment-reply {
    margin-left: 3rem;
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

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

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

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

.comment-header span {
    font-size: 0.9rem;
    color: var(--neutral-medium);
}

.reply-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.reply-btn:hover {
    background-color: var(--neutral-light);
    color: var(--primary-dark);
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

/* Gallery Page Styles */
.gallery-header {
    padding: 5rem 2rem;
    background-color: var(--neutral-light);
    text-align: center;
}

.gallery-filters {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.gallery-item {
    margin-bottom: 1.5rem;
}

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

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

.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.artwork-container:hover .artwork-overlay {
    opacity: 1;
}

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

.artwork-info {
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.artwork-info h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.artwork-info .artist, .artwork-info .medium {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.view-details {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.view-details:hover {
    background-color: white;
    color: var(--neutral-dark);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0 4rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    font-weight: 500;
}

.page-link.active, .page-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.page-separator {
    margin: 0 0.5rem;
}

.next-page {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    font-weight: 500;
    transition: var(--transition);
}

.next-page:hover {
    background-color: var(--primary-color);
    color: white;
}

/* About Page Styles */
.about-header {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about-header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.about-header-content {
    max-width: 800px;
    padding: 0 1.5rem;
}

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

.about-story {
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.mission-values {
    padding: 5rem 2rem;
    background-color: var(--neutral-light);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

.team-section {
    padding: 5rem 2rem;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

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

.team-member p {
    margin: 0 1.5rem 1.5rem;
}

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

.member-social {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    color: var(--neutral-medium);
}

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

.achievements-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: white;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.achievement-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonials-section {
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    padding: 1.5rem;
}

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

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-left: 1.5rem;
}

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

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--neutral-medium);
    font-size: 0.9rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    cursor: pointer;
}

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

.cta-section {
    padding: 5rem 2rem;
    background-color: var(--neutral-light);
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Contact Page Styles */
.contact-header {
    padding: 5rem 2rem;
    background-color: var(--neutral-light);
    text-align: center;
}

.contact-section {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-info > p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.checkbox-group label {
    flex: 1;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.map-section {
    padding: 3rem 2rem 5rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--neutral-light);
}

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

.faq-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background-color: var(--neutral-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-links h3, .footer-legal h3, .footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--neutral-dark);
    color: white;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
}

.cookie-btn.accept {
    background-color: var(--success-color);
}

.cookie-btn.customize {
    background-color: transparent;
    border: 1px solid white;
}

.cookie-btn.decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-policy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    color: white;
}

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

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.artwork-modal-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.artwork-modal-info h2 {
    margin-bottom: 1rem;
}

.artwork-modal-info .artist, .artwork-modal-info .medium, .artwork-modal-info .dimensions, .artwork-modal-info .year {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.artwork-modal-info .description {
    margin: 1.5rem 0;
}

.artwork-modal-info .description h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.artwork-modal-info .price {
    margin-top: 2rem;
}

.artwork-modal-info .price p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.thank-you-container {
    text-align: center;
    padding: 3rem 2rem;
}

.thank-you-icon {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-container h2 {
    margin-bottom: 1rem;
}

.thank-you-container p {
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        height: calc(100vh - var(--header-height));
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        align-items: flex-start;
        background-color: white;
        padding: 2rem;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 900;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .line2 {
        opacity: 0;
    }
    
    .hamburger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .post-grid, .blog-grid, .gallery-grid, .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .post-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .blog-filters, .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-container {
        max-width: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .featured-posts, .about-story, .mission-values, .team-section, .contact-section, .faq-section {
        padding: 3rem 1.5rem;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .cookie-content {
        padding: 1.5rem 1rem;
    }
}
