@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Alex Brush';
  src: url('/fonts/AlexBrush-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel';
  src: url('/fonts/Cinzel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Cinzel-Bold';
  src: url('/fonts/Cinzel-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --font-lato: 'Lato', Arial, sans-serif;
  --font-alex-brush: 'Alex Brush', cursive;
  --font-coromorant-garamond: 'Cormorant Garamond', serif;
  --font-cinzel: 'Cinzel', serif;
  --font-cinzel-bold: 'Cinzel-Bold', serif;

  --emerald: #0c2b24;
  --sapphire: #1a2e58;
  --sapphire-shine: #395daa;
  --sapphire-light: #284073;
  --sapphire-dark: #0f1a33;
  --ruby: #811c1c;
  --softgold: #e9d8af;
  --ivory: #f6f5f1;
  --copper: #9a6d4b;
  --rosegold: #dcab91;
  --warm: #d9d0c2;
  --callgrey: #737373;
  --taupe: #b2a39e;

}

.lato {
  font-family: var(--font-lato);
}

.alex-brush {
  font-family: var(--font-alex-brush);
}

.coromorant-garamond {
  font-family: var(--font-coromorant-garamond);
}

.cinzel {
  font-family: var(--font-cinzel);
}

.cinzel-bold {
  font-family: var(--font-cinzel-bold);
}

body {
  font-family: var(--font-lato), serif;
  overflow-x: hidden;
}

.card-1,
.card-2 {
  background: var(--color-white);
}

.card-1 {
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
}

.card-2 {
  box-shadow: 0 3px 6px 9px rgba(0, 0, 0, 0.1);
}

.cover-logo {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}

#cover h2 {
  color: var(--color-white);
  font-size: 36pt;
  font-weight: 500;
}

.cover-image-card {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 0px 7px 3px rgba(0, 0, 0, 0.3);
  background-color: var(--color-white);
  padding: 10px;
}

.h-fill-available {
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
}

@media (min-width: 768px) {
  .md\:h-fill-available {
    height: -webkit-fill-available;
    height: -moz-available;
    height: fill-available;
  }

  .itunes-desktop {
    -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(255, 255, 255, 0.1));
    transform: perspective(800px) rotateY(25deg);
  }
}

.text-footer-gold {
  color: #b08871;
}

.text-footer-tagline {
  color: #b3af9b;
}

.hover-text-white:hover {
  color: #fff;
}

.bg-dark {
  background-color: #181818 !important;
}

.bg-primary {
  background-color: #b88a6e !important;
}

.bg-dark-semi-transparent {
  background-color: rgba(24, 24, 24, 0.5) !important;
}

.bg-dark-secondary {
  background-color: oklch(26.9% 0 0);
}

.text-xs {
  font-size: .75rem;
}

.insta-link {
  text-decoration: none;
}

@media (min-width: 576px) {
  .footer-contact-height {
    height: 137px;
  }
}

.white-text {
  color: #fff;
}

@media (min-width: 992px) {
  .nav-seperator {
    border-left: 2px solid #ccc;
  }

  .nav-link {
    padding: 0 20px !important;
  }
}

.public-content {
  min-height: calc(100vh - 169px);
}

.navbar {
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(8px);
  border-width: 3px;
  font-family: var(--font-cinzel-bold);
}

.navbar .dropdown-menu {
  background-color: rgba(0, 0, 0, 0) !important;
  font-family: var(--font-cinzel-bold);
  border: none;
}

@media (min-width: 992px) {
  .navbar .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(8px);
    font-family: var(--font-cinzel-bold);
    border: none;
  }
}

.navbar a {
  color: #fff;
  font-weight: 900;
}

.navbar a:hover {
  color: #ccc;
  text-decoration: none;
  background-color: inherit;
}

/* For the login heading if needed */
.text-primary {
  color: #dcab91 !important;
}

/* For the button */
.btn-outline-primary {
  color: #b88a6e !important;
  border-color: #b88a6e !important;
}

