*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}

html,body {
    margin: 0;
      font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
}


/* top-section */


.color{
  color:#c83063;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}
.navbar-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}
 

 



/* Adults page section styling */

:root {
    --arrival-bg: #221B27; 
    --text-main: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
    --accent-gradient: linear-gradient(180deg, #FFFFFF 0%, #A48EB2 100%);
}

.arrival-section {
    width: 100%;
    height: 665.90px;  
    margin: 0 auto;
    background-color: var(--arrival-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    overflow: hidden;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.arrival-container {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    animation: fadeInUp 1s ease-out;

}

/* Floating Badge Styling */
.arrival-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.arrival-badge .dot {
    width: 4px;
    height: 4px;
    background-color: var(--text-dim);
    border-radius: 50%;
}

/* Typography Styling */
.arrival-title {
    font-family: 'Gambarino', serif; 
    font-size: 96px;
    line-height: 1;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 24px;
}

.italic-gradient {
    font-style: italic;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.minimal-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 32px 0;
}

.arrival-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 600px;
}

@media (max-width: 1024px) {
    .arrival-section {
        height: auto;
        padding: 120px 0;
    }
    .arrival-title { font-size: 72px; }
}

@media (max-width: 768px) {
    .arrival-title { font-size: 48px; }
    .arrival-desc { font-size: 15px; }
    .desktop-only { display: none; }
}

/* Journeys section styling */

/* Container & Background */
.cp-curated-paths {
  padding: 100px 20px;
  background-color: #f9f7f5; /* Warm neutral background */
  font-family: 'Georgia', serif; /* Use a Serif font for the "Rediscovery" look */
  color: #4a4440;
}

.cp-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Styling */
.cp-header {
  text-align: center;
  margin-bottom: 70px;
}

.cp-subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9e918a;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.cp-main-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: #2d2926;
  margin-bottom: 20px;
}

.cp-italic {
  font-style: italic;
  color: #8a7fa3; /* Soft purple tint from the image */
}

.cp-intro {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #7a736e;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Grid */
.cp-grid {
  display: grid;
  gap: 30px;
  /* Extra Large / Large / Medium: 2 Columns */
  grid-template-columns: repeat(2, 1fr);
}

/* Small / Mobile: 1 Column */
@media (max-width: 768px) {
  .cp-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Design */
.cp-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.cp-card:hover {
  transform: translateY(-5px);
}

/* Image Logic */
.cp-image-area {
  position: relative;
  height: 240px;
}

.cp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-duration-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Card Content Area */
.cp-content {
  padding: 30px;
}

.cp-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.cp-icon {
  width: 32px;
  height: 32px;
  background: #f3f0ed;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.cp-card-name {
  font-size: 20px;
  font-weight: 500;
  color: #2d2926;
  margin: 0;
}

.cp-description {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #7a736e;
  margin-bottom: 25px;
}

.cp-link {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #9e918a;
  text-decoration: none;
  transition: color 0.2s;
}

.cp-link:hover {
  color: #8a7fa3;
}


/* Thoughtfull Section styling */
:root {
    --bg-cream:  #F5F0EB;
    --text-dark: #332D31;
    --text-muted: #7A7277;
    --accent-purple: #A48EB2;
    --card-white: #FFFFFF;
}

.crafted-section {
    width: 100%;
    height: 734.67px;  
    margin: 0 auto;
    background-color: var(--bg-cream);
    padding: 75.33px 252.57px 80px 252.57px; 
    display: flex;
    flex-direction: column;
    gap: 53.81px; 
    box-sizing: border-box;
    opacity: 1;
}

.crafted-header {
    text-align: center;
}

.crafted-header .label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-purple);
    font-weight: 600;
}

.crafted-header .title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin: 15px 0;
}

.italic-purple {
    font-style: italic;
    color: var(--accent-purple);
}

.crafted-header .subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.crafted-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.image-container {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.quote-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 12px;
    color: white;
}

