/* Base Styles */
:root {
    --primary-color: #8B4513; /* Saddle Brown - earthy tone */
    --primary-dark: #5E2F0D;
    --primary-light: #A0522D;
    --secondary-color: #D2B48C; /* Tan - complementary earthy tone */
    --accent-color: #CD853F; /* Peru - warm accent */
    --light-color: #F5F5DC; /* Beige - light background */
    --dark-color: #2F1D0D; /* Dark brown - text color */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F8F8;
    --gray-200: #E0E0E0;
    --gray-300: #D0D0D0;
    --gray-400: #A0A0A0;
    --gray-500: #808080;
    --gray-600: #606060;
    --gray-700: #404040;
    --gray-800: #202020;
    --gray-900: #101010;
    --border-radius: 0.25rem;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Typography */
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
  }
  
  h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
  }
  
  h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
  }
  
  h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }
  
  .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .btn-light {
    background-color: var(--white);
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    background-color: var(--gray-100);
  }
  
  .btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .btn-text {
    background: none;
    padding: 0;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
  }
  
  .btn-text i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .btn-text:hover i {
    transform: translateX(5px);
  }
  
  /* Header */
  .header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
  }
  
  .logo img {
    height: 4.6rem;
  }

  .nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
  }

  .nav-menu ul {
    display: flex;
    align-items: center;
  }
  
  .nav-menu li {
    margin-left: 2rem;
  }
  
  .nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-menu a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover:not(.btn):after, 
  .nav-menu a.active:not(.btn):after {
    width: 100%;
  }
  
  .nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .mobile-menu ul {
    display: flex;
    flex-direction: column;
  }
  
  .mobile-menu li {
    margin: 0.5rem 0;
  }
  
  .mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .mobile-menu a:hover, .mobile-menu a.active {
    color: var(--primary-color);
  }
  
  .mobile-btn {
    margin-top: 0.5rem;
    text-align: center;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('/Resources/Images/Nature/Sunset\ Tree.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
  }
  
  .hero h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 400;
  }
  
  .hero h2:after {
    display: none;
  }
  
  .hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .scroll-indicator span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  
  .scroll-indicator i {
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .scroll-indicator:hover {
    opacity: 1;
  }
  
  /* Section Styles */
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header p {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--gray-600);
  }
  
  /* Hunting Experience Section */
  .hunting-experience {
    background-color: var(--light-color);
  }
  
  .experience-subsection {
    margin-bottom: 4rem;
  }
  
  .experience-subsection:last-child {
    margin-bottom: 0;
  }
  
  .experience-subsection h3 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .experience-subsection h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  /* Hunting Methods */
  .methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .method-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .method-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .method-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
  }
  
  .method-card h4 {
    margin-bottom: 1rem;
  }
  
  .method-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
  }
  
  /* Game Groups */
 .game-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.game-group {
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.game-group:hover {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .game-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .game-groups {
    grid-template-columns: 1fr;
  }
}

  .game-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    transition: background 0.3s ease;
  }
  
  .game-card:hover:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  }
  
  .game-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }
  
  .game-card:hover .game-content {
    transform: translateY(0);
  }
  
  .game-card h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }
  
  .game-card p {
    margin-bottom: 1.25rem;
    opacity: 0.9;
    font-size: 0.9375rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--white);
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
  }
  
  .testimonial-content {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    position: relative;
  }
  
  .quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
  }
  
  .testimonial-content blockquote {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--gray-800);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--white);
  }
  
  .testimonial-author h4 {
    margin-bottom: 0.25rem;
  }
  
  .testimonial-author p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }
  
  .testimonial-prev,
  .testimonial-next {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
  }
  
  .testimonial-prev:hover,
  .testimonial-next:hover {
    opacity: 0.7;
  }
  
  .testimonial-dots {
    display: flex;
    margin: 0 1rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: var(--primary-color);
  }
  
  /* CTA Section */
  .cta {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    background-image: url('../images/cta-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 69, 19, 0.85);
  }
  
  .cta .container {
    position: relative;
    z-index: 1;
  }
  
  .cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .cta h2:after {
    background-color: var(--white);
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark-color);
    color: var(--gray-400);
    padding-top: 4rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
  }
  
  .footer h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-logo {
    height: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-links ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  .footer-contact ul li {
    display: flex;
    margin-bottom: 1rem;
  }
  
  .footer-contact i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  
  /* Animation Classes */
  .reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s forwards;
  }
  
  .reveal-text:nth-child(1) {
    animation-delay: 0.3s;
  }
  
  .reveal-text:nth-child(2) {
    animation-delay: 0.6s;
  }
  
  .reveal-text:nth-child(3) {
    animation-delay: 0.9s;
  }
  
  .reveal-text:nth-child(4) {
    animation-delay: 1.2s;
  }
  
  @keyframes revealText {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    h1 {
      font-size: 3rem;
    }
    
    h2 {
      font-size: 2.25rem;
    }
    
    .hero h1 {
      font-size: 3rem;
    }
    
    .hero h2 {
      font-size: 1.5rem;
    }
    
    .game-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .game-card {
      height: 350px;
    }
  }
  
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }
    
    .menu-toggle {
      display: block;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero h2 {
      font-size: 1.25rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .hero-buttons .btn {
      width: 100%;
      margin-bottom: 1rem;
    }
    
    .method-card {
      padding: 1.5rem;
    }
    
    .game-card {
      height: 300px;
    }
    
    .testimonial-content {
      padding: 2rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-buttons .btn {
      width: 100%;
      margin-bottom: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    section {
      padding: 3rem 0;
    }
    
    h1 {
      font-size: 2.25rem;
    }
    
    h2 {
      font-size: 1.75rem;
    }
    
    .hero {
      min-height: 600px;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero h2 {
      font-size: 1.125rem;
    }
    
    .methods-grid {
      grid-template-columns: 1fr;
    }
    
    .game-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonial-content {
      padding: 1.5rem;
    }
    
    .testimonial-content blockquote {
      font-size: 1rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    height: 300px;
  }

  }
/* About page */

/* Page Header */
.page-header {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  margin-top: 5rem;
}

.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-content {
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* General Section Styling */
.section {
  padding: 5rem 0;
}

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

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

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}


/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-image {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


/* Philosophy Section */
.philosophy {
  background-color: var(--light-color);
}

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

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

.icon-circle {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.icon-circle i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

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

.philosophy-card p {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Team Section */
.family {
  background-color: var(--secondary-color)
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: stretch; /* 🔑 this ensures all cards stretch to same height */
}


.team-card {
  display: fixed;
  flex-direction: column;
  height: 100%;
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  
}


.team-card:hover {
  transform: translateY(-0.5rem);
}

.team-image {
  height: 300px; /* keep image height fixed */
  flex-shrink: 0;
}

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

.team-info {
  flex-grow: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Testimonial Banner */
.testimonial-banner {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.testimonial-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(146, 64, 14, 0.8); /* warm brown overlay */
  z-index: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
}

.testimonial-content blockquote {
  font-size: 1.5rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

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

.author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-details {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0;
}
* Gallery Filter Styles */
.gallery-filter {
    padding: 2rem 0;
    background-color: var(--gray-light);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background-color: var(--white);
    color: var(--gray-dark);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

/* Gallery Grid Styles */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    height: 16rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-image:hover {
    transform: scale(1.05);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    height: 100%;
}

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

.gallery-overlay p {
    color: var(--white);
    margin-bottom: 0;
}

.no-results {
    text-align: center;
    padding: 4rem 0;
    color: var(--gray-color);
    font-size: 1.125rem;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -2rem;
    right: -2rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.lightbox-image-container {
    text-align: center;
}

.lightbox-image {
    max-height: 80vh;
    max-width: 100%;
    border-radius: var(--radius);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.125rem;
}
/* Media Queries */
@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .filter-btn {
        padding: 0.5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* PACKAGES GRID */
.packages {
  padding: 5rem 0;
  background-color: var(--light-color, --primary-light)
}

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

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

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

/* IMAGE */
.package-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.package-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-content h3 {
  font-size: 1.5rem;
  color: var(--heading-color, #222);
}

.package-content p {
  color: var(--gray-color, #666);
}

.package-details {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: var(--primary-color);
}
.btn.btn-primary {
  margin-top: auto;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn.btn-primary:hover {
  background-color: var(--primary-dark, #92400e);
}
/* Contact Page Styles */

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Contact Information */
.contact-info p {
    margin-bottom: 2rem;
    max-width: 600px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    margin-bottom: 0.25rem;
    color: var(--gray-color);
}

.social-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.social-section .social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-section .social-link:hover {
    background-color: var(--primary-dark);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--light-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    color: #059669;
    font-size: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

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

.form-error {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.required {
    color: #b91c1c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(146, 64, 14, 0.2);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-right: 0.5rem;
}

.contact-form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .btn i {
    margin-left: 0.5rem;
}

/* Map Container */
.section-map {
    background-color: var(--secondary-color);
}
.map-container {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 0.5rem;
}

.map-container iframe {
    border-radius: var(--radius);
    display: block;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Media Queries */
@media (min-width: 768px) {
    .contact-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}