@import url("https://fonts.googleapis.com/css2?family=Damion&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&display=swap');

/* *{
    outline:1px solid red !important;
} */
:root {
    --primary: #0b7285;
    --primary-dark: #12212e;
    --secondary:#6edbd6;
    --white: #e8fffa; /* background */
    --cream:#ece7dc;
    --glass: rgba(255, 255, 255, 0.15);
    --tripture-navy: #001f3f;   
    --tripture-light: #f8fdfd;  
    --tripture-shadow: 0 15px 40px rgba(0, 31, 63, 0.1);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc; /* Light grey background makes the white nav pop */
  overflow-x: hidden; /* Prevent horizontal scroll from GSAP animation */

}



/* Glassmorphism Badge */
.bg-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #fff;
}



/* Animation on load */
.hero-title {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* --- Hero Section Styles --- */
.hero-section {
    padding: 160px 0; /* Vertical spacing for scrolling space */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
    linear-gradient(
      to right,
      rgb(0, 0, 0) 0%, /* ဘယ်ဘက်အစမှာ အဖြူစစ်စစ် */ 
      rgba(2, 2, 2, 0.9) 30%, /* ၃၀% အထိ အဖြူရောင် လွှမ်းထားမယ် */ 
      rgba(0, 0, 0, 0) 70%/* ၇၀% ရောက်ရင် အဖြူရောင် ပျောက်သွားပြီး ပုံပဲကျန်မယ် */
    ),
    url("./assets/Domestic/mawlamyine.jpg"); /* ပင်လယ်ပုံ */

   
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* --- Text Content Styles (Left Side) --- */
.hero-title {
    font-size: 4rem; /* display-3 equivalent */
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Damion';
    z-index: 5;
    color:#f4f4f4;
}
.hero-title .text-teal { 
    color: var(--secondary); /* Bright Teal Accent */
    z-index: 5;

}
.hero-description {
    font-size: 1.25rem; /* lead equivalent */
    margin-bottom: 3rem;
    opacity: 0.8;
    line-height: 1.6;
    z-index: 5;
    color:var(--white);


}

/* --- Buttons Styles --- */
.hero-btns-container {
    display: flex;
    gap: 15px;
}
.btn-teal-fill {
    background-color: var(--secondary);
    color: var(--primary-dark);
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.btn-teal-fill:hover { 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #001f3f;
}

/* --- Floating Photo Cards Styles (Right Side) --- */
.card-container {
    position: relative;
    height: 550px; /* Base height to contain absolute elements */
    width: 100%;
}
.photo-card {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: absolute;
    transition: transform 0.3s ease;
    border: 3px solid rgba(29, 156, 150, 0.74);
}

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

/* Initial Desktop Positions & Sizes (mapped from design image) */
/* Card 1: Main (Bungalow) */
#card1 { 
    width: 250px; height: 350px;
    top: 50px; left: 20px; 
    z-index: 3; 
}
/* Card 2: Upper (Mountain) */
#card2 { 
    width: 220px; height: 270px;
    top: -50px; left: 250px; 
    z-index: 2; 
}
/* Card 3: Lower (Desert) */
#card3 { 
    width: 200px; height: 300px;
    top: 200px; left: 400px; 
    z-index: 1; 
}

/* --- Glowing Neon Lines Styles --- */
.glowing-line {
    position: absolute;
    width: 180px; height: 2px;
    background: linear-gradient(90deg, transparent, #00cccc, transparent);
    box-shadow: 0 0 15px #00cccc;
    z-index: 0;
    opacity: 0.5;
}
/* Line 1: Upper Right */
#line1 { 
    top: -40px; left: -430px; 
    transform: rotate(40deg); 
}
/* Line 2: Lower Left */
#line2 { 
    top: 300px; left: -150px; 
    transform: rotate(40deg); 
}

#line3 { 
    top: 200px; left: -680px; 
    transform: rotate(40deg); 
}

/* Shape Divider ကို Hero ရဲ့ အောက်ခြေမှာ ကပ်မယ် */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px; /* Curve ရဲ့ အမြင့်ကို ဒီမှာ ညှိပါ */
}

