/* Start custom CSS for html, class: .elementor-element-39a0817 *//* Card Container with a rugged, sleek travel-app layout */
.adventure-card-container {
  /* Dynamic sizing */
  width: 100%;
  max-width: 380px;         /* Prevents it from getting awkwardly wide on desktops */
  height: 92vh;              /* Uses 92% of the available screen height */
  max-height: 680px;        /* Limits max height on massive displays */
  
  /* Centers it cleanly on a desktop monitor */
  margin: 2vh auto;          
  
  border-radius: 24px;
  overflow: hidden;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #faf9f6;
  box-shadow: 0 15px 35px rgba(13, 37, 53, 0.25);
  position: relative;
}

/* Header Background */
.card-header-adventure {
  height: 38%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), 
              url('http://duodigitallv.com/wp-content/uploads/2026/06/20240628_170949-scaled.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  
  /* Flexbox settings that push the child content to the bottom-center */
  display: flex;
  justify-content: center;
  align-items: flex-end; 
}

/* Profile Picture Frame styling */
.profile-img-container {
  width: 100px;
  height: 100px;
  border: 4px solid #ffffff;
  border-radius: 80%;
  overflow: hidden;
  background-color: #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  
  /* Modern Centering Mechanism */
  position: absolute;
  bottom: 0;
  transform: translateY(50%); /* Shifts exactly half its own height down to perfectly split the line */
  z-index: 10; /* Ensures it sits cleanly on top of the text section below it */
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Removes inline layout spacing bugs */
}

/* Profile Picture Frame styling - Circle frame fits travel theme better */
.profile-img-container {
  width: 150px;
  height: 150px;
  border: 4px solid #ffffff;
  border-radius: 80%;
  overflow: hidden;
  background-color: #eee;
  transform: translateY(25px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
  /* 💡 ADD THIS LINE TO ADJUST POSITION */
  object-position: center 80%; 
}

/* Card Body Typography */
.card-body {
  flex: 1;
  padding: 30px 15px 15px 15px; /* Slightly tighter padding for flexibility */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Evenly distributes your text, promo box, and icons */
}

/* Ensure the promotional box shrinks and grows cleanly */
.promo-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #ff6b35;
  border-radius: 12px;
  padding: 12px 15px;
  width: 90%;
  box-sizing: border-box; /* Crucial: includes padding in width math */
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Ensure the promotional box shrinks and grows cleanly */
.promo-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #ff6b35;
  border-radius: 12px;
  padding: 12px 15px;
  width: 90%;
  box-sizing: border-box; /* Crucial: includes padding in width math */
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.brand-name {
  font-size: 24px;
  margin: 5px 0 0 0;
  color: #122b3b;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-name .highlight {
  color: #ff6b35; /* Vibrant adventure orange */
}

.tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 3px 0 12px 0;
  color: #647787;
  font-weight: 600;
}

.guide-info {
  font-size: 13px;
  color: #2e4756;
  margin-bottom: 15px;
}

.guide-name {
  font-weight: bold;
}

.divider {
  color: #ff6b35;
  margin: 0 6px;
}

/* Marketing Promo Box to attract/convert customers */
.promo-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #ff6b35;
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 18px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.promo-text {
  font-size: 12px;
  color: #334e68;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  background-color: #ff6b35;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
  background-color: #e0531f;
  transform: translateY(-1px);
}

.reach-me {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #829ab1;
  margin-bottom: 8px;
}

/* Social & Booking Icons with custom brand colors */
.icon-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.icon-box {
  width: 55px;
  height: 52px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s;
}

.icon-box:hover {
  transform: translateY(-3px);
}

.icon-box.whatsapp { background-color: #25D366; }
.icon-box.email { background-color: #004e64; }
.icon-box.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.icon-box.tiktok { background-color: #010101; }

.icon-box span {
  font-size: 8px;
  margin-top: 4px;
  font-weight: 600;
}

/* Travel Navigation Footer Bar */
.card-footer {
  height: 55px;
  background-color: #004e64; /* Deep oceanic teal */
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-item {
  color: #9fffcb; /* soft green/teal glow tint */
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  flex: 1;
  transition: opacity 0.2s, color 0.2s;
}

.footer-item span {
  font-size: 8px;
  font-weight: bold;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.footer-item.active, .footer-item:hover {
  opacity: 1;
  color: #ffffff;
}


@media (max-height: 570px) {
  .adventure-card-container {
    height: 100vh;
    margin: 0 auto;
    border-radius: 0; /* Goes full-screen on exceptionally tiny displays */
  }
  .brand-name { font-size: 20px; }
  .promo-box { padding: 8px 12px; }
  .icon-box { height: 46px; }
}/* End custom CSS */