.quote-overlay p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.quote-author {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    background: var(--card-white);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #F5F4F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.feature-header h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.feature-tag {
    font-size: 9px;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1100px) {
    .crafted-section {
        padding: 60px 40px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .crafted-content {
        grid-template-columns: 1fr;
    }
    .image-container {
        height: 300px;
    }
    .crafted-header .title {
        font-size: 28px;
    }
}

/* Journey Section styling  */
:root {
    --bg-cream: #FAF7F4;
    --text-dark: #332D31;
    --text-muted: #7A7277;
    --accent-purple: #A48EB2;
    --card-white: #FFFFFF;
}

.stories-section {
    width: 100%;
    height: 656.31px; 
    margin: 0 auto;
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.stories-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 100px;
}

.stories-header {
    text-align: center;
    margin-bottom: 50px;
}

.stories-header .label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-purple);
    font-weight: 600;
}

.stories-header .title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--text-dark);
    margin: 15px 0;
}

.italic-purple {
    font-style: italic;
    color: var(--accent-purple);
}

.stories-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.profile-card {
    flex: 0 0 350px;
    height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.profile-info h3 { font-size: 18px; margin-bottom: 4px; }
.profile-info p { font-size: 11px; opacity: 0.8; }

.timeline-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline-card {
    background: var(--card-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.timeline-card.before {
    background: #F1EFE9; 
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #EAE8E3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: var(--text-muted);
}

.after .badge {
    background: #F2EEF5;
    color: var(--accent-purple);
}

.badge-label {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-muted);
}

.timeline-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.vertical-line {
    width: 1px;
    height: 30px;
    background: #EAE8E3;
    margin-left: 42px;
}

.quote-icon {
    color: #F2EEF5;
    font-size: 40px;
    line-height: 0;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .stories-section { height: auto; padding: 80px 0; }
    .stories-container { padding: 0 40px; }
    .stories-content { flex-direction: column; align-items: center; }
    .profile-card { width: 100%; flex: none; height: 300px; }
}

 /* Travel once section styling */

.cb-community-section {
  background-color: #2b262d; 
  padding: 100px 20px;
  color: #ffffff;
  font-family: 'Georgia', serif; 
  overflow: hidden;
}

.cb-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cb-header {
  text-align: center;
  margin-bottom: 60px;
}

.cb-subtitle {
  font-family: sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #9c919c;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cb-main-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  margin-bottom: 20px;
}

.cb-accent {
  color: #a797ab; 
}

.cb-description {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #b0a8b0;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Gallery Grid - Responsive */
.cb-gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
}

.cb-img-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.cb-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.cb-img-wrapper:hover .cb-gallery-img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Stats Grid - Responsive */
.cb-stats-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}

.cb-stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.cb-stat-num {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 400;
}

.cb-stat-label {
  font-family: sans-serif;
  font-size: 12px;
  color: #9c919c;
  margin: 0;
  text-transform: capitalize;
}

/* Responsiveness for Tablets (Medium Devices) */
@media (max-width: 992px) {
  .cb-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cb-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsiveness for Mobile (Small Devices) */
@media (max-width: 576px) {
  .cb-gallery-grid {
    grid-template-columns: 1fr;
  }
  .cb-stats-grid {
    grid-template-columns: 1fr;
  }
  .cb-community-section {
    padding: 60px 15px;
  }
}


/* Bigin the journey Section styling */
:root {
    --cta-bg-color: #2A2430; 
    --lavender-primary: #A48EB2;
    --text-white: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
}

.cta-journey-section {
    position: relative;
    width: 100%;
    height: 593.59px;  
    margin: 0 auto;
    background: url('assets/images/adults-page-begin-journey-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    opacity: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(42, 36, 48, 0.85) 0%, rgba(42, 36, 48, 0.95) 100%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.cta-title {
    font-family: 'Playfair Display', serif; 
    font-size: 56px;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 400;
}

.italic-lavender {
    font-style: italic;
    color: var(--lavender-primary);
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-primary {
    background-color: var(--lavender-primary);
    color: #2A2430;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
    background-color: #B8A5C4;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cta-footnote {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .cta-journey-section {
        height: auto;
        padding: 100px 0;
    }
    .cta-title { font-size: 48px; }
}

@media (max-width: 768px) {
    .cta-title { font-size: 36px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .desktop-only { display: none; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
}


/* Footer Section */


.footer {
  width: 100%;

  padding: 15px 32px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  border-bottom: 0.45px solid #e5e7eb;
  padding-bottom: 24px;
  gap: 180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  padding-top:20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  gap: 400px;
}

.footer-bottom p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}