/* Override Bootstrap primary and secondary colors */
:root {
    --bs-primary: #002644;   /* Custom primary color */
    --bs-secondary: #FFA500; /* Custom secondary color */
    --bs-tertiary: #71a9f7; /* Custom secondary color */
}

/* Set custom fonts */
:root {
    --bs-font-heading: 'Barlow Condensed', serif;
    --bs-font-body: 'Montserrat', sans-serif;      
}

/* Body */
body {
    background-color: #fff;
}

/* Apply the custom fonts to headers and paragraphs */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--bs-font-heading), serif;  
}

body, p {
    font-family: var(--bs-font-body), sans-serif;  
}

/* Default rounded button appearance */
.btn-rounded {
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
}

.btn-rounded.btn-primary {
    background-color: var(--bs-primary);
    color: #fff;
}

.btn-rounded.btn-primary:hover {
    background-color: var(--bs-secondary);
    color: #000;
}

.btn-rounded.btn-secondary {
    background-color: var(--bs-secondary);
    color: #fff;
}

.btn-rounded.btn-secondary:hover {
    background-color: var(--bs-tertiary);
    color: #fff;
}

.btn-rounded.btn-outline-primary {
    color: var(--bs-primary);
}
.btn-rounded.border-primary {
    border-color: var(--bs-primary)!important;
}
.btn-rounded.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    color:#fff;
}
.btn-rounded.border-primary:hover {
    border-color: #fff;
}
.feature-icon-small {
  width: 3rem;
  height: 3rem;
}

.vh-90 {
    height: 90vh!important;
}

/* YouTube Facade */
.youtube-facade {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.youtube-facade .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-facade .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 68px;
  height: 48px;
  transition: transform 0.2s;
  z-index: 1;
}

.youtube-facade .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

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