body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
}

.anton-regular-sub-text {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #000;
}


/* ---------------------------------- */
/*            Navbar                  */
/* ---------------------------------- */
.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: black;
  margin: 0 12px;
  position: relative;
  padding-bottom: 4px;
  padding-right: 0px;
  display: inline-block; /* shrink clickable area to text width */
}

.navbar-nav .nav-link:hover {
  color: #dd6d61;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-block; /* keeps underline equal to text width */
  padding: 10px 6px 5px 6px;
  color: #000;
  transition: color 0.2s ease-in-out;
}

/* Redish underline exactly under text */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #dd6d61;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%; /* expands only as wide as the text */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #dd6d61;
}

.navbar-brand {
  font-weight: bold;
  color: #000;
}
.navbar-brand span {
  color: #dd6d61;
}





/* --------------------------------------------------------- */
/*                        Banner Image                       */
/* --------------------------------------------------------- */
.banner-section {
  /* Image on top of gradient */
  background: 
    url('/images/header-bg-vector.jpg') no-repeat center center,
    linear-gradient(90deg, #f8dede, #eec7e8);
  background-size: cover; /* Make sure the image covers the section */
  padding: 60px 20px;
}

.banner-text h1 {
  font-weight: 900;
  line-height: 0.9;
  transition: transform 0.3s ease;
  display: inline-block;
  filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.15));
}

.banner-text h1:hover {
  transform: scale(1.15);
  animation: bounce 0.6s;
}

.banner-text h1 .highlight {
  background: linear-gradient(to right, #be6892, #e8888e);
  -webkit-background-clip: text;  /* Safari/Chrome */
  -webkit-text-fill-color: transparent;
  background-clip: text;          /* Standard */
  color: transparent;             /* fallback */
}

.banner-text h1 .highlight {
  color: #e2829c; /* pink highlight */
}

.banner-text p {
  margin-top: 15px;
  font-size: 1rem;
  color: #333;
}

@keyframes bounce {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.2); }   /* bigger jump */
  50%  { transform: scale(0.9); }   /* deeper dip */
  75%  { transform: scale(1.15); }  /* secondary bounce */
  100% { transform: scale(1.1); }   /* settle slightly bigger */
}

.banner-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

  /* Default (xs: <576px) */
.banner-text h1 {
  font-size: 3.5rem;
}
/* sm: ≥576px */
@media (min-width: 576px) {
  .banner-text h1 {
    font-size: 3.5rem;
  }
}
/* md: ≥768px */
@media (min-width: 768px) {
  .banner-text h1 {
    font-size: 2.1rem; /* keep smaller here to avoid overlap */
  }
}
/* lg: ≥992px */
@media (min-width: 992px) {
  .banner-text h1 {
    font-size: 2.9rem;
  }
}
/* xl: ≥1200px */
@media (min-width: 1200px) {
  .banner-text h1 {
    font-size: 3.5rem;
  }
}
/* xxl: ≥1300px */
@media (min-width: 1300px) {
  .banner-text h1 {
    font-size: 3.9rem;
  }
}
/* xxl: ≥1300px */
@media (min-width: 1350px) {
  .banner-text h1 {
    font-size: 4.0rem;
  }
}
/* xxl: ≥1400px */
@media (min-width: 1400px) {
  .banner-text h1 {
    font-size: 4.2rem;
  }
}
/* xxl: ≥1400px */
@media (min-width: 1450px) {
  .banner-text h1 {
    font-size: 4.3rem;
  }
}
/* xxl: ≥1400px */
@media (min-width: 1500px) {
  .banner-text h1 {
    font-size: 4.6rem;
  }
}
/* xxl: ≥1400px */
@media (min-width: 1700px) {
  .banner-text h1 {
    font-size: 5.0rem;
  }
}
/* Move tuna image up slightly */
.tuna-image {
  margin-top: -100px; /* adjust as needed */
}

  /* Move salmon down */
.salmon-image {
  margin-top: 100px; /* adjust as needed */
}

/* On smaller screens, reset so it doesn't look awkward */
@media (max-width: 767px) {
  .tuna-image {
    margin-top: 0;
  }
}


/* --------------------------------------------------------- */
/*                 Quick. Clean. Simple - DONE               */
/* --------------------------------------------------------- */
.quick-clean-simple {
  font-weight: 900;
  /* Responsive font size: min 1.5rem, preferred 6vw, max 3.5rem */
  font-size: clamp(1.5rem, 6vw, 5.5rem);
  background: linear-gradient(to right, #c66aa0, #f28b82);
  background-clip: text;          /* Standard property (works in Firefox) */
  -webkit-background-clip: text;  /* Safari/Chrome/WebKit */
  color: transparent;             /* Firefox */
  -webkit-text-fill-color: transparent; /* Safari/Chrome */
  display: inline-block;
  white-space: nowrap;
}

/* Typing cursor effect (optional) */
.cursor {
  display: inline-block;
  width: 2px;
  background: #000;
  margin-left: 2px;
  animation: blink 0.7s infinite;
  opacity: 0; /* hidden until typing starts */
  display: inline-block;
}

@keyframes blink {
  50% { opacity: 0; }
}

#typing {
  min-height: 4.5rem; /* reserve enough space for the headline */
  display: inline-block;
  white-space: nowrap; /* prevent wrapping if needed */
}


/* ---------------------------------------------------- */
/*            Generic Button Gradient - DONE            */
/* ---------------------------------------------------- */
.btn-gradient {
  /* Gradient background */
  background: linear-gradient(to right, #e6868e, #b76392);
  color: #fff; /* White text */
  font-weight: 500;

  /* Button sizing & spacing */
  padding: 0.75rem 1.5rem;
  font-size: 1rem;

  /* Border & radius */
  border: 3px solid #fff;  /* 3px white border */
  border-radius: 0.75rem;  /* soft rounded corners */

  /* Shadow & transition */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #d3737c, #a05182); /* slightly darker */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px); /* lift effect */
  color: #fff;
  border-color: #fff; /* keep border white */
}

.btn-gradient:active {
  background: linear-gradient(to right, #c95e69, #8e4573);
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  border-color: #fff;
}

.btn-gradient:disabled {
  background: linear-gradient(to right, #e6a5aa, #c188ab);
  opacity: 0.65;
  box-shadow: none;
  border-color: #fff;
}







/* ---------------------------------- */
/*            Testimonials - DONE     */
/* ---------------------------------- */
    .testimonial-card {
      border: 1px solid #ddd;
      border-radius: 0.75rem;
      padding: 1.5rem;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .testimonial-text {
      font-size: 1rem;
      font-weight: 600;
    }
    .testimonial-footer {
      margin-top: auto; /* pushes footer to bottom */
    }
    .testimonial-author {
      font-weight: 600;
    }
    .testimonial-location {
      color: #666;
      font-size: 1.0rem;
    }