@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 {
	display: flex;
	flex-direction: column;
}

.col-md-6 img {
    display: block;
    margin: auto; /* ✅ Centers images */
    max-width: 100%; /* ✅ Ensures responsiveness */
}

.col-md-6 {
	flex: 1; /* ✅ Ensures both sections take equal space */
    padding-left: 15px !important; /* ✅ Ensures both sections align */
    padding-right: 15px !important;
}

.col-md-6 h3 {
	font-size: 24px;
    color: #131926;
    font-weight: 400;
    font-family: 'playfair display', 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) {
    .navbar-toggler-icon {
        height: 25px;
        width: 20px;
    }
	.navbar-brand {
		max-width: 75px;
	}
	.ux-text {
		font-size: 24px;
	}
	.col-md-6 h3 {
		font-size: 20px;
	}
	.row {
        flex-direction: column !important; /* ✅ Stacks items vertically */
    }

    .col-md-6 {
        width: 100% !important; /* ✅ Makes each section full-width */
        max-width: none !important; /* ✅ Removes Bootstrap constraints */
    }
}

/* 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 h3 {
		font-size: 24px;
	}

}

/* 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 h3 {
		font-size: 24px;
	}
	.row {
        flex-direction: row !important; /* ✅ Ensures columns return to side-by-side */
    }

    .col-md-6 {
        width: auto !important; /* ✅ Restores default Bootstrap behavior */
        max-width: none !important;
    }
}


/* 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 h3 {
		font-size: 24px;
	}
	
	.row {
        flex-direction: row !important; /* ✅ Ensures columns return to side-by-side */
    }

    .col-md-6 {
        width: auto !important; /* ✅ Restores default Bootstrap behavior */
        max-width: none !important;
    }
}
