/* About Us Page Styles */

.about-intro, 
.about-fun, 
.about-bucketlist, 
.about-cta {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.about-intro .about-image img,
.about-story .inline-photo,
.about-philosophy .inline-photo {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin-top: 20px;
}


.about-image-hover {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.about-image-hover img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: 0.4s ease; /* smooth dimming */
  display: block;
  margin: 0 auto;
}

.about-image-hover .hover-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  opacity: 0; /* hidden by default */
  transition: 0.4s ease;
  pointer-events: none;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5); /* makes text pop */
}

.about-image-hover:hover img {
  filter: brightness(50%); /* dims image */
}

.about-image-hover:hover .hover-title {
  opacity: 1; /* shows the heading */
}

@media screen and (max-width: 768px) {
  .about-intro .about-image-hover img {
    width: 95%; /* almost full width on smaller screens */
  }
}

.about-story {
  width: 100vw;             /* full viewport width */
  background-color: #e0f7fa; /* change to any color you like */
  padding: 60px 20px;       /* space above/below */
  box-sizing: border-box;   /* ensures padding doesn’t break width */
}

.about-story .container {
  max-width: 1200px;        /* keeps content readable */
  margin: 0 auto;           /* centers the content */
}

.about-story h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.about-philosophy {
  width: 100vw;             /* full viewport width */
  background-color: #fff; /* change to any color you like */
  padding: 60px 20px;       /* space above/below */
  box-sizing: border-box;   /* ensures padding doesn’t break width */
}

.about-philosophy .container {
  max-width: 1200px;        /* keeps content readable */
  margin: 0 auto;           /* centers the content */
}

.about-philosophy h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.about-philosophy p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.about-ventures {
  background-color: #f5f5f5; /* optional subtle background */
  padding: 60px 20px;
  text-align: center;
}

.about-ventures h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; /* space between cards */
  max-width: 1200px;
  margin: 0 auto;
}

.venture-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venture-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 240px; /* consistent card height */
  transition: transform 0.3s ease;
}

.venture-item p {
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.venture-item:hover img {
  transform: scale(1.05); /* subtle zoom effect */
}

.venture-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.venture-item a {
  text-decoration: none;
  color: midnightblue;
}

.about-fun h2,
.about-bucketlist h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  color: #2b2b2b;
}



.about-fun p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.inline-photo {
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 30px auto;
  display: block;
}

.about-ventures .tour-grid,
.about-fun .tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.about-ventures .card p a,
.about-cta a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.about-bucketlist ul {
  list-style-type: square;
  padding-left: 40px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-cta {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.about-cta p {
  font-size: 1.2rem;
  font-weight: 600;
}

a:hover {
    color: #ffbf00;
}

.about-philosophy li,
.about-bucketlist li {
  list-style: none; /* remove default bullet */
  position: relative;
  padding-left: 25px; /* space for custom bullet */
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-philosophy li::before,
.about-bucketlist li::before {
  content: "★"; /* you can use •, ✓, or any symbol */
  position: absolute;
  left: 0;
  color: midnightblue; /* change to match your color scheme */
  font-size: 1.2rem;
  line-height: 1;
}


.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 30px auto;
  display: block;
}