@charset "utf-8";

/* ========== FONT DEFINITIONS ========== */
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.playfair-display-regular {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.playfair-display-bold {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.inspiration-regular {
  font-family: "Inspiration", cursive;
  font-weight: 400;
}

/* ========== COLOR VARIABLES ========== */
:root {
  --peacoat: #212B40;
  --opal: #A4BFB5;
  --gainsboro: #D9D8D7;
  --aluminum: #8C8C8C;
  --eigengrau: #131926;
  --flamingo: #E35D40;
}

/* ========== GLOBAL STYLES ========== */
body {
  font-family: "Playfair Display", serif;
  color: var(--eigengrau);
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.home_banner {
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  color: var(--eigengrau);
  margin-bottom: 10px;
}

h1 { font-size: 32px; }
h2 { font-size: 20px; }
h3, h4 { font-size: 24px; }
h5 {
  font-size: 16px;
  color: var(--aluminum);
}

p {
  font-size: 20px;
  line-height: 1.4;
  color: var(--flamingo);
  margin-bottom: 10px;
}

h3 {
  margin-bottom: 4px; /* tighten space below heading */
}

p {
  margin-top: 0;
  margin-bottom: 4px; /* reduce gap below paragraph */
}

h5 {
  margin-top: 0;
  margin-bottom: 20px; /* space below group before next h3 */
}


li {
  font-size: 20px;
  color: var(--flamingo);
}

/* Button */
.button {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  background: var(--flamingo);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
}

/* Layout */
.container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.divider {
  border: 1px solid #ccc;
  margin: 20px 0;
}

.button-container {
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
}

/* Footer */
footer {
  padding: 20px 0 20px;
  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);
}


/* ========== PROGRESS BAR STYLING ========== */
.progress {
  background-color: #E0E0E0;
  border-radius: 10px;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-bar.custom-bar {
  background-color: var(--opal);
  height: 100%;
  width: 0%; /* overridden inline */
  border-radius: 10px;
  transition: width 0.6s ease;
  color: var(--eigengrau);
  font-weight: 500;
  text-align: right;
  padding-right: 8px;
  line-height: 20px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
}

/* ========== MEDIA QUERIES ========== */
@media screen and (max-width: 992px) {
	h1 { font-size: 30px; }
  p, li { font-size: 20px; }
	 footer {
    font-size: 20px;
    padding: 18px 0;
  }
}

@media screen and (max-width: 768px) {
h1 { font-size: 28px; }
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row {
    flex-direction: column;
  }
  .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
	footer {
    font-size: 18px;
    padding: 16px 0;
  }

  .email-link svg {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 576px) {
  h2, h3, h4, p, li { font-size: 18px; }
	footer {
    font-size: 16px;
    padding: 14px 10px;
  }

  .email-link {
    margin-left: 8px;
  }

  .email-link svg {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 350px) {
	h1 { font-size: 24px; }
  h2, h3, h4, p, li { font-size: 16px; }
	 footer {
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 8px;
  }

  .email-link svg {
    width: 22px;
    height: 22px;
  }
}

@media screen and (min-width: 1200px) {
	.container-fluid {
    max-width: 1140px;
    margin: 0 auto;
  }
	}