/* GENERAL STYLING */
:root {
  --primary-brown: #7a4a28;
  --secondary-brown: #c49a6c;
  --light-beige: #fbf7f2;
  --dark-brown: #4d342e;
  --accent-gold: #e3a36b;
  --light-gold: #ffe6b3;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(135deg, #fdf6f0, #fff1e0); /* premium gradient */
  color: var(--dark-brown);
  margin: 0;
  padding-top: 70px; /* offset for fixed navbar */
}

h1,
h2,
h3,
h4,
.navbar-brand,
.display-4 {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: linear-gradient(90deg, var(--primary-brown) 80%, var(--secondary-brown) 100%) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  min-height: 70px;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: #fff !important;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  margin: 0 0.2rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--light-gold);
  color: var(--primary-brown) !important;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--light-gold);
}

@media (max-width: 992px) {
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}

.hero-carousel {
  height: calc(100vh - 70px);
  min-height: 400px;
}

.hero-carousel .carousel-inner {
  height: 100%;
}

.hero-carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.hero-carousel img,
.carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay text centered */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10;
  padding: 0 15px;
  width: 100%;
  max-width: 900px;
  pointer-events: none;
}

.hero-text h1,
.hero-text p,
.hero-text .btn {
  pointer-events: auto;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-text .btn {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  padding: 0.75rem 1.5rem;
}

.hero-premium-highlight {
  font-size: 1.05rem;
  color: var(--light-gold);
  font-weight: 500;
  display: block;
  margin-top: 0.5em;
  text-shadow: 0 2px 8px var(--primary-brown);
}

/* Overlay background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  pointer-events: none;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  z-index: 15;
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-size: 100% 100%;
  filter: invert(1);
}

/* SECTION TITLES */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-brown);
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-brown) 100%);
  border-radius: 3px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* PACKAGES SECTION */
#packages {
  padding: 4rem 0;
}

