@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;
}

p {
	font-size: 24px;
    color: #E35D40;
	font-weight: 400;
	font-family: 'playfair display', serif;
}

h5 {
	font-size: 36px;
	color: #131926;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}

.btn-primary {
    font-family: 'playfair display', serif;
	background-color: #212B40!important; /* ✅ Sets button fill */
    color: white !important; /* ✅ Changes text color */
    border-color: #212B40 !important; /* ✅ Matches background */
	font-size: 16px;
	font-weight: 500;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #8C8C8C !important; /* ✅ Slightly darker hover effect */
    color: #131926 !important;
	border-color: #8C8C8C !important; /* ✅ Matches background */
}

/* 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) {
	.card h5 {
		font-size: 20px;
	}
	.card p {
		font-size: 16px;
	}
	.btn-primary {
		font-size: 12px;
	}
}

/* MEDIUM SIZE (576px) */
@media screen and (min-width: 576px) {
    .card h5 {
		font-size: 24px;
	}
	.card p {
		font-size: 18px;
	}
	.btn-primary {
		font-size: 12px;
	}
}

/* X-SMALL SIZE (768px) */
@media screen and (min-width: 768px) {
	.card h5 {
		font-size: 28px;
	}
	.card p {
		font-size: 20px;
	}
	.btn-primary {
		font-size: 14px;
	}
}


/* LARGE SIZE (992px) */
@media screen and (min-width: 992px) {
	.card h5 {
		font-size: 32px;
	}
	.card p {
		font-size: 22px;
	}
	.btn-primary {
		font-size: 14px;
	}
}
