@charset "utf-8";

/* Font Group */
.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 Group */
:root {
  --peacoat: #212B40;
  --opal: #A4BFB5;
  --gainsboro: #D9D8D7;
  --aluminum: #8C8C8C;
  --eigengrau: #131926;
  --flamingo: #E35D40;
}

/* Home / Video Section */
.home {
  text-align: center;
  padding: 80px 20px 40px;
}
.home h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  color: var(--eigengrau);
  font-weight: 400;
  margin-bottom: 10px;
}

.play-showreel {
  font-family: 'Playfair Display', serif;
  color: var(--flamingo);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.credits p {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--eigengrau);
  font-weight: 400;
}

.video-wrapper {
  position: relative;
  width: 80%;
  max-width: 900px;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  margin: 0 auto 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home h6 {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--eigengrau);
  margin-top: 10px;
}

/* Services Section */
/* Flower image positioning fix */
  #flowerright {
    width: 50%;
    max-width: 200px;
    height: auto;
    display: block;
    margin-left: 0;
    margin-right: auto;
    padding: 0;
  }
.services h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--eigengrau);
  margin-bottom: 20px;
}
.services h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--flamingo);
  margin-bottom: 10px;
}
.services .arrow-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--peacoat);
  text-align: right;
  gap: 8px;
  margin-top: 20px;
}
.services .arrow-wrapper i {
  font-size: 20px;
  color: var(--peacoat);
  transition: transform 0.3s ease-in-out;
}
.services .arrow-wrapper i:hover {
  transform: translateX(4px);
}

/* Synergy Section */
.synergy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--eigengrau);
  margin-bottom: 10px;
}
.synergy h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  color: var(--flamingo);
  margin-bottom: 10px;
}
.synergy p {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--eigengrau);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 20px;
}
.synergy .arrow-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--peacoat);
  gap: 8px;
  margin-top: 20px;
}
.synergy .arrow-wrapper i {
  font-size: 20px;
  color: var(--peacoat);
  transition: transform 0.3s ease-in-out;
}
.synergy .arrow-wrapper i:hover {
  transform: translateX(4px);
}

/* Add spacing below the synergy section */
.synergy {
  margin-bottom: 60px; /* Adjust as needed */
}

/* Optional: if you want even more control over layout */
footer {
  padding-top: 40px; /* Already included in previous version */
}

.spacer {
  height: 60px; /* Use this in HTML if CSS margin doesn't suffice */
}

/* 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);
}

/* -----------------------------------
   Large Tablet & Small Desktop
----------------------------------- */
@media screen and (max-width: 992px) {
  .home h1 {
    font-size: 42px;
  }

  .services h1,
  .synergy h1 {
    font-size: 50px;
  }

  .services h3 {
    font-size: 24px;
  }

  footer {
    font-size: 20px;
    padding: 18px 0;
  }
}

/* -----------------------------------
   Tablet Portrait
----------------------------------- */
@media screen and (max-width: 767px) {
  .services .row,
  .synergy .row {
    flex-direction: column;
  }

  .services .col-md-6 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services .container-fluid,
  .synergy .container-fluid {
    padding: 0 20px;
  }

  .services .col-md-2,
  .services .col-md-4,
  .services .col-md-6,
  .synergy .col-4,
  .synergy .col-6 {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }

  #flowerright {
    display: none;
  }

  .services h1,
  .synergy h1 {
    font-size: 36px;
  }

  .services h3,
  .synergy h3 {
    font-size: 20px;
  }

  .synergy p {
    font-size: 16px;
  }

  .arrow-wrapper {
    justify-content: flex-start;
    padding-left: 10px;
    margin-top: 10px;
    gap: 6px;
  }

  .arrow-wrapper i {
    font-size: 18px;
  }

  footer {
    font-size: 18px;
    padding: 16px 0;
  }

  .email-link svg {
    width: 26px;
    height: 26px;
  }
}

/* -----------------------------------
   Mobile Landscape (≤576px)
----------------------------------- */
@media screen and (max-width: 576px) {
  .home h1 {
    font-size: 28px;
    text-align: center;
  }

  .services h1,
  .synergy h1 {
    font-size: 28px;
    text-align: left;
  }

  .services h3,
  .synergy h3 {
    font-size: 16px;
    margin-bottom: 8px;
    text-align: left;
  }

  .synergy p {
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
  }

  .synergy .row {
    margin: 0;
  }

  .synergy .col-4,
  .synergy .col-6,
  .services .col-md-4,
  .services .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: left;
  }

  .arrow-wrapper {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    padding: 10px 16px;
    gap: 6px;
  }

  .arrow-wrapper i {
    font-size: 16px;
  }

  .services .container-fluid,
  .synergy .container-fluid {
    padding: 0;
  }

  footer {
    font-size: 16px;
    padding: 14px 10px;
  }

  .email-link {
    margin-left: 8px;
  }

  .email-link svg {
    width: 24px;
    height: 24px;
  }
}

/* -----------------------------------
   Extra Small Phones (≤350px)
----------------------------------- */
@media screen and (max-width: 350px) {
  .home h1 {
    font-size: 24px;
    text-align: center;
  }

  .services h1,
  .synergy h1 {
    font-size: 24px;
  }

  .services h3,
  .synergy h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .synergy p {
    font-size: 13px;
    padding: 0 10px;
  }

  .synergy .col-4,
  .synergy .col-6 {
    padding: 0 10px;
  }

  .arrow-wrapper {
    font-size: 13px;
    padding: 10px;
  }

  #showreel {
    width: 100%;
    max-width: 100%;
  }

  footer {
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 8px;
  }

  .email-link svg {
    width: 22px;
    height: 22px;
  }
}

/* -----------------------------------
   Medium Tablet Landscape Only (768–991px)
----------------------------------- */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .synergy .col-4,
  .synergy .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
    text-align: left;
  }

  .synergy .container-fluid,
  .synergy .row {
    padding: 0;
    margin: 0;
  }

  .synergy h1,
  .synergy h3,
  .synergy p {
    text-align: left;
  }

  .arrow-wrapper {
    justify-content: flex-start;
    padding: 10px 32px;
  }
}
