/*-----------------------------------*\
 * #ABOUT PAGE STYLES
\*-----------------------------------*/

/* About Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/abouthero.jpg') center/cover no-repeat;
  padding: 150px 0 100px;
  text-align: center;
  color: var(--white);
}

.about-title {
  font-size: var(--fs-1);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-subtitle {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  text-transform: capitalize;
  opacity: 0.9;
}

/* About Content Section */
.about-content {
  padding: var(--section-padding) 0;
}

.about-text-centered {
  max-width: 900px;
  margin: 0 auto;
}

.centered-title {
  text-align: center;
  margin-bottom: 30px;
}

.centered-text {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.8;
}

.centered-button {
  text-align: center;
  margin-top: 30px;
}

/* Founder Section */
.founder-section {
  background: var(--cultured);
  padding: var(--section-padding) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.founder-image {
  border-radius: var(--radius-25);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-text .section-title {
  margin-bottom: 20px;
  text-align: left;
}

.founder-text .section-text {
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Pricing Banner */
.pricing-banner {
  background: var(--bright-navy-blue);
  padding: 80px 0;
  text-align: center;
}

.pricing-content .section-title,
.pricing-content .section-text {
  color: var(--white);
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  padding: var(--section-padding) 0;
}

.services-section .section-subtitle,
.services-section .section-title {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--bright-navy-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 30px;
}

.service-title {
  margin-bottom: 15px;
  color: var(--gunmetal);
}

.service-text {
  color: var(--black-coral);
  line-height: 1.7;
  font-size: var(--fs-5);
}

/* Responsive Design */
@media (min-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-hero {
    padding: 180px 0 120px;
  }
}

@media (min-width: 1200px) {
  .founder-grid {
    gap: 80px;
  }
}
/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0; /* Changed from 61px to 0 */
  z-index: 4;
}

/* Remove the entire header-top section */
.header-top {
  display: none; /* This hides the top header section */
}

.header-bottom { 
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); 
}

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}

/* Rest of your existing header styles remain the same */

/* Wider paragraph styling for THE BEST TOUR AGENCY section */
.about-text-centered {
  max-width: 1200px; /* Increased from 900px to 1200px */
  margin: 0 auto;
  padding: 0 20px; /* Added padding for smaller screens */
}

.centered-text {
  text-align: center;
  margin-bottom: 25px; /* Slightly increased margin */
  line-height: 1.8;
  font-size: var(--fs-5);
  max-width: 1000px; /* Constrain text width for better readability */
  margin-left: auto;
  margin-right: auto;
}

/* For even wider layout on large screens */
@media (min-width: 1400px) {
  .about-text-centered {
    max-width: 1400px;
    padding: 0 60px; /* More side space on very large screens */
  }
  
  .centered-text {
    max-width: 1100px;
    font-size: 17px; /* Slightly larger text for very wide layouts */
  }
}

/* Adjust for medium screens */
@media (max-width: 768px) {
  .about-text-centered {
    max-width: 100%;
    padding: 0 30px;
  }
  
  .centered-text {
    max-width: 100%;
    text-align: justify; /* Justify text for better appearance on mobile */
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .about-text-centered {
    padding: 0 15px;
  }
  
  .centered-text {
    text-align: left; /* Left align for best readability on small screens */
    line-height: 1.7;
  }
}
/* Center the View Packages button in ABOUT section */
.centered-button {
  text-align: center;
  margin-top: 30px;
}

/* Center the Book Now button in PRICING BANNER section */
.pricing-content {
  text-align: center;
}

.pricing-content .btn {
  display: inline-block;
  margin: 0 auto;
}
/* Highlight specific words in the paragraph */
.centered-text strong {
  color: var(--bright-navy-blue);
  font-weight: var(--fw-700);
}
/* Ensure the View Packages button is properly centered */
.about-text-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-button {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

.centered-button .btn {
  display: inline-block;
  margin: 0 auto;
}
/* Header modifications for about page */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0;
  z-index: 4;
}

/* Hide header-top completely */
.header-top {
  display: none;
}

/* Header bottom adjustments */
.header-bottom { 
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); 
  background: transparent;
}

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}

/* Mobile menu button styling - hidden on desktop */
.nav-open-btn {
  color: var(--white);
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* Desktop Book Now button - hidden on mobile */
.desktop-book-btn {
  display: none;
}

/* Social list adjustments */
.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: var(--white);
  padding: 8px;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { 
  background: hsla(0, 0%, 100%, 0.2); 
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
}

/* Overlay styles */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

/* About Hero Section adjustments */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/abouthero.jpg') center/cover no-repeat;
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
}

