/* Base Styles */
:root {
  --primary-color: #d93a64;
  --secondary-color: #6c4675;
  --accent-color: #ff9a6c;
  --light-color: #f9f5f8;
  --dark-color: #2d2b38;
  --text-color: #333333;
  --text-light: #666666;
  --background-color: #ffffff;
  --border-color: #e8e8e8;
  --success-color: #4caf50;
  --error-color: #f44336;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-size-base: 16px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --transition-speed: 0.3s;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

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

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

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

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

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

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

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

li {
  margin-bottom: 0.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
  text-align: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(-1px);
}

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

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

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

/* Header & Navigation */
header {
  background-color: var(--background-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  padding: 1rem 0;
}

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

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

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

nav li {
  margin: 0 0 0 2rem;
}

nav a {
  display: block;
  padding: 1.5rem 0;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

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

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

nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1.2rem;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

/* Welcome Message */
.welcome-message {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 0;
  text-align: center;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.hero-image {
  flex: 1;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-speed) ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

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

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

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

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

.post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

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

.read-more {
  font-weight: 500;
  position: relative;
  padding-right: 1.5rem;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right var(--transition-speed) ease;
}

.read-more:hover::after {
  right: -5px;
}

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-color);
}

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

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial {
  flex: 0 0 calc(33.333% - 1.33rem);
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 300px;
}

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

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

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  text-align: center;
}

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

.newsletter p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 1.5rem;
  border-radius: 0;
}

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

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

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

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

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

.copyright p {
  margin-bottom: 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(45, 43, 56, 0.95);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.btn-cookie {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

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

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

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

.btn-cookie.customize:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.btn-cookie.decline:hover {
  color: white;
}

.cookie-more {
  color: var(--accent-color);
  text-decoration: underline;
  margin-left: 1rem;
}

.cookie-more:hover {
  color: white;
}

/* Blog Page Styles */
.page-header {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--light-color);
}

.header-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.header-content {
  text-align: center;
  padding: 2rem 0;
}

.header-content h1 {
  margin-bottom: 1rem;
}

.header-content p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

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

.blog-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

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

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

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

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

.post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin-bottom: 2rem;
}

.post-meta h1 {
  margin-bottom: 1rem;
}

.post-info {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 1rem;
}

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

.post-content h2, 
.post-content h3, 
.post-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

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

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

.content-image {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 3rem 0;
}

.tag {
  background-color: var(--light-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

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

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

.related-posts {
  margin: 4rem 0;
}

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

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

.related-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

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

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

.related-card a {
  display: block;
  padding: 0 1rem 1rem;
  font-weight: 500;
}

/* About Page Styles */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

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

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

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

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

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

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

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

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

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

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-speed) ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

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

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

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

.member-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

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

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

.member-social svg {
  fill: var(--dark-color);
}

.member-social a:hover svg {
  fill: white;
}

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

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

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

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

/* Contact Page Styles */
.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 3rem 0;
}

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

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

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

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

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

.info-text a {
  color: var(--text-color);
  transition: color var(--transition-speed) ease;
}

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

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition-speed) ease;
}

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

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

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

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

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

.map-container {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

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

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.map-overlay p {
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .testimonial {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav li {
    margin: 0 1rem;
  }
  
  .testimonial {
    flex: 0 0 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  nav li {
    margin: 0 0.5rem;
  }
  
  .post-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}
