/* BODY SECTION */
body, html {
    height: 100%; 
    margin: 0; }
body {
    background: #332f29 no-repeat fixed center; 
    width: auto;
    height: auto;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px ;
    color: #ffffff;
    text-align: center;
    align-items: center;
}

header {
    display: flex;
    justify-content:center;
    align-items:center;
    height: 100%;
    background-color: #332f29;
}

/* HEADINGS AND TEXT */
h1 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    color: #ffffff 
}
h2 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    color: #ffffff
   
}
.contact-us-link {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #ffffff
 
}
h3 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    color: #ffffff}
  
p {
    font-family: "Roboto Condensed", sans-serif;
    font-size:  clamp(14px, 2vw, 18px);
    color: #ffffff;
   
}

.bottom_margin {
    margin-bottom: 40px;
}  
.bottom_margin2 {
    margin-bottom: 80px;
} 

/* NAVIGATION BAR */ 

.p1{
    width: 60%;
    line-height: 1.5;
    text-align: left;
}
.p2{
    text-align: center;
    line-height: 1.5; 
    padding: 20px;
    width: 80%; 
    margin: 0 auto
}
.p3{

}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ffa900;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

li {
    width: 25%;
    text-align: center;
}


a {
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    display: block;
    padding: 15px 20px;
}
li a {
    display: block;
    color: #000000;
    text-align: center;
    padding: 15px 20px;
    text-decoration: none
}

