@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-top: 50px; /* ✅ Adjust this value as needed */
}

h1 {
	color: #E35D40;
	font-family: "Poppins", sans-serif;
	font-size: 36px;
	padding-bottom: 10px;
}

.row-divider {
    margin-top: 20px; /* ✅ Adds spacing between rows */
	margin-bottom: 20px;
    border-bottom: 2px solid #A4BFB5; /* ✅ Adds a visible separator */
}

.col-md-6 {
    display: flex;
    justify-content: center; /* ✅ Centers horizontally */
    align-items: center; /* ✅ Centers vertically */
}


.col-md-6 h4 {
	font-size: 24px;
    color: #E35D40;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.col-md-6 p {
	font-size: 16px;
	color: #131926;
    font-weight: 400;
	font-family: 'playfair display', serif;
	margin-top: 20px;
}

.col-md-12 {
	padding-top: 10px;
	padding-left: 50px;
}

.col-md-12 h4 {
	font-size: 24px;
    color: #E35D40;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.col-md-12 p {
	font-size: 16px;
    color: #131926;
    font-weight: 400;
    font-family: 'playfair display', serif;
}

.col-12 h4 {
	font-size: 24px;
    color: #E35D40;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* 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) {
   	.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) {
    .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) {
	.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) {
	.col-md-6 h4 {
		font-size: 24px;
	}
	.col-md-6 p, li {
		font-size: 16px;
	}
}
