@charset "utf-8";

/* Color Variables */
:root {
  --peacoat: #212B40;
  --opal: #A4BFB5;
  --gainsboro: #D9D8D7;
  --aluminum: #8C8C8C;
  --eigengrau: #131926;
  --flamingo: #E35D40;
}

/* ------------------------------
   Fonts
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
p {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}
.inspiration {
  font-family: 'Inspiration', cursive;
  font-weight: 400;
}

/* ------------------------------
   Section Headings (h2)
   Unified style for .me and .values
------------------------------ */
.me h2,
.values h2 {
  color: #131926;
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* ------------------------------
   Navbar
------------------------------ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items to the left */
  height: 80px;
  box-shadow: 0px 2px 4px rgba(33, 43, 64, 0.3);
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-brand {
  max-width: 150px;
  display: flex;
  align-items: center;
  margin-right: 10px; /* Space between logo and icon */
}

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.25rem 0.75rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23212B40' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* ------------------------------
   Sections
------------------------------ */
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #212B40;
  min-height: 100vh;
  text-align: center;
	margin-bottom: 0;
}

.home h1 {
  color: white;
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.magic-word {
  color: #E35D40;
}

.me {
  padding: 100px 20px;
  background-color: white;
}
.me h1 {
  color: #212B40;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 0.5px;
}
.me h2 {
  color: #131926;
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 0.5px;
}

.values {
  background-color: #A4BFB5;
  padding: 100px 20px 0px 20px;
  text-align: left;
}

.values h1 {
  color: #212B40;
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 40px;
}
.values h2 {
  color: #131926;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.4;
}

/* ------------------------------
   Footer Section: Flower + Strip
------------------------------ */

/* Opal background behind flower */
.col-12.foot {
  background-color: #A4BFB5; /* Opal */
  padding: 0;
  margin: 0;
  border-top: none;
}

.col-12.foot::before {
  content: none !important;
}

/* Flower image sizing and alignment */
#flowerup {
  max-width: 40%;
  height: auto;
  display: block;
  margin-left: auto;
  padding: 0;
}

/* Footer strip below */
footer {
  padding: 0;
  background-color: #212B40; /* peacoat */
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 2.4;
  text-align: center;
  margin: 0;
  border: none;
}

footer p{
	padding-top: 10px;
}

/* Email icon link */
.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);
}

/* ------------------------------
   Responsive Media Queries
------------------------------ */

/* XS: Max 350px */
@media screen and (max-width: 350px) {
  .home h1,
  .me h1,
  .values h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  .me h2,
  .values h2 {
    font-size: 16px;
    line-height: 1.4;
  }
  .img-fluid {
    width: 80%;
  }
	footer {
    font-size: 14px;
    padding: 12px 8px;
  }

  .email-link svg {
    width: 22px;
    height: 22px;
  }
}

/* SM: Max 576px */
@media screen and (max-width: 576px) {
  .home h1,
  .me h1,
  .values h1 {
    font-size: 32px;
  }
  .me h2,
  .values h2 {
    font-size: 18px;
  }
  .img-fluid {
    width: 75%;
  }
	footer {
    font-size: 16px;
    padding: 14px 10px;
  }

  .email-link {
    margin-left: 8px;
  }

  .email-link svg {
    width: 24px;
    height: 24px;
  }
}

/* MD: Max 768px */
@media screen and (max-width: 768px) {
  .home h1,
  .me h1,
  .values h1 {
    font-size: 38px;
  }
  .me h2,
  .values h2 {
    font-size: 20px;
  }
  .img-fluid {
    width: 70%;
  }
  .me,
  .values {
    text-align: left;
    padding: 60px 20px;
  }
	footer {
    font-size: 18px;
    padding: 0px 12px;
  }

  .email-link svg {
    width: 26px;
    height: 26px;
  }
}

/* LG: Min 992px */
@media screen and (min-width: 992px) {
  .home h1,
  .me h1,
  .values h1 {
    font-size: 60px;
  }
  .me h2,
  .values h2 {
    font-size: 36px;
  }
  .img-fluid {
    width: 100%;
  }
  .me,
  .values {
    text-align: left;
    padding: 100px 20px;
  }
	footer {
    font-size: 24px;
    padding: 0px 0;
  }

  .email-link svg {
    width: 30px;
    height: 30px;
  }
}

/* Global Smooth Scroll */
html {
  scroll-behavior: smooth;
}
.foot {
}
