/* Reset and Base Styles */
:root {
  --primary-pink: #FF69B4;
  --primary-green: #4CAF50;
  --dark-gray: #333333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Header and Navigation */
.header {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 60px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s;
}

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

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

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

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

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Sections */
.section {
  padding: 5rem 2rem;
}

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

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

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

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

.card-content {
  padding: 1.5rem;
}

/* Testimonials */
.testimonials {
  background: var(--light-gray);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 1rem;
}

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

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

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

.footer-content h3 {
  margin-bottom: 1rem;
}

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

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.newsletter-form input {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: none;
  flex-grow: 1;
}

/* Hamburger Menu - Updated to fix click issues */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 1010; /* Ensure it's above other elements */
  position: relative;
  width: 50px; /* Fixed width */
  height: 40px; /* Fixed height */
  text-align: center;
  line-height: 1;
  margin-left: auto; /* Ensure proper alignment */
}

.hamburger-menu i {
  pointer-events: none; /* This prevents the icon from capturing clicks */
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 30px; /* Center the icon vertically */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Blog */
.blog-post {
  margin-bottom: 2rem;
}

.blog-post img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Enhanced Blog Styles */
.blog-full-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

.blog-full-post h1 {
    color: var(--primary-pink);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.blog-full-post h2 {
    color: var(--primary-pink);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.blog-full-post h3 {
    color: var(--primary-green);
    margin: 25px 0 12px;
    font-size: 1.5rem;
}

.blog-full-post p {
    margin-bottom: 20px;
}

.blog-full-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-full-post ul, 
.blog-full-post ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.blog-full-post li {
    margin-bottom: 8px;
}

.meta-info {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-info i {
    color: var(--primary-pink);
    margin-right: 5px;
}

/* Responsive design for blog posts */
@media (max-width: 768px) {
    .blog-full-post {
        padding: 15px;
    }
    
    .blog-full-post h1 {
        font-size: 1.8rem;
    }
    
    .blog-full-post h2 {
        font-size: 1.5rem;
    }
    
    .blog-full-post h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog-full-post h1 {
        font-size: 1.6rem;
    }
}

/* Events */
.event-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}