/* Base Styles and Variables */
:root {
  --primary-color: #e8b7c0;
  --primary-color-dark: #d29ba5;
  --secondary-color: #7c9484;
  --secondary-color-dark: #5e7268;
  --text-color: #333;
  --text-color-light: #666;
  --background-color: #fff;
  --background-color-alt: #f8f5f5;
  --border-color: #e0e0e0;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FF9800;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

/* Dark Theme Variables */
.dark-theme {
  --primary-color: #e8b7c0;
  --primary-color-dark: #d29ba5;
  --secondary-color: #8ca994;
  --secondary-color-dark: #6e877a;
  --text-color: #e0e0e0;
  --text-color-light: #b0b0b0;
  --background-color: #222;
  --background-color-alt: #2d2d2d;
  --border-color: #444;
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Typography and Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: var(--transition);
}

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

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

button {
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

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

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
  transform: translateY(-2px);
}

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

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

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

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

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: var(--background-color);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

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

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

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

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

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

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

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

/* Theme Toggle Button */
.theme-toggle {
  margin-left: 1.5rem;
}

#theme-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  font-size: 0.85rem;
  transition: var(--transition);
}

#theme-btn:hover {
  background-color: var(--secondary-color-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/7.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 20px;
  margin-bottom: 4rem;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Page Banner */
.page-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/8.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
  margin-bottom: 4rem;
}

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

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

.post-content {
  padding: 20px;
}

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

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

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
}

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

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

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

/* Blog Grid */
.blog-grid {
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 3rem;
}

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

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

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

.post-details {
  padding: 15px 20px 0;
  display: flex;
  justify-content: space-between;
  color: var(--text-color-light);
  font-size: 0.9rem;
}

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

.blog-post h2 {
  padding: 0 20px;
  margin-top: 10px;
  font-size: 1.6rem;
}

.blog-post p {
  padding: 0 20px;
  color: var(--text-color-light);
  flex-grow: 1;
}

.blog-post .btn {
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Blog Filter */
.blog-filter {
  margin-bottom: 3rem;
  padding: 0 5%;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#search-blog, #category-filter {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  transition: var(--transition);
}

#search-blog:focus, #category-filter:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.page-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Testimonials Section */
.testimonials {
  background-color: var(--background-color-alt);
  padding: 4rem 0;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 3rem;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 2rem;
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial p::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  left: -20px;
  top: -20px;
  color: var(--primary-color);
  opacity: 0.2;
}

.testimonial h4 {
  color: var(--primary-color);
  font-family: var(--font-main);
}

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

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

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

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

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-main);
}

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

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

/* Footer */
footer {
  background-color: var(--background-color-alt);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

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

.footer-links h3, .footer-legal h3, .footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-main);
  font-weight: 600;
}

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

.footer-links li, .footer-legal li {
  margin-bottom: 10px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

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

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

.social-icons svg {
  width: 20px;
  height: 20px;
}

.copyright {
  text-align: center;
  padding-top: 3rem;
  color: var(--text-color-light);
  font-size: 0.9rem;
}

/* About Page Styles */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 5%;
  margin-bottom: 4rem;
}

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

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

.values {
  padding: 4rem 5%;
  background-color: var(--background-color-alt);
  text-align: center;
}

.values h2 {
  margin-bottom: 3rem;
}

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

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

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

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

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

.team-section {
  padding: 4rem 5%;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 3rem;
}

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

.team-member {
  margin-bottom: 2rem;
}

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

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

.team-member p {
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.team-member .social-icons {
  justify-content: center;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 5%;
  margin-bottom: 4rem;
}

.contact-info {
  padding-right: 2rem;
}

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

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

.info-icon {
  color: var(--primary-color);
  margin-right: 1.5rem;
  margin-top: 0.2rem;
}

.info-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-main);
  font-weight: 600;
}

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

.social-connect h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-family: var(--font-main);
  font-weight: 600;
}

.contact-form-container {
  background-color: var(--background-color-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
}

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

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

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--text-color);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.map-section {
  padding: 0 5% 4rem;
  text-align: center;
}

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

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

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

.map-note {
  margin-top: 1rem;
  color: var(--text-color-light);
  font-style: italic;
}

.faq-section {
  padding: 4rem 5%;
  background-color: var(--background-color-alt);
}

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

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

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Blog Post Full Page */
.blog-post-full {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 4rem;
}

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

.post-header .post-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.post-author {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.post-featured-image {
  margin-bottom: 2rem;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

.post-intro {
  font-size: 1.2rem;
  color: var(--text-color-light);
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin-bottom: 2rem;
}

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

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

.image-caption {
  text-align: center;
  color: var(--text-color-light);
  font-style: italic;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.post-content h2, .post-content h3 {
  margin-top: 2.5rem;
}

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

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 3rem;
}

.tag {
  background-color: var(--background-color-alt);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-color-light);
  transition: var(--transition);
}

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

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

.post-author-bio .author-img {
  width: 100px;
  height: 100px;
  margin-right: 1.5rem;
}

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

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

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

.share-post h3 {
  margin-bottom: 1.5rem;
}

.social-share {
  display: flex;
  justify-content: center;
  gap: 15px;
}

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

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

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

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

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

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

.related-post p {
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-bottom: 0;
}

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

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

.comment-form {
  background-color: var(--background-color-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
}

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

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

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

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--text-color);
  transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.comments-list .comment {
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.comment-avatar {
  margin-right: 1.5rem;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

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

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

.comment-date {
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.reply-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 0.5rem;
}

.reply {
  margin-top: 1.5rem;
  margin-left: 2rem;
  display: flex;
}

.reply-avatar {
  margin-right: 1rem;
}

.reply-avatar .avatar-placeholder {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

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

.reply-header h5 {
  margin-bottom: 0;
  font-size: 1rem;
}

.reply-date {
  color: var(--text-color-light);
  font-size: 0.8rem;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

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

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

/* 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: 1001;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--background-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
}

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

/* Thank You Modal */
.thank-you-message {
  text-align: center;
}

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

/* Complaint Button */
.complaint-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: var(--font-main);
  transition: var(--transition);
  z-index: 99;
}

.complaint-btn:hover {
  background-color: var(--secondary-color-dark);
  transform: translateY(-3px);
}

/* Vendor List */
.vendor-list {
  background-color: var(--background-color-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.vendor-list h2 {
  margin-bottom: 1.5rem;
}

.vendor-list ul {
  list-style: none;
  margin: 0;
  column-count: 2;
}

.vendor-list li {
  margin-bottom: 1rem;
}

/* Couple Story */
.couple-story {
  background-color: var(--background-color-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

/* Timeline Lists */
.timeline-list, .general-list {
  margin-left: 0;
  list-style: none;
}

.timeline-list li, .general-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-list li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.general-list li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .page-banner h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .vendor-list ul {
    column-count: 1;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 5%;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  .nav-links {
    margin-bottom: 1rem;
  }
  
  .nav-links li {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .page-banner h1 {
    font-size: 2.3rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .post-author-bio .author-img {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 100px 20px;
  }
  
  .page-banner {
    padding: 80px 20px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .filter-container {
    flex-direction: column;
  }
  
  .comments-list .comment {
    flex-direction: column;
  }
  
  .comment-avatar {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .reply {
    margin-left: 0;
  }
}

/* Helper Classes */
.rounded-image {
  border-radius: var(--border-radius);
}

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

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
