* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color-primary: #8B7355;
    --color-secondary: #5C4033;
  }
  a{
    color: inherit;       /* inherit text color from parent, or set a fixed color */
    text-decoration: none;
  }
  a:hover{
    color: white;       /* inherit text color from parent, or set a fixed color */
    text-decoration: none; 
  }
  
  .card-explorations {
    display: flex;
    flex-direction: column;
    height: 100%; /* ensures equal height inside the grid */
  }
  
  .card-text {
    flex-grow: 1; /* fills the space and pushes button down */
  }
  .button-5 {
    max-width: 150px;
    align-items: center;
    background-clip: padding-box;
    background-color: #e88b22;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-top: 15px;
    vertical-align: baseline;
    width: auto;
  }
  
  .button-5:hover,
  .button-5:focus {
    background-color: #e88b22;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  }
  
  .button-5:hover {
    transform: translateY(-1px);
  }
  
  .button-5:active {
    background-color: #e88b22;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
  }
  :where([class^="ri-"])::before {
    content: "\f3c2";
  }
  .hero-bg {
    background-image: url('https://readdy.ai/api/search-image?query=Dramatic%20African%20savanna%20landscape%20at%20golden%20hour%2C%20majestic%20acacia%20tree%20silhouette%2C%20Maasai%20Mara%20plains%20stretching%20to%20horizon%2C%20warm%20golden%20light%2C%20ethereal%20atmosphere%2C%20epic%20wide%20vista%2C%20professional%20nature%20photography%2C%20cinematic%20composition&width=1920&height=1080&seq=maasai002&orientation=landscape');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .testimonial-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  }
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    color: white;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
  }
  .hero-subtitle {
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4rem;
  }
  .btn {
    display: inline-block;
    padding: 1.25rem 4rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn:hover {
    background-color: white;
    color: #111827;
  }
  .section {
    padding: 10rem 0;
    background-color: white;
  }
  .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .section-header {
    text-align: center;
    margin-bottom: 8rem;
  }
  .section-sub-title{
  padding-top: 20px;
  line-height: 1.5;
  font-size: large;
  }
  .section-title {
   
    font-size: 3.75rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }
  .divider {
    width: 8rem;
    height: 1px;
    background-color: var(--color-primary);
    opacity: 0.6;
    margin: 0 auto;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
  @media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr;
    }
    
    .hero-title {
      font-size: 4rem;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
    }
    
    .section-title {
      font-size: 1.75rem;
    }
  }
  .card {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;  
  }
  
  .card-text {
    color: #4B5563;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    flex-grow: 1; 
  }
  
  .card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 4/3;
  }
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .card:hover .card-image img {
    transform: scale(1.05);
  }
  .card-title {
  
    font-size: 1.875rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }
  
  .cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
  }
  .cta-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    color: white;
  }
  .cta-title {

    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
  }
  .btn-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
  } 
.hero-section {
    background-image: url('https://www.masaimara.travel/images/beautiful-masai-mara-photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;

}
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.quote-container {
 
    border-radius: 24px;
    padding: 48px 64px;
    max-width: 900px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.quote-container:hover {
    transform: translateY(-2px);
}
.quote-mark {

    font-size: 4rem;
    color: white;
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 24px;
}
.quote-text {
    
    color: white;
    font-size: 1.875rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 32px;
}
.separator-line {
    width: 60px;
    height: 2px;

    margin: 0 auto 24px;
}
.attribution {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.fade-in {
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}
.fade-in-delay {
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}
.quote-text {
    animation: textReveal 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes textReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}
@media (max-width: 768px) {
    .quote-container {
        padding: 32px 24px;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
    
    .attribution {
        font-size: 1rem;
    }
}

