/* ADD YOUR CUSTOM CSS TO THIS FILE BELOW */
/* ---------- ROOT VARIABLES ---------- */
:root {
  --sage: #9fb89b;           /* modern sage green */
  --sage-dark: #6e8c69;      /* deeper olive tone */
  --sand: #e8e3d4;           /* muted beige highlight */
  --cream: #f9f9f7;          /* near-white background */
  --charcoal: #2f2f2f;       /* text color */
  --white: #ffffff;
}

/* ---------- BASE STYLES ---------- */
html, body {
  scroll-behavior: smooth;
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

section {
  padding: 5rem 0;
}

/* ---------- NAVBAR ---------- */
.navbar {
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--sage-dark) !important;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: var(--charcoal) !important;
  margin: 0 0.6rem;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--sage-dark) !important;
  opacity: 0.8;
}

/* ---------- NAVBAR LOGO ---------- */
.brand-logo {
  height: 60px;                 /* adjust size as needed */
  width: auto;
  transition: opacity 0.3s ease;
}

.brand-logo:hover {
  opacity: 0.7;                 /* subtle fade on hover */
}

/* ---------- DROPDOWN MENU ---------- */
.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
  color: var(--charcoal);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--sage-light) !important;
  color: var(--sage-dark) !important;
}

/* Remove Bootstrap blue for active/selected dropdown item */
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--sage-light) !important;
  color: var(--sage-dark) !important;
}


/* ---------- HERO SECTIONS ---------- */
header {
  position: relative;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(52, 66, 54, 0.35); /* soft sage overlay */
  z-index: 0;
}

header .container {
  position: relative;
  z-index: 1;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2.8rem;
  letter-spacing: 0.5px;
}

header p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

/* ---------- HEADINGS ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--sage-dark);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ---------- HERO OVERLAY STYLE ---------- */
header.hero {
  position: relative;
  color: #fff;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

header.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.25)
  );
}

header.hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

header.hero h1 {
  font-weight: 600;
}

header.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background-color: var(--sage);
  border: none;
  color: var(--white);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--sage-dark) !important;
  border-color: var(--sage-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: none !important;
  outline: none !important;
}

