/* assets/css/about-us.css - Premium styles for about-us.html */

/* About Us Page Styles */
.about-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, rgba(218, 185, 143, 0.7), rgba(242, 241, 220, 0.5)), url('../images/about-hero.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--earth-brown);
  position: relative;
  overflow: hidden;
}

.about-hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero p {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--muted);
}

.about-hero .btn-primary {
  background: linear-gradient(90deg, var(--giraffe-gold), var(--yellow-ochre));
  color: var(--earth-brown);
  padding: 0.9rem 2rem;
  border-radius: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.about-hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(216, 169, 3, 0.5);
}

.about-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg), var(--leopard-tan));
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-section h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--earth-brown);
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.about-section .lead {
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
}

.about-card {
  background: rgba(242, 241, 220, 0.9);
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(216, 169, 3, 0.08), transparent);
  z-index: -1;
  opacity: 0.15;
}

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

.about-card h3 {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--earth-brown);
  margin-bottom: 1rem;
  position: relative;
}

.about-card h3::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 30%;
  height: 3px;
  background: var(--giraffe-gold);
  transition: width 0.3s ease;
}

.about-card:hover h3::after {
  width: 50%;
}

.about-card p {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

/* Destinations We’ve Mastered Subsection */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
}

.destinations-card {
  background: rgba(242, 241, 220, 0.95);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  border-left: 6px solid rgba(216, 169, 3, 0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destinations-card::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  background: radial-gradient(circle at 25% 25%, rgba(216, 140, 63, 0.1), transparent);
  border-radius: 1.7rem;
  z-index: -1;
  opacity: 0.25;
}

.destinations-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(216, 169, 3, 0.3);
}

.destinations-card h3 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--earth-brown);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.destinations-card p {
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.8;
  padding: 0 1rem;
}

/* Clients We’ve Honored Subsection */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
}

.clients-card {
  background: linear-gradient(135deg, rgba(242, 241, 220, 0.9), rgba(218, 185, 143, 0.1));
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.clients-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D88C3F" fill-opacity="0.05" d="M0,128L48,138.7C96,149,192,171,288,170.7C384,171,480,149,576,133.3C672,117,768,107,864,96C960,85,1056,75,1152,74.7C1248,75,1344,85,1392,90.7L1440,96V320H1392C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320H0V128Z"></path></svg>') no-repeat center;
  z-index: -1;
  opacity: 0.1;
}

.clients-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(216, 169, 3, 0.4);
}

.clients-card h3 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--giraffe-gold);
  margin-bottom: 1rem;
  position: relative;
}

.clients-card h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: var(--yellow-ochre);
  transition: width 0.3s ease;
}

.clients-card:hover h3::after {
  width: 60%;
}

.clients-card p {
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.8;
}

/* Team Section */
.about-team {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg), rgba(242, 241, 220, 0.9));
  color: var(--earth-brown);
  position: relative;
  overflow: hidden;
}

.about-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(216, 169, 3, 0.1), transparent);
  z-index: 0;
  opacity: 0.1;
}

.about-team .container {
  position: relative;
  z-index: 1;
}

.about-team h2 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--earth-brown);
  text-align: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.about-team .lead {
  font-size: 1.3rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: var(--text);
  text-align: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.5rem;
  margin-top: 5rem;
  opacity: 0;
  transform: translateY(20px);
}

.team-card {
  background: rgba(219,213,195,0.7);
  border: 1px solid rgba(216, 169, 3, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(216, 140, 63, 0.05), transparent);
  z-index: -1;
  opacity: 0.3;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(216, 169, 3, 0.4);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(216, 169, 3, 0.5);
}

.team-card h3 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: var(--giraffe-gold);
  margin-bottom: 0.5rem;
  text-align: center;
}

.team-card .title {
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
  text-align: center;
}

.team-card .bio {
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.8;
  text-align: center;
}

.about-testimonials {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--leopard-tan), var(--bg));
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card {
  background: rgba(242, 241, 220, 0.9);
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--earth-brown);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-size: 2.5rem;
  color: var(--giraffe-gold);
  opacity: 0.7;
}

.testimonial-card::after {
  content: '”';
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
  font-size: 2.5rem;
  color: var(--giraffe-gold);
  opacity: 0.7;
}
.about-testimonials h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}
.about-testimonials .lead {
    font-size: 1.3rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}
.testimonial-card p {
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: normal;
}

.cta-section {
  padding: 4rem 0;
  text-align: center;
  background: var(--bg);
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--earth-brown);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.cta-section .btn-primary {
  background: linear-gradient(90deg, var(--giraffe-gold), var(--yellow-ochre));
  color: var(--earth-brown);
  padding: 1rem 2.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(216, 169, 3, 0.5);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.5rem; }
  .about-section h2 { font-size: 2rem; }
  .team-grid, .testimonials-grid, .about-grid, .destinations-grid, .clients-grid { grid-template-columns: 1fr; }
  .destinations-card, .clients-card, .team-card { padding: 1.5rem; }
  .team-card img { height: 200px; }
  .cta-section h2 { font-size: 2rem; }
}