/* =====================================
   1. ROOT & GLOBAL
   ===================================== */
:root {
    --gold: #c89b3c;
    --dark: #1c1208;
    --brown: #3b2412;
    --white: #ffffff;
}

body {
    background: linear-gradient(135deg, #1c130a 0%, #3b2412 50%, #1c130a 100%);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    padding-top: 100px; /* Top bar နဲ့ Navbar အမြင့်အတွက် */
}

/* =====================================
   2. TOP BAR
   ===================================== */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  transition: top 0.3s ease-in-out; /* Smooth transition */
}
.top-contact a { color: #fff; margin-right: 20px; text-decoration: none; }
.top-social { display: flex; justify-content: flex-end; gap: 10px; }
.top-social a { color: #fff; }

/* =====================================
   3. NAVBAR (Sticky, Glass & Logo Fix)
   ===================================== */
.navbar {
    position: sticky !important; 
    top: 0px ;
    overflow: hidden; 
    width: 100% !important;
  width: 100%;
  transition: top 0.3s ease-in-out; /* Smooth transition */
 
    padding: 5px 0 !important;
    background: rgba(12, 8, 6, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--gold) !important;
}

/* Logo Size Fix */
.navbar-brand img {
    width: 45px !important; 
    height: 45px !important; 
    object-fit: cover !important;
    border-radius: 50% !important;
}

.navbar .nav-link {
    font-size: 13px !important;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px !important;
    text-align: center;
    min-width: 80px; /* အားလုံးတူညီသော အကျယ်ရစေရန် */
    transition: 0.3s;
}

/* မူလ Icon ပုံစံမှာ Transition အရင်ထည့်ပေးပါ (Animation ညင်သာစေရန်) */
.navbar .nav-link i {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
    color: var(--gold-primary) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* နူးညံ့စွာ လှုပ်ရှားရန် */
}
/* Mouse တင် (Hover) လိုက်သောအခါ ဖြစ်ပေါ်မည့် အကျိုးသက်ရောက်မှု */
.navbar .nav-link:hover i {
    color: var(--gold-light) !important;
    text-shadow: 0 0 15px var(--gold-primary), 0 0 20px var(--gold-primary); /* ရွှေရောင် တောက်ပလာမည် */
    transform: translateY(-2px);
}

.navbar .nav-link:hover {
    color: var(--gold-light) !important;
}
/* စာသားအတွက် */
.navbar .nav-link span {
    display: block;
    line-height: 1.2;
}
/* Logo ဘေးက စာသားများကို Layout ချိန်ခြင်း */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px; /* Logo နဲ့ စာသားကြားက အကွာအဝေး */
}

.brand-text {
    display: flex;
    flex-direction: column; /* စာနှစ်ကြောင်းကို အပေါ်အောက် ထားခြင်း */
    justify-content: center;
}

.brand-title {
    font-size: 24px;       /* စာလုံးအကြီး */
    font-weight: 800;
    color: #c89b3c !important; /* ရွှေရောင် */
    line-height: 1;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 10px;       /* စာလုံးအသေး */
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;  /* စာလုံးကြားက အကွာအဝေး */
    margin-top: 2px;
}


/* =====================================
   4. CARDS & HOVER EFFECTS
   ===================================== */
.membership-card, .service-card, .plan-card {
    background: #1c1208;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}
.membership-card:hover, .service-card:hover, .plan-card:hover {
    border: 1px solid var(--gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    background: #2b1d0d;
}


/* =========================================
   LUXURY FOOTER STYLES
   ========================================= */
.footer-luxury {
    background: #050302; /* အပေါ်က Premium အနက်ရောင်နဲ့ လိုက်ဖက်အောင် */
    border-top: 1px solid rgba(212, 175, 55, 0.15); /* ရွှေရောင်လိုင်းပါးပါးလေး */
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-top: auto;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #888888;
    line-height: 1.8;
}

.footer-heading {
    color: #ebd197;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact a, 
.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-contact a i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.footer-contact a:hover, 
.footer-links a:hover {
    color: #ebd197;
    transform: translateX(5px); /* Mouse တင်လျှင် ညာဘက်သို့ အနည်းငယ်ရွေ့သွားရန် */
}

.social-icons-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons-wrapper a:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: translateY(-3px); /* Mouse တင်လျှင် အပေါ်သို့ အနည်းငယ်ကြွတက်ရန် */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    font-size: 0.85rem;
}

.text-gold-accent {
    color: #d4af37;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Mobile */

@media(max-width:768px){
  
  .footer-top{
    flex-direction:column;
    text-align:center;
  }
  
  .footer-contact{
    align-items:center;
  }
  
  .footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:10px;
  }
  
  .footer-links{
    justify-content:center;
  }
}


/* MOBILE & TABLET */
@media (max-width: 991px){
  
  .brand-title{
    font-size:22px;
  }
  
  .navbar-brand img{
    width:55px;
    height:55px;
  }
  
  .nav-link{
    flex-direction:row;
    justify-content:flex-start;
    gap:10px;
    padding:10px 15px !important;
  }
  
  .hero-content h1,
  .hero-luxury h1{
    font-size:36px;
  }
  
  .hero p,
  .hero-luxury p{
    font-size:16px;
  }
  
  .section-title{
    font-size:28px;
  }
}

@media (max-width: 576px){
  
  .brand-title{
    font-size:18px;
  }
  
  .hero-content h1,
  .hero-luxury h1{
    font-size:28px;
  }
  
  .section-title{
    font-size:24px;
  }
  
  .service-card{
    padding:20px;
  }
}

/*                //////////////////////////                                  */
/* Card */
.travel-card {
  background: #fff;
  border: 1px solid #fde4cf;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.travel-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Image Section */
.card-image {
  position: relative;
  height: 18rem;
  overflow: hidden;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-card:hover .card-image img {
  transform: scale(1.1);
}

/* Gradient Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
                rgba(0,0,0,0)
  );
}

/* Price Badge */
.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #ff5722;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
