body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #fdfbf8;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: #2a2a2a;
}

a {
  text-decoration: none;
  color: #004682;
}

.button {
  display: inline-block;
  background-color: #be965a;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #a47e45;
}

/* Hero styling */
.hero {
  padding: 6rem 1rem;
  position: relative;
}

.hero-image {
  background-image: url('/images/elegant-man-entering-hotel-lobby-2025-01-29-09-02-05-utc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* subtle dark overlay */
  z-index: 1;
}

.hero-image .container {
  position: relative;
  z-index: 2;
}

.hero-image h1,
.hero-image p {
  color: white;
}
.hero-light {
  background-color: #fdfaf5;
}


/* Features and About */
.card {
  background-color: #fff;
  border-radius: 20px;
}

.testimonials {
  background: #f5f0ea;
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-down arrow */
.scroll-down {
  position: absolute;
  bottom: 30px;
  font-size: 2rem;
  animation: bounce 2s infinite;
  z-index: 2;
  color: white;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Scroll-triggered fade-in */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.founder-section .row {
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .founder-section .row {
    flex-direction: row;
  }
}

.founder-section img {
  max-width: 100%;
  height: auto;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .fade-in-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Footer (optional) */
.footer {
  background-color: #f3f3f3;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
.text-brown {
  color: #be965a;
}

.card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #be965a;
  font-weight: bold;
}

/* Boutique Header Styling */
.header {
  background-color: white;
  border-bottom: 1px solid #eee;
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: bold;
  color: #2a2a2a;
}

nav a {
  margin-left: 1.5rem;
  font-weight: 500;
  color: #2a2a2a;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #be965a;
  text-decoration: none;
  border-bottom: 2px solid #be965a;
  padding-bottom: 2px;
}

nav .button,
nav .login-button {
  margin-left: 1.5rem;
}

/* Optional - Mobile tweaks */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a,
  nav .button,
  nav .login-button {
    display: block;
    margin: 0.5rem 0;
  }
}
select.form-select,
input.form-control {
  color: white;
}

select.form-select option {
  color: black;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* white icon on date picker */
}