/* PREMIUM CARD */
.card-premium {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(135deg, #fffbe6 0%, #ffe6b3 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(122, 74, 40, 0.2);
}

.badge-premium {
  background: linear-gradient(90deg, #ffd77a 0%, var(--accent-gold) 100%);
  color: var(--primary-brown);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.4em 1.2em;
  margin-bottom: 1.2em;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card-title i {
  font-size: 1.6rem;
}

.card-body {
  padding: 1.5rem;
}

.card-body h6 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.list-premium {
  margin-bottom: 2rem;
}

.list-premium li {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  color: var(--dark-brown);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.list-premium li i {
  color: #28a745;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* BUTTONS */
.btn-warning {
  background: linear-gradient(90deg, #ffda8e 0%, #e3a36b 100%);
  border: none;
  color: var(--dark-brown);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(194, 154, 108, 0.3);
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(194, 154, 108, 0.4);
  color: var(--dark-brown);
}

.btn-outline-brown {
  color: var(--primary-brown);
  border: 2px solid var(--primary-brown);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-brown:hover,
.btn-outline-brown:focus {
  background-color: var(--primary-brown);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(122, 74, 40, 0.3);
}

/* CARDS */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(122, 74, 40, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(122, 74, 40, 0.15);
}

.card-text {
  font-size: 0.95rem;
  color: #5c4033;
  line-height: 1.6;
}

/* ====================== CONTACT PAGE ====================== */
body.contact-page {
  background: linear-gradient(135deg, #7a4a28, #c49a6c); /* medium brown gradient */
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
}

/* FLEX WRAPPER FOR CONTACT SECTIONS */
.contact-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

/* LEFT CONTACT INFO CARD */
.contact-info-card {
  background: linear-gradient(145deg, #c49a6c, #e3a36b); /* lighter brown */
  border: 2px solid var(--accent-gold);
  border-radius: 1.5rem;
  padding: 2rem;
  min-width: 280px;
  flex: 1;
  box-shadow: 0 15px 40px rgba(122, 74, 40, 0.25);
  color: var(--dark-brown);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-card h3 {
  color: var(--primary-brown);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 1rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.contact-info-card i {
  color: var(--primary-brown);
  margin-right: 0.5rem;
}

/* RIGHT CONTACT FORM CARD */
.contact-card {
  background: linear-gradient(145deg, #c49a6c, #e3a36b); /* lighter brown */
  border: 2px solid var(--accent-gold);
  border-radius: 1.5rem;
  padding: 2rem;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 15px 40px rgba(122, 74, 40, 0.25);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(122, 74, 40, 0.3);
}

.contact-card label {
  font-weight: 600;
  color: var(--primary-brown);
  font-size: 1rem;
}

.contact-card input.form-control,
.contact-card textarea.form-control {
  border-radius: 12px;
  border: 1px solid var(--secondary-brown);
  background: #fff1e0;
  padding: 0.75rem 1rem;
  color: var(--dark-brown);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-card input.form-control::placeholder,
.contact-card textarea.form-control::placeholder {
  color: #7a4a28;
}

.contact-card input.form-control:focus,
.contact-card textarea.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(227, 163, 107, 0.5);
  background: #fff7f0;
  outline: none;
}

.contact-card .input-group-text {
  background: var(--primary-brown);
  color: #fff;
  border-radius: 12px 0 0 12px;
  border: none;
}

/* BUTTON */
.contact-card button.btn-warning {
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-brown) 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 1.8rem;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(227, 163, 107, 0.5);
  transition: all 0.3s ease;
}

.contact-card button.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(227, 163, 107, 0.6);
  background: linear-gradient(90deg, var(--primary-brown) 0%, var(--accent-gold) 100%);
  color: #fff;
}

/* CONTACT LINKS */
.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: var(--dark-brown);
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-card,
  .contact-info-card {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-card button.btn-warning {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* ====================== ABOUT PAGE ====================== */
body.about-page {
  background: linear-gradient(135deg, #fbf7f2, #fff1e0); /* soft beige gradient */
  color: var(--dark-brown);
  font-family: "Inter", Arial, sans-serif;
}

/* ====================== HERO ====================== */
.about-hero {
  position: relative;
  height: 70vh; /* increased for more impact */
  background: url('../image/D6.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 47, 47, 0.55); /* dark overlay for text visibility */
  backdrop-filter: blur(2px);
}

.about-hero h1 {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
  margin-bottom: 1rem;
}

.about-hero p {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ====================== LIST STYLE ====================== */
.list-premium {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.list-premium li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--dark-brown);
  line-height: 1.6;
}

.list-premium li i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* ====================== VISION SECTION ====================== */
.vision-section {
  background: linear-gradient(145deg, var(--primary-brown), var(--secondary-brown));
  color: #fff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  margin: 3rem 0;
}

.vision-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--light-gold);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.vision-section p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
  .about-hero {
    height: 60vh;
  }
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .about-hero p {
    font-size: 1.1rem;
  }
  .vision-section {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 50vh;
    padding: 0 1rem;
  }
  .about-hero h1 {
    font-size: 1.8rem;
  }
  .about-hero p {
    font-size: 1rem;
  }
  .vision-section {
    padding: 1.5rem 1rem;
  }
}

/* FOOTER */
footer {
  font-size: 1rem;
  background: linear-gradient(90deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
  border-top: 3px solid var(--accent-gold);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--light-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #fff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--light-gold);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--light-gold);
  color: var(--primary-brown);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 1050;
  transition: all 0.3s ease;
  animation: whatsapp-pop 1s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
  color: #fff;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

@keyframes whatsapp-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 65px;
  }
  
  .hero-carousel {
    height: calc(100vh - 65px);
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 60vh;
    min-height: 350px;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .list-premium li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }
  
  .hero-carousel {
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-text {
    width: 90%;
  }
  
  .hero-text h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .hero-text .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* PACKAGE CARDS */
.package-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card .card-body {
  padding: 1rem;
}

.package-card .card-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.package-card h6 {
  font-weight: 600;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* Premium More Button */
.package-card .btn {
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1.2rem;
  border: 2px solid #b68b48; /* elegant gold border */
  background: linear-gradient(135deg, #fdf5e6, #f8e1a1); /* subtle gold gradient */
  color: #5c4327; /* rich brown text */
  transition: all 0.35s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.package-card .btn:hover {
  background: linear-gradient(135deg, #b68b48, #8c6a2e); /* deep gold gradient */
  border-color: #8c6a2e;
  color: #fff;
  box-shadow: 0 6px 18px rgba(182, 139, 72, 0.35);
  transform: translateY(-3px);
}

/* ====================== LOGO STYLING ====================== */
.navbar-brand img {
  height: 50px;               /* default logo height */
  width: auto;                /* keep aspect ratio */
  object-fit: contain;        /* prevents distortion */
  margin-right: 10px;         /* spacing between logo and text */
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);     /* subtle hover effect */
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;             /* smaller logo for tablets/mobiles */
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 35px;             /* even smaller for very small screens */
  }
}
