:root {
  --blue: #1E3557;
  --dark-blue: #142A44;
  --yellow: #F2C94C;
  --gray: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-size: 18px;
}

/* NAV */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  z-index: 3;
  background: transparent;
}

.nav-logo {
  width: 140px;
}

.hero .nav-logo {
  filter: brightness(0) invert(1);
}

@media (min-width: 900px) {
  .nav-logo {
    width: 200px; /* increase this as you like */
  }
}

/* PHONE BAR */
.top-phone-bar {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  text-align: center;
  color: var(--yellow);



    min-height: 100vh; /* full screen */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    padding: 120px 20px 40px; /* space for navbar */
    /* background: url("images/scene-with-miscellaneous-items-being-sold-yard-sale-bargains.jpg") center/cover no-repeat; */
    margin-top: 25px;
  
    background:
      linear-gradient(
        rgba(30, 53, 87, 0.75),   /* overlay color + opacity */
        rgba(30, 53, 87, 0.75)
      ),
      url("images/scene-with-miscellaneous-items-being-sold-yard-sale-bargains.jpg") center/cover no-repeat;
  
    
  
}
/* 
 .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(196, 196, 192, 0);


  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 246, 5, 0.9);
  z-index: 1; 
} */

.hero-inner {
  position: relative;
  z-index: 2;
  margin-top: 60px;

}

/* .hero h1 {
  font-size: 72px;
  text-transform: uppercase;
  margin-bottom: 10px;
} */


.hero h1 {
  font-size: 100px;   /* was ~60 → now bold */
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero p {
  font-size: 50px;
  margin-top: 15px;
}

.hero-buttons {

  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap; /* allows wrapping if needed */
  margin-top: 25px;
}

/* BUTTONS */
.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  padding: 14px 24px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 10px;
  border: #1E3557 3px solid;
}

.btn-secondary {
  border: 2px solid #1E3557;
  color: var(--yellow);
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 800;
  border: var(--yellow) 3px solid;
}

.btn-primary,
.btn-secondary {
  font-size: 18px;
  padding: 16px 28px;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  background: var(--yellow);
}

.section.alt {
  background: var(--gray);
}

.container {
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--blue);
}

h3 {
  font-size: 22px;
}

/* SPLIT */

.split {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.split > div:first-child {
  flex: 1;   /* text */
}

.split > div:last-child {
  flex: 1.5; /* 👈 bigger image */
}


.split > div {
  display: flex;
  flex-direction: column;
}

.split h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.split p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.split a {
  align-self: flex-start; /* keeps button under text, not stretched */
}

.reverse {
  flex-direction: row-reverse;
}

.img-container img {
  width: 100%;
  height: auto; /* 👈 lets image grow naturally */
  object-fit: cover;
  border: 3px solid var(--blue);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .img-container img {
    min-height: 300px;
  }
}

.help {
  border-top: #1E3557 solid 5px;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  border: 2px solid #1E3557;
  padding: 25px;
  background: var(--blue);
  color: #F2C94C;
}

/* GALLERY */
.gallery {
  display: flex;
  gap: 20px;
}

/* CONTACT */
.contact-section {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin: 10px 0;
  padding: 12px;
}

/* FOOTER */
.footer {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 30px;
}

/* TEXT BUTTON */
.text-now {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow);
  text-align: center;
  padding: 16px;
  font-weight: 800;
  text-decoration: none;
  color: black;
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
  background: var(--gray);
}

.about-section .container {
  max-width: 1100px;
  margin: auto;
}

/* SPLIT LAYOUT */
.about-section .split {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.about-section .img-container img {
  width: 100%;
  height: auto;
  min-height: 350px;
  object-fit: cover;
  border: 3px solid var(--blue);
}

/* TEXT */
.about-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-section .lead {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* MAKE IMAGE SLIGHTLY DOMINANT */
.about-section .split > div:first-child {
  flex: 1.2;
}

.about-section .split > div:last-child {
  flex: 1;
}

/* MOBILE */
@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }
}