@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;
}
*/

h1, h2, h3, h4, h5, h6 {font-family: 'poppins', sans-serif;}

p {font-family: 'playfair-display', serif;}


/*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;
}

form {
	padding: 0 10px;
}

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Contact Section */
.contact h1 {
	color: #131926;
	text-align: center;
	font-family: Poppins;
	font-size: 70px;
	font-style: normal;
	font-weight: 400;
	line-height: 133px; /* 156.471% */
	letter-spacing: 0.5px;

}
.highlight-word {
    color: #E35D40; /* Sets the text color */
}

.container-fluid {
    padding: 40px;
}

h2 {
    color: #131926;
    font-size: 55px;
	line-height: 70px;
}

.form-group { 
	margin-bottom: 15px;
} 

.btn-primary {
  background-color: #212B40;
  border: none;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  padding: 8px 8px;
  width: 30%;
  border-radius: 8px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: 0;
  margin-top: 50px; /* 👈 Adds space between form and button */
}


.btn-primary:hover { 
	background-color: #E35D40; /* Changes button color on hover */ 
} 

.form-group.attachments {
    display: inline-flex; /* ✅ Keeps items inline */
    align-items: center;
    gap: 15px; /* ✅ Adds space between file input and button */
}

#attachments {
    visibility: hidden; /* ✅ Maintains spacing */
    width: 0; /* ✅ Prevents layout issues */
}

.custom-file-btn { 
    width: auto;
    max-width: 200px;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    background-color: #A4BFB5;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "Playfair Display", serif;
    display: inline-block;
    margin: auto;
    transition: background-color 0.3s ease;
}


.custom-file-btn:hover { 
	background-color: #212B40; /* ✅ Hover color */ 
} /* Ensures spacing looks good */ 

#file-name { 
	margin-left: 10px; 
} 

/* Apply Playfair Display to the Form */ 
form { font-family: "Playfair Display", serif; 
} /* Ensure Headings Use Playfair Display */ 

h1, h2, label { 
	font-family: "Playfair Display", serif; 
	font-size: 18px; 
} 

#timeline { 
	font-family: "Playfair Display", serif; 
	font-size: 18px; 
} 

/* Style form inputs */ 
.form-control { 
	background-color: #D9D8D7; 
	border: 1px solid #A4BFB5; 
	font-family: "Playfair Display", serif; 
	border-radius: 4px; /* ✅ Softens the edges */ 
	padding: 10px; /* Adds comfortable spacing */ 
} 

/* Style file input */ 
input[type="file"] {
	background-color: #D9D8D7; 
	border: none; 
}

footer p {
  background-color: #212B40;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;        /* ✅ prevents wrapping */
  gap: 10px;                /* ✅ spacing between text and icon */
  color: white;
  margin: 0;
  padding: 20px 12px;
  text-align: center;
}

#flowerup {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;   /* pushes it to the right */
  margin-right: 0;
}

/* Responsive Envelope Icon Sizes */
.bi-envelope-fill {
  fill: white !important;
  transition: transform 0.3s ease-in-out;
  width: 24px;
  height: 24px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  text-decoration: none;
}

/* Responsive Media Queries */
@media screen and (max-width: 1024px) {
    .contact {
        min-height: auto;
        padding: 50px 0;
    }
}

@media screen and (max-width: 350px) {
  .contact.container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  footer p {
    font-size: 13px;
    padding: 10px 6px;
    gap: 6px;
  }

  .bi-envelope-fill {
    width: 18px;
    height: 18px;
  }

  .email-link {
    margin-left: 0;
  }
}


@media screen and (min-width: 351px) and (max-width: 575px) {
  .contact h1 {
    font-size: 36px;
    line-height: 1.4;
  }

  .contact.container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  footer p {
    font-size: 15px;
    gap: 6px;
    padding: 12px 8px;
  }

  .bi-envelope-fill {
    width: 20px;
    height: 20px;
  }

  .email-link {
    margin-left: 6px;
  }
}


/* SMALL SIZE (576px) */
@media screen and (min-width: 576px) {
    form {
    padding: 0 16px;
  }
	.contact h1 {
		font-size: 40px;
		line-height: 70px; /* 156.471% */
	}
	footer p {
    font-size: 16px;
    gap: 8px;
  }
  .bi-envelope-fill {
    width: 22px;
    height: 22px;
  }
}

/* MEDIUM SIZE (768px) */
@media screen and (min-width: 768px) {
	.contact h1 {
		font-size: 45px;
		line-height: 75px; /* 156.471% */
	}
	footer p {
    font-size: 18px;
    padding: 16px 10px;
  }

  .bi-envelope-fill {
    width: 26px;
  }

  #flowerup {
    max-width: 80%;
  }
}

/* LARGE SIZE (992px) */
@media screen and (min-width: 992px) {
	.contact h1 {
		font-size: 55px;
		line-height: 75px; /* 156.471% */
	}
}