.btn-outline-primary:hover {
  background-color: #b88a6e !important;
  color: white !important;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-fill-available {
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.mb-50px {
  margin-bottom: 50px;
}

.relative {
  position: relative;
}

.page-padding {
  padding-top: 60px;
}

.max-w-4xl {
  max-width: 56rem;
}

.text-primary {
  color: dcab91 !important;
}

.cover-image {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.cover-image.first {
  opacity: 1;
}

.cover-gradient-overlay {
  z-index: 2;
  background-image: linear-gradient(oklab(0 0 0 / 0) 0px, oklab(0 0 0 / 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); */
  pointer-events: none;
  /* Ensure it doesn't block interactions */
}

.text-justify-center {
  text-align: justify;
}

@media (min-width: 992px) {
  .text-justify-center {
    text-align: center;
  }
}

#welcome {
  background-image: linear-gradient(oklab(0 0 0 / 0.8) 0px, rgb(0, 0, 0) 100%);
}

.wedding-services-gradient-overlay {
  background-image: linear-gradient(oklab(0 0 0 / 0.8) 0px, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  z-index: 3;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.ws-contact {
    position: absolute;
    bottom: 20px;
    margin: auto;
    width: -webkit-fill-available;
    padding-right: 20px;
}

.press-link {
  transition: transform 0.3s ease-in-out;
}

.press-link:hover {
    transform: scale(1.1);
}

.press-seperator {
  background-color: #181818;
  height: 100px;
  width: 100%;
  border-bottom-left-radius: 50% 100%; /* Or 100px 100px */
  border-bottom-right-radius: 50% 100%; /* Or 100px 100px */
}

.ebs-form input,
.ebs-form textarea,
.ebs-form select {
  background-color: oklch(0.371 0 0);
  border-color: rgb(220, 171, 145);
  color: #fff;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  padding: 10px 5px;
}

.ebs-form .form-check-input {
  height: 22px;
  width: 22px;
}

.ebs-form input::placeholder,
.ebs-form textarea::placeholder,
.ebs-form select::placeholder {
  color: #999;
  opacity: 1;
}

.ebs-form .form-check label {
  padding-left: 8px;
}

.ebs-form input:focus,
.ebs-form textarea:focus,
.ebs-form select:focus {
  background-color: oklch(0.371 0 0);
  border-color: rgb(220, 171, 145);
  color: #fff;
  outline: none;
  box-shadow: 0 0 5px rgba(220, 171, 145, 0.8);
}
.ebs-form .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(220, 171, 145, 0.8);
}
.ebs-form .form-check-input:checked {
  background-color: rgb(220, 171, 145);
  border-color: rgb(220, 171, 145);
}
.ebs-form .form-check-input:checked:hover {
  background-color: rgb(200, 151, 125);
  border-color: rgb(200, 151, 125);
}
.ebs-form textarea {
  color: #fff !important;
}
.ebs-form .input-group-text {
  border-color: rgb(200, 151, 125);
}
.ebs-form input[type="number"] {
  text-align: right;
}
.ebs-form input::-webkit-outer-spin-button,
.ebs-form input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.ebs-form input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}


#successModal .modal-header {
  border: none;
  border-bottom: solid 1px rgb(220, 171, 145);
}
#successModal .modal-footer {
  border: none;
  border-top: solid 1px rgb(220, 171, 145);
}
#successModal .modal-title {
  color: #000;
}

.ratio-container {
  position: relative;
  width: 100%;
  padding-top: 33%; /* 480:160 = 3:1 aspect ratio */
  overflow: hidden;
}

.ratio-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-grid-row {
  display: grid;
  /* Define 12 equal-width columns for the grid */
  grid-template-columns: repeat(12, 1fr);
  /* Use grid-gap to create the space between columns and rows */
  grid-gap: 1.5rem; /* This corresponds to Bootstrap's g-3 which is 1rem. You can adjust this to your liking. gy-4 is 1.5rem */
}

/* These classes define the span of the grid items */
.grid-col-4 {
  grid-column: span 4;
}

.grid-col-8 {
  grid-column: span 8;
}

/* Optional: To handle responsiveness, similar to Bootstrap's grid */
/* For medium to large screens (lg breakpoint is 992px) */
@media (max-width: 991.98px) {
  .grid-col-4,
  .grid-col-8 {
    grid-column: span 12;
  }
}
