:root {
  --primary-color: #f5e6d8;
  --secondary-color: #f5e6d8;
  --accent-color: #8a6343;
  --text-color: #3e2723;
  --light-text: #5d4037;
  --highlight: #fffffe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree";
}

body {
  line-height: 1.6;
}

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

/* About Section */
.about-background {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust as needed */
    background: url("../images/about.jpg") center/cover no-repeat;
  }
  
  .about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay effect */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .about-text {
    color: #fff;
    max-width: 80%;
    font-size: 18px;
  }
  
  .about-text h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .about-text span{
    color: #F1AC32;
    font-style: italic;
  }
  
  .about-text p {
    margin-bottom: 15px;
    max-width: 800px;
  }
  
  .welcome-badge {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(156, 156, 156, 0.481);
    border-radius: 30px;
    margin-bottom: 30px;
  }
  
/* Leh-ladak section  */
h1 {
  font-size: 3.5rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--accent-color);
}

.typing-text {
  min-height: 60px;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--light-text);
  font-style: italic;
}

.card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 30px;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--highlight);
}

h3 {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin: 20px 0 10px;
}

p,
ul {
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.info-item {
  background-color: var(--highlight);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.place-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--highlight);
}

.place-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .typing-text {
    font-size: 1.2rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}
