/* About Page Styles */

/* Basic Reset and Body Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fafafa;
}

/* Typography */
.hero-title, .section-title, .cta-title, .feature-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #8B4513;
}

/* Hero Section */
.about-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(139,69,19,0.4), rgba(139,69,19,0.4)), 
              url('https://images.pexels.com/photos/35467021/pexels-photo-35467021.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.hero-btn {
  display: inline-block;
  background: #D4AF37;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
}

.hero-btn:hover {
  background: transparent;
  color: #D4AF37;
  text-decoration: none;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(212, 175, 55, 0.03) 2px,
    rgba(212, 175, 55, 0.03) 4px
  );
  pointer-events: none;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: #8B4513;
  position: relative;
  z-index: 2;
  font-weight: 300;
  letter-spacing: 2px;
}

.section-title::before,
.section-title::after {
  content: '❦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #D4AF37;
  font-size: 1.5rem;
}

.section-title::before {
  left: -60px;
}

.section-title::after {
  right: -60px;
}

.section-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* About Images */
.about-image {
  position: relative;
  z-index: 2;
}

.rounded-luxury {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.rounded-luxury:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* Stats */
.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding: 30px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-choose-section {
  margin: 100px 0;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #8B4513;
}

.feature-text {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Udawalawe Section */
.udawalawe-section {
  margin: 100px 0;
  position: relative;
  z-index: 2;
}

.park-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 10px;
  border-left: 4px solid #D4AF37;
}

.highlight-item i {
  color: #8B4513;
  font-size: 1.2rem;
  margin-right: 15px;
  width: 20px;
}

.highlight-item span {
  color: #555;
  font-weight: 500;
}

/* Commitment Section */
.commitment-section {
  margin: 100px 0;
  position: relative;
  z-index: 2;
}

.luxury-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.luxury-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  pointer-events: none;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.commitment-item {
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.commitment-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.commitment-item i {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 15px;
}

.commitment-item h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #8B4513;
  margin-bottom: 10px;
}

.commitment-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Call to Action Section */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #8B4513, #D4AF37);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/packagebg.png') center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #8B4513;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
  margin: 0 10px;
}

.cta-btn:hover {
  background: transparent;
  color: white;
  text-decoration: none;
}

.cta-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn-outline:hover {
  background: white;
  color: #8B4513;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-title::before,
  .section-title::after {
    display: none;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .luxury-container {
    padding: 40px 20px;
  }
  
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons .cta-btn {
    display: block;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .about-text, .feature-text {
    font-size: 1rem;
  }
}

/* Animation Delays */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.commitment-item:nth-child(1) { transition-delay: 0.1s; }
.commitment-item:nth-child(2) { transition-delay: 0.2s; }
.commitment-item:nth-child(3) { transition-delay: 0.3s; }
.commitment-item:nth-child(4) { transition-delay: 0.4s; }
