/* Base Styles */
:root {
  --primary-color: #6200ea;
  --primary-light: #9d46ff;
  --primary-dark: #0a00b6;
  --secondary-color: #ff4081;
  --secondary-light: #ff79b0;
  --secondary-dark: #c60055;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-medium: #757575;
  --background-light: #f8f9fa;
  --background-dark: #121212;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
  transition: var(--transition);
}

h3:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.post-main{
      padding: 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 4rem 0;
}

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

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

/* Header */
header {
  background-color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

nav ul {
  display: flex;
  gap: 2rem;
}

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

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

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

nav a:hover::after {
  width: 100%;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/7.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
  padding: 8rem 2rem;
}

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

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

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

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

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

.post-content {
  padding: 1.5rem;
}

.post-excerpt {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-block;
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: margin 0.3s ease;
}

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

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

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

.newsletter h2 {
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  min-width: 200px;
}

/* Blog Page */
.blog-main {
  padding: 2rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-posts {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post {
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background-color: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.blog-post .post-content {
  flex: 1;
  padding: 2rem;
}

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

/* About Page */
.about-main {
  padding: 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-story {
  display: flex;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

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

.team-section {
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.team-member {
  text-align: center;
  background-color: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

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

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

.team-member p {
  color: var(--text-medium);
  padding: 0 1rem 1.5rem;
  margin-bottom: 0;
}

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

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

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

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

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

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

/* Contact Page */
.contact-main {
  padding: 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background-color: var(--text-light);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.contact-social a {
  color: var(--primary-dark);
  font-size: 1.5rem;
  transition: var(--transition);
}

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

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--text-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

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

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
}

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

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

.map-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

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

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

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: var(--text-light);
  margin: 15% auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  max-width: 500px;
  text-align: center;
  animation: modalFade 0.3s;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  color: var(--text-medium);
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

.modal-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.btn-modal-close {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 2rem;
  margin-top: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

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

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

.footer-logo h3 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.footer-links {
  min-width: 150px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-light);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-light);
}

.footer-contact {
  min-width: 200px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

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

.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: var(--text-light);
  transition: var(--transition);
}

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

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

/* Cookie Notice */
.cookie-notice {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.95);
  color: var(--text-light);
  padding: 1rem;
  z-index: 1500;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.btn-cookie {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

#accept-cookies {
  background-color: var(--success-color);
  color: var(--text-light);
}

#customize-cookies {
  background-color: var(--warning-color);
  color: var(--text-dark);
}

#decline-cookies {
  background-color: var(--error-color);
  color: var(--text-light);
}

.btn-cookie:hover {
  opacity: 0.9;
}

.cookie-content a {
  color: var(--secondary-light);
  text-decoration: underline;
}

.cookie-content a:hover {
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .hero {
    padding: 4rem 1rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .featured-posts,
  .blog-main,
  .about-main,
  .contact-main {
    padding: 2rem 1rem;
  }
  
  .about-story {
    flex-direction: column;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .blog-post .post-image {
    width: 100%;
    height: 200px;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .footer-content {
    justify-content: center;
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

/* Social Icons SVG Fill Fix */
.social-icons svg {
  fill: currentColor;
}
