*{
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}


/* Header Section */

.banner_container{
   background-image: url(images/LA\ banner.jpeg);
   background-size: cover;
    background-position: center;
   width: 100%;
   height: 25vh;
   color: rgb(248, 245, 245);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.22);
}

.banner_name{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 90px;
    font-weight: 700;
    text-shadow: 6px 6px 24px rgba(0, 0, 0, 1),2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 40px;  
    color:#b4877a;
    /* word-spacing: 50px; */
}

.p{
    padding-top: 20px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-evenly;
    font-size: 30px;
    color: #888;
    font-style: italic;
}



/* Main Section */


main{
    width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;    
} 

/* For All START */
.place_section {
    background: #fff;
    padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px; 
  margin-bottom: 60px;  
}

.place_header {
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.place_number {
    font-size: 64px;
    color: #b4877a;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.place_btn {
    background: #b4877a;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    text-transform: uppercase;
    font-family: Georgia, serif;
   letter-spacing: 1px;
   font-variant: small-caps;
}

.place_btn:hover{
    border-radius: black;
    color: #888;
    box-shadow: 0 4px 16px -4px rgba(0,0,0,0.18);
    transform: translateY(-2px) scale(1.05);
    transition: all 0.2s ease;
    font-size: 2.2em;
}
/* For all END  */


.img_text_container {
    display: flex;
  flex-direction: row;
  align-items: flex-start;         /*  RIGHT SIDE CARD */
  gap: 24px;
  flex-wrap: wrap;
}

/* For All START */
.place_img {
  width: 55%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

.text{
  width: 40%;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: #222;
  font-family: 'Times New Roman', Times, serif; 
}

.text2{
    display: flex;
    justify-content: space-around;
    padding-top: 30px; 
    font-weight: bold;  
}
/* For all END */


.img_text_container_OPP{
    display: flex;
  flex-direction: row-reverse;      /*LEFT SIDE CARD */
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}


/* Footer Section */

footer{
    display: flex;
    justify-content: space-evenly;
    
}

.link{
 max-width: 25px;  
  height: auto;      
  display: block;
}

.logo_container{
  display: flex ;
  justify-content: center;
}

.rectangular_logo{
  padding-top: 10px;
  height: 200x;
  width: 400px;
}

.enquiry_container{
  margin: 20px ;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  margin-left: 40%;
  margin-right: 40%;
  margin-bottom: 80px;
}

.enquiry_text {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  margin-left: 25%;
}

.enquiry_box{
  height: 150px;
  width: 500px;
  writing-mode: horizontal-tb;
  border-radius: 20px;
  font-weight: bold;
}


.name{
  height: 30px;
  width: 200px;
  border-radius: 10px;
  margin-bottom:20px;
}


.email{
  height: 30px;
  width: 200px;
  border-radius: 10px;
  margin-bottom:20px;
}

.contact{
  height: 30px;
  width: 200px;
  border-radius: 10px;
  margin-bottom:20px;
}

.submit{
  height: 40px;
  width: 100px;
  border-radius: 10px;
  background-color: #888;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.submit:hover{
  background-color: #555;
}