:root {
    /* Color Palette */
    --clr-bg-main: #fcf6f0; /* Soft off-white background */
    --clr-orange-primary: #f07b22; /* Main orange for buttons/accents */
    --clr-orange-secondary: #fce7d9; /* Lighter orange for the welcome tag */
    --clr-text-dark: #333333; /* Dark text for headings */
    --clr-text-medium: #666666; /* Medium text for paragraphs */
    --clr-white: #ffffff;
    
    /* Font */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}


/* --- HERO SECTION LAYOUT (Flexbox for 2-column) --- */
.hero-section {
    display: flex;
   margin-top: 5rem;
    background-color: var(--clr-bg-main);
   
    padding-top: 6rem;
    padding-bottom: 6rem;
      padding-left: 10rem;
  padding-right: 10rem;
    overflow: hidden; /* Important for the image container's absolute positioning/shadows */
}

.hero-content {
    flex: 1; /* Takes up one part of the space */
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image-container {
    flex: 1; /* Takes up one part of the space */
    position: relative;
    /* Create the orange frame effect with pseudo-elements */
    padding: 20px; 
}

/* --- IMAGE STYLING --- */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px; /* Inner rounded corner for the image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   position: relative;
    border-radius: 15px; 
    z-index: 50;
}

.hero-rectangle{
  width: 8rem;
  height: 80%;
  background-color: #f97415;
  position: absolute;
  border-radius: 15px;
  top: 4rem;
  left: -1rem;
  z-index: 40;
}

.hero-rectangle-2{
  width: 8rem;
  height: 100%;
  background-color: #f97415;
  position: absolute;
  border-radius: 15px;
  top: 0;
  right: 4rem;
  z-index: 40;
}




/* --- TEXT STYLING --- */
.welcome-tag {
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 20px;
    background-color: #F9741526;
    color: #F97415;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12rem;
    width: fit-content;
}

.difficult-tag {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #522E14;
    font-family: "Montserrat", sans-serif;
}

.sub-text {
    font-size: 18px;
    color: var(--clr-text-medium);
    margin-bottom: 35px;
    max-width: 450px;
}

/* --- BUTTON STYLING --- */
.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 0px 25px;
    height: 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background-color: var(--clr-orange-primary);
    color: var(--clr-white);
    width: fit-content;
    text-decoration: none;
    font-weight: 400;
    box-shadow: 0 10px 20px rgba(240, 123, 34, 0.3);
}

.btn-primary:hover {
    background-color: #d16b1e; /* Slightly darker orange on hover */
    box-shadow: 0 12px 25px rgba(240, 123, 34, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-orange-primary);
    border-color: var(--clr-orange-primary);
}

.btn-secondary:hover {
    background-color: var(--clr-orange-secondary);
    color: var(--clr-orange-primary);
}


@media (max-width: 1400px){
  .hero-section{
    padding-left: 8rem;
    padding-right: 8rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .difficult-tag{
    font-size: 35px;
  }
 
}



@media (max-width: 1200px){
  .hero-section{
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .difficult-tag{
    font-size: 30px;
  }
  .sub-text{
    font-size: 16px;
  }

}

/* --- RESPONSIVENESS (for smaller screens) --- */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column; /* Stack columns vertically */
      padding: 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    


    .difficult-tag {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn {
        padding: 12px 20px;
    }

    .image-wrapper {
  
    box-shadow: none;
}

    .hero-rectangle{
  width: 8rem;
  height: 85%;
  left: 0;

}

.hero-rectangle-2{
  width: 8rem;
  height: 100%;

}

    




}

@media (max-width: 700px){
        .hero-rectangle{
  width: 4rem;
  height: 12rem;
  left: 0;

}

.hero-rectangle-2{
  width: 4rem;
  height: 100%;

}
}