/* --- Hero Section Background --- */
.lp-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

/* --- Dynamic Overlay & Flexbox Centering --- */
.lp-hero__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 600px; 
  padding: 80px 20px; 
}

/* --- Content Container --- */
.lp-hero__container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

/* --- Typography --- */

.lp-hero__container h1 {
  font-family: "rosellinda_alyamoreregular", "Rosellinda Alyamore", cursive;
  font-weight: normal !important; 
  color: #fff;
  font-size: 5.625rem; 
  line-height: 0.688;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
}

.lp-hero__container h2 {
  font-family: "RefrigeratorDeluxe", "Refrigerator Deluxe", sans-serif;
  font-weight: normal; 
  font-size: 2.8125rem; 
  color: #fff;
  line-height: 1.831; 
  letter-spacing: 0; 
  text-transform: uppercase; 
  text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16); 
  margin-bottom: 30px;
  margin-top: 0;
}

.lp-hero__support-text {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 30px;
}
.lp-hero__support-text strong,
.lp-hero__support-text b {
  color: #B1DEE0;
  font-weight: 800; 
}

.lp-hero__support-text p {
  margin-bottom: 0; 
}

/* --- Buttons --- */
.lp-hero__button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Shared Button Styles */
.lp-hero__button-group .btn {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 180px; 
  text-align: center;
}

.lp-hero__button-group .btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

/* White Button */
.lp-hero__button-group .btn-primary {
  background-color: #ffffff;
  color: #17425e; 
}

.lp-hero__button-group .btn-primary:hover {
  background-color: #f0f0f0;
}

/* Light Blue Button */
.lp-hero__button-group .btn-secondary {
  background-color: #c1d5e0; 
  color: #17425e;
}

.lp-hero__button-group .btn-secondary:hover {
  background-color: #a7c2cf;
}

/* --- Mobile Responsive Adjustments (Consolidated) --- */
@media (max-width: 992px) {
  .lp-hero__container h1 {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .lp-hero__overlay {
    min-height: 400px;
    padding: 60px 15px; 
  }
  
  .lp-hero__container h1 {
    font-size: 2.75rem; 
  }
  
  .lp-hero__container h2 {
    font-size: 1.375rem; /
  }
  
  .lp-hero__support-text {
    font-size: 0.875rem; /* 14px */
  }
  
  .lp-hero__button-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .lp-hero__button-group .btn {
    width: 100%;
    max-width: 100%; 
    min-width: 0; 
    padding: 15px 10px; 
    white-space: normal; 
    font-size: 13px; 
  }
}