/* Curve ရဲ့ အရောင်ကို အောက်က Section အရောင်နဲ့ တူအောင် ထားပါ */
.custom-shape-divider-bottom .shape-fill {
    fill: var(--white); 
}
/*  RESPONSIVE MEDIA QUERIES

/* --- Large Tablets / Laptops (below 1200px) --- */
@media (max-width: 1199px) {
    .hero-title { font-size: 3.5rem; }
    #card1 { width: 250px; height: 310px; }
    #card2 { width: 200px; height: 240px; left: 150px; }
    #card3 { width: 180px; height: 210px; left: -80px; }
}

/* --- Tablets (below 992px) --- */
@media (max-width: 991px) {
    .navbar-tripture .nav-link { margin-left: 0; margin-top: 10px; }
    
    .hero-section { 
        text-align: center; 
        padding: 100px 0; 
    }
    .hero-title { font-size: 3rem; }
    .hero-btns-container { 
        justify-content: center; 
    }

    .card-container {
        height: 450px;
        margin-top: 70px;
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    /* Stack cards on mobile, remove absolute scatter */
    .photo-card { 
        position: relative; 
        left: auto !important; 
        top: auto !important; 
        margin: 0 -30px; 
        border-radius: 15px;
    }
    #card1 { width: 200px; height: 250px; z-index: 3; }
    #card2 { width: 170px; height: 210px; z-index: 2; }
    /* Hide lines and 3rd card on smaller tablets/mobile for cleaner layout */
    #card3, .glowing-line { display: none; } 
}

/* --- Mobile Phones (below 576px) --- */
@media (max-width: 575px) {
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-btns-container { flex-direction: column; gap: 10px; }
    .btn-teal-fill, .btn-outline-white { width: 100%; }

    .card-container { height: 350px; margin-top: 50px; }
    #card1 { width: 160px; height: 200px; }
    #card2 { width: 140px; height: 180px; margin: 0 -20px;}
}


/* .eagle-lake { font-family: 'Eagle Lake', serif; } */

/* --- Magical Pathways Section --- */
.pathways-section {
    padding: 40px 0 60px 0;
    position: relative;
    background-color: var(--white);
}

.section-title {
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 50px;
    font-family: 'Eagle Lake';

}

/* Modern Card Gateway (Glassmorphism & Background Image) */
.tour-gateway-card {
    display: flex;
    align-items: flex-end; /* Text bottom */
    justify-content: flex-start; /* Text left */
    height: 450px; /* Base height */
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    border: none;
    box-shadow: var(--tripture-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.tour-gateway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(5, 64, 64, 0.3); 
}

/* Content over background */
.tour-gateway-card .gateway-content {
    background: rgba(0, 31, 63, 0.7); /* Transparent Navy for Glass Effect */
    backdrop-filter: blur(10px); /* Modern Glass Effect */
    padding: 30px;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.tour-gateway-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Gelasio';
}

.tour-gateway-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 25px;
    font-family: 'Gelasio';
}

/* Button style from image */
.btn-gateway-light {
    background-color: #ffffff;
    color: var(--tripture-navy);
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.btn-gateway-light:hover {
    background-color: var(--secondary);
    color: #ffffff;
}

/* Icons on the card edges (matching neon aesthetic subtly) */
.gateway-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive fixes for cards */
@media (max-width: 991px) {
    .pathways-section { padding: 70px 0; }
    .tour-gateway-card { height: 350px; }
    .tour-gateway-card h3 { font-size: 1.8rem; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-btns-container { flex-direction: column; gap: 10px; }
    .btn-teal-fill, .btn-outline-white { width: 100%; }

    .card-container { height: 350px; margin-top: 50px; }
    #card1 { width: 160px; height: 200px; }
    #card2 { width: 140px; height: 180px; margin: 0 -20px;}
}


/* --- Tour Showcase Section --- */
.tour-showcase-section {
    padding: 50px 0;
    /* background-color: transparent; */
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url(./assets/bagan-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

.showcase-container {
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: var(--tripture-shadow);
    overflow: hidden; /* Prevent child elements from overflowing rounded corners */
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.showcase-section-title {
    color:var(--cream);
    font-family: 'Eagle Lake';
    font-weight: 700;
    font-size: 4rem;
}

/* --- Left Side (Main View) --- */
.main-tour-view {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.main-tour-img-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.main-tour-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Initial state for animation when image changes */
.main-tour-img.changing {
    transform: scale(1.1);
    opacity: 0;
}

/* --- Right Side (Content & Gallery) --- */
.tour-details-col {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tour-header {
    margin-bottom: 40px;
    transition: opacity 0.5s ease-in-out;
}

/* Initial state for text animation */
.tour-header.changing {
    opacity: 0;
}

.tour-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--tripture-teal);
    margin-bottom: 20px;
}

.tour-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* --- Bottom Gallery (Thumbnails) --- */
.tour-gallery {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.gallery-thumb {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    transform: translateY(-5px);
}

.gallery-thumb.active {
    border-color: var(--tripture-teal); /* Teal border for active thumb */
    transform: translateY(-5px);
}

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

/* Thumb overlay with subtle glow */
.gallery-thumb::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 204, 204, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover::after,
.gallery-thumb.active::after {
    opacity: 1;
}



/* --- Responsive Media Queries (Separated Logic for Mobile) --- */
@media (max-width: 991px) { /* Tablet */
    .tour-showcase-section { padding: 70px 0; }
    .showcase-container { border-radius: 20px; }
    
    .main-tour-view { height: 400px; } /* Set a fixed height for image */
    
    .tour-details-col { padding: 40px; }
    .tour-title { font-size: 2.3rem; }
    .tour-price { font-size: 1.3rem; }
    .tour-gallery { margin-top: 40px; }
    .showcase-section-title {
        color:var(--cream);
        font-family: 'Eagle Lake';
        font-weight: 500;
        font-size: 2rem;
}
}

@media (max-width: 575px) { /* Mobile */
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-btns-container { flex-direction: column; gap: 10px; }
    .btn-teal-fill, .btn-outline-white { width: 100%; }

    .card-container { height: 350px; margin-top: 50px; }
    #card1 { width: 160px; height: 200px; }
    #card2 { width: 140px; height: 180px; margin: 0 -20px;}
    
    .tour-showcase-section { padding: 50px 0; }
    
    .main-tour-view { height: 250px; } /* Smaller image on mobile */
    
    .tour-details-col { padding: 30px; }
    .tour-title { font-size: 1.8rem; }
    .tour-price { font-size: 1.1rem; }
    
    .tour-gallery { 
        gap: 10px; 
        margin-top: 30px;
        overflow-x: auto; /* Enable horizontal scroll for thumbs if needed */
        padding-bottom: 10px;
    }
    .gallery-thumb { 
        width: 70px; height: 70px; /* Smaller thumbs on mobile */
        border-radius: 10px;
    }
}


/* --- Features / Best Travel Experience Section --- */
.features-section {
    padding: 100px 0;
    background-color: #ffffff; /* Clean white for Minimalist trust */
}

.features-title {
    font-weight: 700;
    font-size: 2.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-title span {
    color: var(--secondary);
}

/* Minimalist Feature Card (No border, focus on icon & text space) */
.feature-item-card {
    padding: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03); /* Extremely subtle border */
    transition: all 0.3s ease;
    height: 100%; /* Equal height */
    text-align: center;
}

.feature-item-card:hover {
    background-color: #f0fdfa; /* Extremely subtle teal background hover */
    transform: translateY(-5px);
}

/* Clean Line Icons with accent color */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 204, 204, 0.1); /* Teal tinted light background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    color: var(--tripture-teal);
    font-size: 2rem;
}

.feature-item-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* Responsive for Features */
@media (max-width: 991px) {
    .features-section { padding: 70px 0; }
    .features-title { font-size: 2.3rem; }
    .feature-item-card { padding: 30px; }
}

@media (max-width:767px) {
    .features-section {
        overflow-x: hidden;
    }
}

/* Color Palette */
.text-teal {
  color: var(--secondary) !important;
}

.bg-teal {
    background-color: var(--primary) !important;
}

.bg-dark-blue {
    background-color: var(--tripture-navy) !important;
}


.accordion-button:focus {
    box-shadow: none;
}

/* Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}



/* Footer Links */
footer ul li {
    cursor: pointer;
    transition: 0.3s;
}
footer ul li:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.payment-icon img{
  height:30px;
  border-radius: 10px;
}

.map-bg {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .border-md-none {
        border: none !important;
    }
}
