/* =========================================================
   1. Fonts
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================
   2. Root palette (your monochrome)
   ========================================================= */
:root {
  --bc-bg: #f6f7f8;
  --bc-surface: #eceff2;
  --bc-border: #c9ced3;
  --bc-text: #1b1d20;
  --bc-text-2: #3a4a5e;
  --bc-accent: #46536b;
  --bc-accent-dark: #2b3345;

  --font-body: 'Inter', sans-serif;
  --font-title: 'Cormorant Garamond', serif;
}

/* =========================================================
   3. Global reset / base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bc-bg);
  color: var(--bc-text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}

/* Make sure the video doesn't block interactions */
body > video.bg-video {
  pointer-events: none;
}

/* =========================================================
   4. Background video
   ========================================================= */
video.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%);
  z-index: 0; /* behind everything */
}

/* =========================================================
   5. Masthead (the section with "Our Website is Coming Soon")
   ========================================================= */
.masthead {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 2; /* above video */
  color: #fff;
}

.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(70,83,107, 0.55); /* dark overlay so text is readable */
  z-index: -1;
}

.masthead-content {
  position: relative;
  z-index: 3;
  padding: 3rem 1.5rem;
  max-width: 680px;
}

/* =========================================================
   6. Typography
   ========================================================= */
h1 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fff; /* in masthead context */
}

/* if you have a container-fluid as in your snippet */
.container-fluid {
  width: 100%;
  margin: 0 auto;
}

/* =========================================================
   7. Navbar
   ========================================================= */
.navbar {
  position: relative;
  z-index: 3;
  background: transparent;
  border-bottom: 1px solid rgba(246, 247, 248, 0.1);
}

.navbar-brand {
  font-family: var(--font-title);
  font-weight: 500; /* your requirement */
  color: #fff;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #fff;
}

/* =========================================================
   8. Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 247, 248, 0.3);
  background: rgba(246, 247, 248, 0.05);
  color: #fff;
  font-family: var(--font-title); /* your requirement */
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .2s ease, border-color .2s ease;
}

.btn:hover {
  background: rgba(246, 247, 248, 0.25);
  border-color: rgba(246, 247, 248, 0.6);
}

/* =========================================================
   9. Mobile / touch fallback for video
   ========================================================= */
/* On touch devices: hide video, show image, align right */
@media (pointer: coarse) and (hover: none) {
  body {
    background: url("../assets/img/jetdeau.jpg") no-repeat right center fixed;
    background-size: cover;
  }
  video.bg-video {
    display: none;
  }
  .masthead::before {
    /* keep overlay so text is readable on the image too */
    background: rgba(32, 37, 44, 0.55);
  }
}

/* =========================================================
   10. Basic spacing utility (optional)
   ========================================================= */
.mb-4 { margin-bottom: 1.5rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
@media (min-width: 992px) {
  .px-lg-0 { padding-left: 0 !important; padding-right: 0 !important; }
}







@media (max-width: 768px) {
  video.bg-video {
    object-position: right center;
  }
}

