@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
*/

.container-fluid {
	padding-left: 0 !important;
  	padding-right: 0 !important;
	padding-top: 50px; /* ✅ Adjust this value as needed */
}

h1 {
	color: #E35D40;
	font-family: "Poppins", sans-serif;
	font-size: 36px;
	padding-bottom: 10px;
}

    /* Ensure the body stretches to full viewport height with a flex layout */
    body {
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    
    /* The content area will expand to fill the space, pushing the footer down */
    .content {
      flex: 1;
      margin-bottom: 60px; /* add space so content does not overlap the fixed footer */
    }

    /* Restore the carousel control icons to their usual white color */
    .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-width='1.25' fill='none' d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-width='1.25' fill='none' d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


    /* Slide content styling: align image with caption horizontally */
    .slide-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .slide-content img {
      width: 50%;
      height: auto;
      padding-left: 20px; /* left padding for the image */
    }
    .side-caption {
      width: 50%;
      padding-left: 20px; /* space between image and caption */
      text-align: left;
      position: static; /* override bootstrap's default .carousel-caption positioning */
    }
    h5 {
      font-size: 24px;
      color: #131926;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
    }
    p {
      font-size: 16px;
      color: #131926;
      font-weight: 500;
      font-family: 'Playfair Display', serif;
      margin-top: 20px;
    }

    /* Footer */
footer {
  padding: 20px 0 20px;
  background-color: #212B40;
  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);
}

.img-fluid {
	display: block;
	margin-left: auto;
}



/* Responsive Media Queries */
/* SMALL SIZE ONLY (350px) */
@media screen and (min-width: 350px) {
    .navbar-toggler-icon {
        height: 25px;
        width: 20px;
    }
	.navbar-brand {
		max-width: 75px;
	}
	.ux-text {
		font-size: 24px;
	}
	.col-md-6 h4 {
		font-size: 20px;
	}
	.col-md-6 p, li {
		font-size: 16px;
		padding-left: 10px;
	}
}

/* MEDIUM SIZE (576px) */
@media screen and (min-width: 576px) {
    .navbar-toggler-icon {
        height: 30px;
        width: 25px;
    }
	.navbar-brand {
		max-width: 90px;
	}
	.ux-text {
		font-size: 30px;
	}
	.col-md-6 h4 {
		font-size: 24px;
	}
	.col-md-6 p, li {
		font-size: 16px;
		padding-left: 10px;
	}
}

/* X-SMALL SIZE (768px) */
@media screen and (min-width: 768px) {
	.navbar-toggler-icon {
    height: 35px; /* ✅ Maintains button size */
    width: 30px; /* ✅ Base width */
    max-width: 4vw; /* ✅ Allows responsive scaling */
	}
	.navbar-brand {
		max-width: 100px;
	}
	.ux-text {
		font-size: 36px;
	}
	.col-md-6 h4 {
		font-size: 24px;
	}
	.col-md-6 p, li {
		font-size: 16px;
		padding-left: 10px;
	}
}


/* LARGE SIZE (992px) */
@media screen and (min-width: 992px) {
	.navbar-toggler-icon {
        height: 40px;
        width: 35px;
    }
	.navbar-brand {
		max-width: 125px;
	}
	.ux-text {
		font-size: 36px;
	}
	.col-md-6 h4 {
		font-size: 24px;
	}
	.col-md-6 p, li {
		font-size: 16px;
	}
}