/* Responsive adjustments */
@media (min-width: 580px) {
  .nav-open-btn {
    font-size: 35px;
  }
  
  .social-list {
    gap: 10px;
  }
}

@media (min-width: 992px) {
  /* Hide mobile menu button on desktop */
  .nav-open-btn {
    display: none;
  }
  
  /* Show desktop Book Now button */
  .desktop-book-btn {
    display: block;
    --padding: 8px 20px;
    font-size: var(--fs-5);
  }
  
  /* Show desktop navigation */
  .header-bottom .navbar {
    all: unset;
  }
  
  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  
  .navbar-link {
    color: var(--white);
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
    text-transform: uppercase;
    padding: 10px 15px;
    transition: var(--transition);
  }
  
  .navbar-link:is(:hover, :focus) {
    color: var(--bright-navy-blue);
  }
  
  /* Adjust container layout for desktop */
  .header-bottom .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
  }
  
  .social-list {
    justify-self: start;
  }
  
  .navbar {
    justify-self: center;
  }
  
  .desktop-book-btn {
    justify-self: end;
  }
}

/* For larger screens */
@media (min-width: 1200px) {
  .navbar-list {
    gap: 25px;
  }
  
  .navbar-link {
    font-size: var(--fs-4);
  }
  
  .desktop-book-btn {
    --padding: 10px 25px;
    font-size: var(--fs-4);
  }
}
@media (min-width: 992px) {
  /* Hide mobile menu button on desktop */
  .nav-open-btn {
    display: none;
  }
  
  /* Show desktop Book Now button */
  .desktop-book-btn {
    display: block;
    --padding: 6px 20px; /* Match original button padding */
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
  }
  
  /* EXACT ORIGINAL NAVIGATION STYLING */
  .header-bottom .navbar {
    all: unset;
  }
  
  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0; /* No gap between items */
  }
  
  .navbar-list li {
    border-bottom: none;
  }
  
  .navbar-link {
    color: var(--white);
    --fs-4: 16px; /* Exact original size */
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px; /* Exact original padding */
    transition: var(--transition);
  }
  
  .navbar-link:is(:hover, :focus) {
    color: var(--bright-navy-blue);
  }
  
  /* EXACT ORIGINAL LAYOUT */
  .header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0; /* Match original */
  }
  
  .social-list {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .navbar {
    margin: 0 auto; /* Center the navigation */
  }
  
  .desktop-book-btn {
    margin-left: auto;
  }
}

/* Match original 1200px breakpoint */
@media (min-width: 1200px) {
  .navbar-link {
    padding: 20px 15px; /* Maintain original padding */
  }
}
@media (min-width: 992px) {
  /* Hide mobile menu button on desktop */
  .nav-open-btn {
    display: none;
  }
  
  /* Show desktop Book Now button */
  .desktop-book-btn {
    display: block;
    --padding: 6px 20px;
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
  }
  
  /* NAVIGATION - MOVED RIGHT BUT NOT TOO FAR */
  .header-bottom .navbar {
    all: unset;
    margin-left: auto; /* This pushes nav to the right */
    margin-right: 15px; /* Reduced from 30px to move nav more left */
  }
  
  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center; /* Changed back to center for better balance */
    align-items: center;
    gap: 0;
  }
  
  .navbar-list li {
    border-bottom: none;
  }
  
  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
    transition: var(--transition);
  }
  
  .navbar-link:is(:hover, :focus) {
    color: var(--bright-navy-blue);
  }
  
  /* LAYOUT WITH NAV MOVED RIGHT BUT NOT TOO FAR */
  .header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0;
  }
  
  .social-list {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Social stays on left */
  }
  
  /* Navigation container - adjusted positioning */
  .navbar {
    position: absolute; /* Use absolute positioning for precise control */
    left: 50%; /* Center the nav */
    transform: translateX(-40%); /* Move 40% left from center (adjust this value) */
    margin: 0; /* Remove previous margins */
  }
  
  .desktop-book-btn {
    margin-left: auto;
  }
}

/* Match original 1200px breakpoint */
@media (min-width: 1200px) {
  .navbar-link {
    padding: 20px 15px;
  }
  
  .navbar {
    transform: translateX(-35%); /* Slightly different adjustment for larger screens */
  }
}
/* Classy Text Animations */
.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: var(--fs-1);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.about-subtitle {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  text-transform: capitalize;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add a subtle border reveal effect */
.about-title {
  position: relative;
  display: inline-block;
}

.about-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--white), transparent);
  animation: borderReveal 1.5s ease-in-out 1.5s forwards;
}

@keyframes borderReveal {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