/* Outline Style (See More Buttons) */
.btn-outline-primary {
  border: 2px solid var(--sage-dark) !important;
  color: var(--sage-dark) !important;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

/* Hover + Focus + Active states */
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.focus {
  background-color: var(--sage-dark) !important;
  color: var(--white) !important;
  border-color: var(--sage-dark) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ---------- NEXT STOP BUTTONS ---------- */
.btn-primary.btn-lg {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  background-color: var(--sage);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary.btn-lg:hover {
  background-color: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-outline-primary.btn-lg {
  border: 2px solid var(--sage-dark);
  color: var(--sage-dark);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-primary.btn-lg:hover {
  background-color: var(--sage-dark);
  color: var(--white);
}

/* ---------- CARDS ---------- */
.card {
  border: none;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.card-title {
  color: var(--sage-dark);
  font-weight: 600;
}

/* ---------- GALLERY ---------- */
.gallery-img {
  width: 100%;
  height: 550px;              /* uniform image height */
  object-fit: cover;          /* crops without distortion */
  border-radius: 12px;
  margin-bottom: 1.25rem;     /* spacing between stacked images */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Adjust Bootstrap gutter spacing in gallery rows */
#gallery .row,
section .row.g-4 {
  --bs-gutter-x: 2rem;     /* horizontal spacing */
  --bs-gutter-y: 1.25rem;     /* vertical spacing */
}

.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- CAROUSEL CUSTOMIZATION ---------- */
#london-carousel {
  background-color: var(--cream);
}

.carousel-inner img {
  height: 650px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 1s ease-in-out;
}

.carousel-item {
  transition: opacity 1s ease-in-out;
}

.carousel-caption {
  background: rgba(47, 47, 47, 0.55);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-weight: 300;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--sage-dark);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%) brightness(120%);
}


#paris-videos video, 
#paris-videos iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ---------- ACCORDION ---------- */
.accordion-button {
  background-color: var(--cream);
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--sand);
  color: var(--charcoal);
}

.accordion-body ul {
  list-style-type: "🌿 ";
  padding-left: 1.5rem;
}

/* ---------- FORMS (Modern Sage Style) ---------- */
form input,
form textarea {
  border-radius: 10px;
  border: 1.5px solid #ccc;
  padding: 12px 14px;
  background-color: var(--white);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: none;
}

form input::placeholder,
form textarea::placeholder {
  color: #999;
  font-weight: 300;
}

/* Hover — slight lift */
form input:hover,
form textarea:hover {
  border-color: var(--sage);
}

/* Focus — sage highlight, no Bootstrap blue outline */
form input:focus,
form textarea:focus {
  outline: none !important;
  border-color: var(--sage-dark) !important;
  box-shadow: 0 0 0 3px rgba(159, 184, 155, 0.3) !important; /* subtle sage glow */
  background-color: #fefefe;
}

/* Active or filled state */
form input:active,
form textarea:active {
  border-color: var(--sage-dark);
  box-shadow: none !important;
}

/* Remove Bootstrap validation blue ring */
.form-control:focus {
  border-color: var(--sage-dark) !important;
  box-shadow: 0 0 0 3px rgba(159, 184, 155, 0.3) !important;
}

/* Submit button styling consistency */
form button[type="submit"] {
  background-color: var(--sage);
  border: none;
  color: var(--white);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

form button[type="submit"]:hover,
form button[type="submit"]:focus {
  background-color: var(--sage-dark);
  box-shadow: none;
  outline: none;
}


/* ---------- FOOTER ---------- */
footer {
  background-color: var(--sage-dark);
  color: var(--white);
  padding: 2rem 0;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ---------- LINKS ---------- */
a {
  color: var(--sage-dark);
  text-decoration: none;
}

a:hover {
  color: var(--sage);
}

/* ---------- IMAGE STYLING ---------- */
img {
  max-width: 100%;
  border-radius: 8px;
}

/* ---------- UTILITIES ---------- */
.text-center p.lead {
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  section {
    padding: 3.5rem 0;
  }
}

section:not(:last-of-type) {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ===== MOBILE COMPATIBILITY FIXES (NO STYLE CHANGES) ===== */

/* Large tablets & small laptops */
@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
  header h1 {
    font-size: 2.3rem;
  }
}

/* Tablets & large phones */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  body, html {
    overflow-x: hidden;
  }

  /* Gallery images scale properly */
  .gallery-img {
    width: 100%;
    height: 300px; /* proportional, scaled-down version of your 550px */
  }

  /* Carousel height adjusts */
  .carousel-inner img {
    height: 350px;
  }

  /* Section spacing slightly reduced */
  section {
    padding: 3.5rem 0;
  }

  /* Hero text adjusts */
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
}

/* Small phones */
@media (max-width: 480px) {

  /* Even smaller hero text */
  header h1 {
    font-size: 1.7rem;
  }

  /* Gallery even more mobile-friendly */
  .gallery-img {
    height: 220px;
  }

  /* Carousel shrink */
  .carousel-inner img {
    height: 250px;
  }

  /* Reduce padding further */
  section {
    padding: 3rem 0;
  }

  /* Brand logo slightly smaller */
  .brand-logo {
    height: 45px;
  }
}

/* ---------- HERO TEXT ENHANCEMENT (READABILITY) ---------- */
header h1,
header p {
  text-shadow:
    0 0 4px rgba(255,255,255,0.60),
    0 0 8px rgba(255,255,255,0.45),
    0 1px 3px rgba(0,0,0,0.35);
  -webkit-text-stroke: 0.6px rgba(255,255,255,0.45);
}

/* Unified hero overlay */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 0;
}

.airbnb-wrapper {
  width: 100%;
  max-width: 700px; /* you can increase if desired */
  margin: 0 auto;
}

.airbnb-embed-frame {
  width: 100% !important;
  height: 100px !important;
  min-height: 480px; /* adjust as needed */
  border-radius: 1px;
  overflow: visible !important;
}

/* Mobile scaling */
@media (max-width: 768px) {
  .airbnb-embed-frame {
    min-height: 520px; /* adjust if needed */
  }
}

@media (max-width: 480px) {
  .airbnb-embed-frame {
    min-height: 560px; /* extra height for small screens */
  }
}

