/* 
* Sweet Delights - Turkish Pastry Shop
* Main Stylesheet
*/

/* Base styles and variables */
:root {
  /* Main color palette */
  --primary-color: #e24e42;         /* Turkish red */
  --secondary-color: #008080;       /* Teal */
  --accent-color: #d4af37;          /* Gold */
  --background-color: #fff;
  --text-color: #333;
  --light-text: #767676;
  --light-bg: #f9f5f0;              /* Cream background */
  --dark-bg: #19222d;
  --dark-text: #e8e8e8;
  
  /* UI elements */
  --border-radius: 8px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  
  /* Typography */
  --heading-font: 'Playfair Display', Georgia, serif;
  --body-font: 'Open Sans', Arial, sans-serif;
}

/* Dark mode variables */
.dark-mode {
  --background-color: #19222d;
  --text-color: #e8e8e8;
  --light-text: #aaa;
  --light-bg: #273040;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  transition: background-color 0.5s ease, color 0.5s ease;
}

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

/* Container and layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 4rem 2rem;
}

/* Theme toggle */
.theme-toggle-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

#theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  background-color: var(--light-bg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

#theme-toggle:hover {
  transform: scale(1.1);
}

.dark-mode #theme-toggle {
  color: var(--dark-text);
  background-color: var(--dark-bg);
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

.dark-mode .sun-icon {
  display: block;
}

.dark-mode .moon-icon {
  display: none;
}

/* Header styles */
header {
  background-color: var(--background-color);
  padding: 1.5rem 0;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.tagline {
  font-family: var(--heading-font);
  font-style: italic;
  color: var(--light-text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.datetime {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 1rem;
}

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

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-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(--primary-color);
}

/* Button styles */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--body-font);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #c43d32;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
  background-color: #006666;
}

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

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hero section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

/* Featured products section */
.featured-products {
  margin-bottom: 3rem;
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.featured-products h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

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

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

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

.product-card h3 {
  padding: 1rem 1rem 0;
  font-size: 1.3rem;
}

.product-card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: var(--light-text);
}

/* Latest posts section */
.latest-posts {
  margin-bottom: 3rem;
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.latest-posts h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

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

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

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

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

.post-preview h3 {
  padding: 1rem 1rem 0;
  font-size: 1.3rem;
}

.post-preview p {
  padding: 0 1rem;
  font-size: 0.95rem;
  color: var(--light-text);
}

.read-more {
  display: inline-block;
  padding: 0 1rem 1rem;
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

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

.latest-posts .btn {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

/* Testimonials section */
.testimonials {
  background-color: var(--light-bg);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.testimonials h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

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

.testimonial:before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--primary-color);
  opacity: 0.2;
}

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

.testimonial-author {
  font-weight: 600;
  text-align: right;
  color: var(--primary-color);
}

/* Footer styles */
footer {
  background-color: var(--dark-bg);
  color: var(--dark-text);
  padding: 3rem 2rem 1.5rem;
}

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

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

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

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a,
.footer-legal ul li a {
  color: var(--dark-text);
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: var(--primary-color);
}

.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: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

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

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

/* Cookie notice */
.cookie-notice {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  transition: bottom 0.5s ease-in-out;
}

.cookie-notice.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  flex: 1;
  margin-bottom: 1rem;
  margin-right: 1rem;
  min-width: 250px;
}

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

.cookie-content a {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Page header */
.page-header {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--light-bg);
  margin-bottom: 3rem;
}

.page-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-text);
}

/* About page */
.about-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

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

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

.value-card h4 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 0;
}

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

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

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

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

.team-card h3 {
  padding: 1rem 1rem 0.25rem;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.team-card p {
  padding: 0 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

.team-social {
  display: flex;
  padding: 0 1rem 1rem;
  gap: 0.75rem;
}

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

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

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

.certification-card {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
}

.certification-icon {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.certification-card h4 {
  margin-bottom: 0.5rem;
}

.certification-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 0;
}

/* Blog page */
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-post {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

.post-content {
  flex: 2;
  min-width: 300px;
  padding: 2rem;
}

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

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

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

.blog-post h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.newsletter {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

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

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

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

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

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
}

.newsletter-form .btn {
  background-color: var(--dark-bg);
}

.newsletter-form .btn:hover {
  background-color: var(--accent-color);
}

/* Blog post single */
.blog-post-single {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.post-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.tag {
  background-color: var(--light-bg);
  color: var(--text-color);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

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

.prev-post a,
.next-post a {
  font-weight: 600;
}

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

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

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

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

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

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

.related-post h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.related-post .read-more {
  padding: 0 1rem 1rem;
}

/* Gallery page */
.gallery-filters {
  margin-bottom: 2rem;
  text-align: center;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  background-color: var(--light-bg);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--body-font);
  transition: var(--transition);
}

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

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

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

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

.gallery-info {
  text-align: center;
  padding: 1.5rem;
  color: white;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.gallery-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.photo-shoot {
  background-color: var(--light-bg);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

.photo-shoot h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.photo-shoot p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.photo-shoot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.photo-item {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.photo-item p {
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0;
}

.special-events {
  text-align: center;
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.event-item {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.event-item h4 {
  padding: 1rem 1rem 0.5rem;
}

.event-item p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: var(--light-text);
}

/* Contact page */
.contact-section {
  margin-bottom: 3rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-icon {
  margin-right: 1rem;
  color: var(--primary-color);
  display: flex;
  align-items: flex-start;
}

.info-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.social-contact {
  margin-top: 2rem;
}

.social-contact h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  transition: var(--transition);
}

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

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

.form-checkbox input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-weight: normal;
  font-size: 0.9rem;
}

.btn-submit {
  width: 100%;
}

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

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

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-placeholder p {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 0;
}

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

.faq-section h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition);
}

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

.faq-answer p {
  margin-bottom: 0;
}

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

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

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.close-modal:hover {
  color: var(--primary-color);
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: #4CAF50;
  margin-bottom: 1rem;
}

.thank-you-message h3 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 1.5rem;
}

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

/* Media queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 2rem 1.5rem;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 1rem;
  }
  
  .logo {
    width: 60px;
    height: 60px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
}
