@charset "utf-8";
/* CSS Document */

/*font group*/
/*Sans serif font for headline:
.poppins-regular {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}

.poppins-medium {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: normal;
}
*/

/*Serif font for paragrah:
.playfair-display-regular {
font-family: "Playfair Display", serif;
font-weight: 400;
font-style: normal;
}

.playfair-display-bold {
font-family: "Playfair Display", serif;
font-weight: 700;
font-style: normal;
}
*/

/*Script front for accent:
.inspiration-regular {
  font-family: "Inspiration", cursive;
  font-weight: 400;
  font-style: normal;
}
*/

/*color group*/
/*fuse.:
peacoat: #212B40
opal*: #A4BFB5
gainsboro*: #D9D8D7
aluminim*: #8C8C8C
eigengrau*: #131926
flamingo: #E35D40
*/

/* ================================
   General Layout & Typography
================================ */

.container-fluid {
  padding-top: 75px;
}

h1 {
  font-size: 70px;
  color: #E35D40;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

h5 {
  font-size: 18px;
  color: #E35D40;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

h4 {
  font-size: 24px;
  color: #E35D40; /* Flamingo */
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  padding-left: 0;
  margin-left: 0;
}

p,
li {
  font-size: 16px;
  color: #131926;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}



.row-divider {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.row-divider::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #A4BFB5;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ================================
   Column-Based Styles
================================ */

.col-md-7 h2 {
  font-size: 55px;
  color: #131926;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.col-md-7 h3 {
  font-size: 36px;
  color: #E35D40;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.col-md-12 {
  padding-top: 10px;
}

.col-md-4 h4,
.col-md-8 h4,
.col-md-12 h4 {
  font-size: 24px;
  color: #E35D40;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  padding-left: 0;
  margin-left: 0;
}

.col-xl-4 h4,
.col-xl-4 p {
  padding-left: 0;
  margin-left: 0;
}

.col-md-4 p,
.col-md-8 p,
.col-md-12 p,
li {
  font-size: 16px;
  color: #131926;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}

.col-xl-4, .col-md-4 {
	padding-bottom: 10px;
}

/* ================================
   Links
================================ */

#day a,
#journey a {
  font-size: 16px;
  color: #131926; /* Updated to accessible gray */
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  text-decoration: underline;
}

#day a:hover,
#journey a:hover {
  text-decoration: underline; /* underline on hover */
}

/* ================================
   Media (Images & Video)
================================ */

.img-fluid {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

#mumreel,
#vetidreel {
  width: 90%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 20px auto;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  cursor: auto;
  pointer-events: auto;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

#mumreel:hover,
#vetidreel:hover {
  transform: none;
}

#vetidreel {
  max-height: 600px !important;
  object-fit: contain;
}

/* ================================
   Lists
================================ */

.solid-bullets {
  list-style-type: disc;
}

.open-circle-bullets {
  list-style-type: circle;
}

/* ================================
   Footer
================================ */

footer {
  padding: 20px 0;
  background-color: var(--peacoat);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
}

.email-link {
  margin-left: 10px;
  display: inline-block;
  text-decoration: none;
}

.bi-envelope-fill {
  fill: white;
  transition: transform 0.3s ease-in-out;
}

.email-link:hover .bi-envelope-fill {
  transform: scale(1.1);
}

/* ================================
   Responsive: Small Screens (≤575px)
================================ */

@media screen and (max-width: 575.98px) {
  #day,
  #journey,
  .col-md-4,
  .col-md-8 {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  #day > p,
  #journey > p,
  .col-md-4 > p:first-child,
  .col-md-8 > h4 {
    padding: 0;
    margin-bottom: 10px;
  }

  .col-md-4 h4,
  .col-md-8 h4,
  .col-md-12 h4 {
    padding-left: 0;
    margin-left: 0;
  }

  .solid-bullets,
  .solid-bullets li {
    padding-left: 20px;
  }

  #mumreel {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 20px 0;
  }

  #day img,
  #journey img,
  .col-md-4 img {
    width: 100%;

    height: auto;
    display: block;
    margin: 0 auto;
  }
}

/* ================================
   Responsive: Medium and Up
================================ */

@media screen and (min-width: 576px) {
  .col-md-4 h4,
  .col-md-8 h4,
  .col-md-12 h4 {
    font-size: 24px;
    padding-left: 0;
    margin-left: 0;
  }

  .col-md-4 p,
  .col-md-8 p,
  .col-md-12 p,
  li {
    font-size: 16px;
  }
}