li a:hover {
    background-color: #99743d;
}
/*RESPONSIVE*/
@media (max-width: 768px) {
  
    ul {
        flex-direction: column;
        width: 100%;
    }

    li {
        width: 100%;
        text-align: center;
    }

    .hero_image {
        height: 400px;
    }
    .contact_image {
      height: 200px;
    }
    h1, p {margin-left: 15px;}

    .hero_text h1 {
        font-size: 30px; 
    }
    .contact_text h1 {
      font-size: 30px; 
  }
    .button {
        padding: 12px 24px;
    }

    input[type=text], select, input[type=submit] {
        font-size: 16px;
    }

    footer {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    
    .hero_text h1 {
        font-size: 28px; 
    }
    .contact_text h1 {
      font-size: 28px; 
  }
h1, p {margin-left: 10px;}

    .button {
        padding: 12px 24px;
        font-size: 14px;
    }



    footer {
        font-size: 12px;
    }
}

.hamburger-container {
    display: flex;
    background-color: #ffa900;
    
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 5px;
}

/* REPONSIVE */
@media (max-width: 768px) {
    
    ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .hamburger {
        display: flex; 
    }

    ul.active {
        display: flex; 
    }

    li {
        width: 100%;
        text-align: center;
    }
}

.hero_image {
    background-image: url("images/grader.jpg");
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero_text {
  text-align: left;
  position: absolute;
  top: 5%;
  left: 5%;
  transform: translate(0, 0); /* Remove the negative offset */
  color: white;
  padding: 0; /* Padding no longer needed here */
  max-width: 600px; /* Optional: controls content width */
}

.hero_button {
  display: block; /* Removes centering */
  margin-top: 20px;
  padding: 0; /* No side padding */
}


.img1 {
    border:3px solid #ffa900;
    vertical-align: middle;
    text-align: center;
    width: 100%
}

   
* {box-sizing: border-box;}

.img-container {
    float: left;
    width: 33.33%;
    padding: 20px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.space {
    height: 50px;
    position: relative;
}

.button {
    display: inline-block;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    background-color: #ffa900;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.center {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button:hover {
    background-color: #99743d;
}

/* CONTACT US SECTION*/
* { box-sizing: border-box;}


input[type=text], select {
    width: 100%;
    padding: 10px 20px;
    margin: 8px 0;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
}

input[type=submit] {
    width: 100%;
    background-color: #ffa900;
    color: black;
    padding: 10px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Roboto Condensed", sans-serif;
}

input[type=submit]:hover {
    background-color: #99743d;
}
.contact-us {
    color: white;
    width: fit-content;
    margin: 0 auto;
  }

  .contact-us h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }


  .contact-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

  .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .contact-item a:hover {
    text-decoration: underline;
  }
/*RESPONSIVE*/
@media (max-width: 768px) {
 

  h1, p {
    margin-left: 15px;
  }

  .button {
    padding: 12px 24px;
  }

  input[type=text], select, input[type=submit] {
    font-size: 1rem;
  }

  footer {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero_text h1 {
    font-size: 28px; 
  }
  .contact_text h1 {
    font-size: 28px; 
  }


  h1, p {
    margin-left: 10px;
  }

  .button {
    padding: 12px 24px;
    font-size: 14px;
  }

  footer {
    font-size: 12px;
  }
}
/*ABOUT US SECTION*/
.about-section {
    margin: 50px auto;
    max-width: 900px;
}

.about-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}


.about-content img {
    width: 45%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}


.text-content {
    flex: 1;
  
    padding: 30px;
    border-radius: 8px;
    line-height: 1.5;
}
/*RESPONSIVE*/
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-content img {
        width: 80%;
    }
}
/* FADE IN BLOCKS - WHY CHOOSE US*/
#why_choose_us {
    padding: 50px 0;
    background-color: #332f29;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 0 15px;
  }
  
  .block {
    background-color: #ffa900;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(25% - 20px);
    box-shadow: 0 4px 8px black;
    opacity: 0;

  }
  
  .block h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color:black
  }
  
  .block p {
    font-size: 1em;
    color: white;
  }
  
 
  @media (max-width: 1024px) {
    .block {
      flex: 1 1 calc(33.33% - 20px);
    }
  }
  
  @media (max-width: 768px) {
    .block {
      flex: 1 1 calc(50% - 20px);
    }
  }
  
  @media (max-width: 480px) {
    .block {
      flex: 1 1 100%;
    }
  }
  .block {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 3s forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .contact_image {
    background-image: url("images/contact_image2.jpg");
    height: auto;
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
  }
  .overlay_content {
    position: relative;
    color: white;
    max-width: 90%;
    
    padding: 2rem;
    border-radius: 10px;
  }
  .contact_image h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .contact_text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .contact_image h1 {
      font-size: 2rem;
    }
  
    .contact_text p {
      font-size: 0.95rem;
    }
  
    .overlay_content {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .contact_image h1 {
      font-size: 1.5rem;
    }
  
    .contact_text p {
      font-size: 0.82rem;
    }
  
    .overlay_content {
      padding: 1rem;
    }
  }
.contact_form {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto; 
}
.contact-link{
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-link a {
  color: white;
  text-decoration: none;
 padding: 0.5%;
}
.contact-link a:hover {
  text-decoration: underline;
}

.container2 {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.block2 {
  width: 150px;
  height: 150px;
  background-color: #ffa900;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
}

.normal-text {
  position: absolute;
  margin: 0;
  color: black;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hover-text {
  position: absolute;
  margin: 0;
  color: black;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 5%;
}

.hover-text {
  opacity: 0; /* Initially hidden */
}

.block2:hover .normal-text {
  opacity: 0; /* Hide normal text on hover */
}

.block2:hover .hover-text {
  opacity: 1; /* Show hover text on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .container2 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .block2 {
    width: 120px; /* Adjusted for medium screens */
    height: 120px;
  }

  .normal-text,
  .hover-text {
    font-size: 14px;
  }
  .contact_text{
    height: 200px;
   
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container2 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .block2 {
    width: 100%; /* Full width on very small screens */
    height: auto;
    padding: 20px;
  }

  .normal-text,
  .hover-text {
    font-size: 16px;
  }
  .contact_text{
    height:  200px;
    
    text-align: center;
  }
}
.plant-for-hire {
  text-align: center;
  padding: 50px;
}
/* Container for all plants */
.plant-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Plant card styles */
.plant {
  position: relative;
  width: 250px;
  height: 350px;
  background-color: #ffa900;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.plant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Info section inside each plant card */
.plant-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: black;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color:#99743d;
  padding: 15px;
  border-radius: 8px;
}


.plant-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
  
}

.plant-info p {
  font-size: 14px;
  margin-bottom: 10px;
 
}

.plant-info button {
  background-color: #ffa900;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.plant-info button:hover {
  background-color: #99743d;
}

/* Hover effects */
.plant:hover {
  transform: scale(1.05); /* Slightly grow the plant on hover */
}

.plant:hover img {
  transform: scale(1.1); /* Zoom the image */
}

.plant:hover .plant-info {
  opacity: 1; /* Show plant info when hovered */
}
.footer {
  text-align: center;
  background: #332f29;
  color: white;
  padding: 20px;
}

    main {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 2rem;
    }
    .info1, .form-section1 {
      background-color: #332f29;
      padding: 2rem;
      border-radius: 12px;
      color: #ffffff;
      
    }
    .info, .form-section {
      background-color: #99743d;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }


    .info p {
      margin: 0.5rem 0;
    }

    iframe {
      width: 100%;
      height: 250px;
      border: none;
      border-radius: 8px;
      margin-top: 1rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    input, select, textarea {
      padding: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      font-family: "Roboto Condensed", sans-serif;
    }

    button {
      background-color: #ffa900;
      color: white;
      padding: 1rem;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
    }

    button:hover {
      background-color: #99743d;
    }

    .cta-banner {
    background: #332f29;
      color: white;
      text-align: center;
      padding: 4rem 2rem;
      margin-top: 3rem;
    }

    .cta-banner h2 {
      font-size: 2rem;
    }

    .cta-banner p {
      margin: 1rem 0;
    }

    .cta-banner button {
      padding: 0.75rem 2rem;
      background-color: #ffa900;
      border-radius: 6px;
    }