* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

li, ul, a {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  color: #151616;
  text-decoration: none;
  background: #ed8d1b;
}

header {
  font-size: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 200;
  border-bottom:solid 2px #151616;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  align-items: center;
  justify-content: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding-top: 120px;
  margin-bottom: 0;
}

.navbar {
  position: relative;
  top: 0px;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar li {
  display: inline-block;
  padding: 0 20px;
}

.navbar li a {
  transition: all 0.3s ease 0s;
}

.navbar li a:hover {
  background-color: #c27416;
  padding: 13px;
  color: #151616;
  border-radius: 25px;
}

.logo img{
  background-color: transparent;
  width: 95px;
  height:95px;
  border: none;
  transition: all 0.3s ease 0s;
}

.logo img:hover{
  transform: scale(90%);
  transition: all 0.3s ease 0s;
}

.logo a:hover {
  color: #F5F2EB;
  transition: all 0.3s ease 0s;
}


.user {
  background-color: #ed8d1b;
  padding-bottom: 10px;
}

.user img{
  background-color: #ed8d1b;
}

.user:hover img {
  transition: transform 0.3s;
  transform: scale(0.9);
}

.user #dropdown {
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(-10px);
  pointer-events: none;
}

.user:hover #dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.user #dropdown li {
  background-color: #F5F2EB;
}

.user:hover #dropdown li{
  display: inline-block;
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#dropdown li:hover {
  background-color: #ed8d1b;;
  color:#151616;;
  cursor:pointer;
  border-color: #c27416;
  border:solid 2px;
  transition: all 0.2s ease-in-out 0s;
}

#dropdown li a {
  display: block;
  padding: 0px 0;
  width: 100%; 
  color: #151616;
  text-decoration: none;
  background-color: transparent;
}

#dropdown li a:hover{
  border-radius: 0px;
  padding: 0px;
  background-color: transparent;
}

.logout{
  background-color: #c27416 !important;
}

.logout:hover{
  background-color: #ed8d1b !important;
  color: #ffffff;
}

li.logout a{
  background-color: #c27416 !important;
  transition: all 0s ease 0s;
  padding: 0px;
  color: #ffffff;
}

li.logout:hover a{
  background-color: #ed8d1b !important;
  transition: all 0.2s ease-in-out;
  padding: 0px;
  color:	#151616;
}

.wrapper, .wrapper-2 {
  width: 100%;
  max-width: 1200px;     /* keeps layout consistent */
  margin: 0 auto;
  padding-left: 60px;    /* aligns to logo edge */
  box-sizing: border-box;
  text-align: left;      /* override right/center alignment */
}

.wrapper h1 {
  font-size: 51px;
  font-weight: bold;
  margin-bottom: 10px;
}


.wrapper p {
  margin-top: 0;
  font-size: 18px;
}

.wrapper-2 {
  margin-top: 30px;
  flex: 1;
  max-width: 400px; /* optional: limit form width */
}

.wrapper{
    margin-top: 43%;
    padding-left: 0px;
}

.wrapper strong{
    font-size: 51px;
}

.wrapper-2 strong {
  border-bottom: 5px solid #ed8d1b;
  font-size: 32px;
  padding-bottom: 3px;
}

.wrapper-2 h3{
    margin-bottom: 40px;
}

.wrapper-2 label{
    font-size: 16px;
}

.wrapper-2 input{
    width: 50vh;
    height: 4vh;
    font-size: 16px;
    background-color: #eeeeee;
    border: 2px solid #151616;
}

.wrapper-2 input:focus{
    background-color: #ffffff;
}

.message-input textarea {
  width: 50vh;
  height: 20vh;
  font-size: 16px;
  resize: none; /* optional: prevents resizing */
  padding: 10px; /* for nicer spacing */
  font-family: inherit; /* keeps consistent style */
  background-color: #eeeeee;
  border: 2px solid #151616;
}

.message-input textarea:focus{
    background-color: #ffffff;
}

.wrapper-2 .submit-button{
    background-color: #ed8d1b;
    color: #151616;
    border: 2px solid #151616;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease-in-out 0s
}

.wrapper-2 .submit-button:hover{
    background-color: #ed8d1b;
    color: #ffffff;
    border: 2px solid #151616;
    transition: all 0.2s ease-in-out 0s;
    transform: scale(98%);
    border-radius: 5px;
}

.wrapper-3 img {
  width: 600px;
  height: 570px;
  margin-left: 250px;
  object-fit: cover;
  border: 2px solid #151616;
  box-shadow: 0 1.5rem 3rem -0.75rem #ed8d1b;
}

.contact-section {
  display: flex;
  justify-content: center; /* centers the group horizontally */
  align-items: center; /* aligns form and image vertically */
  gap: 50px; /* space between form and image */
  padding: 40px;
}

.gform-fields, .gform-name, .gform-Email, .gform-contactNumber, .gform-Message{
    background-color: transparent;
    list-style-type: none;
    padding-left: 0px;
}

.map-wrapper{
  height: fit-content;
  width: fit-content;
}

iframe{
    height: 450px;
    width: 1190px;
    margin-bottom: 50px;
    box-shadow: 0 1.5rem 3rem -0.75rem #151616;
}

/*Footer Styles*/
.footer {
  background-color: #ed8d1b;
  width: 100%;              /* make it responsive */
  border-top: 2px solid #000;
  padding: 40px 60px;
  margin-top: auto; /* pushes footer to bottom */
}

.footerArea {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;     /* allow wrapping on smaller screens */
  gap: 6%;
  background-color: #ed8d1b;
  color: #000;
}

.sec2-links, .categoryLinks, .contactInfo, .aboutSection{
  background-color: #ed8d1b;
  text-align: left;
}

.footerLogo{
  background-color: #ed8d1b;
  text-align: center;
}

.footerLogo img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  background-color: transparent;
}

.section1, .description{  
  flex: 2;             /* About Us takes double width */
  min-width: 100px;    /* wider min width */
  max-width: 300px;
  background-color: #ed8d1b;
}

.section2, .section3, .section4 {
  flex: 1;             /* others equal size */
  min-width: 180px;
  max-width: 250px;
  background-color: #ed8d1b;
}

.section1 h4, .section2 h4, .section3 h4, .section4 h4, .description h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;         /* match 2nd image */
  background-color: #ed8d1b;
}

/* Center headings but keep links left-aligned */
.section1 p, .description p {
  text-align: left;
  background-color: transparent;
  line-height: 1.6;
  margin-left: 0;
  background-color: #ed8d1b;
}

.section2 a, .section3 a, .section4 a, .description a {
  display: inline-block;
  margin: 6px 70px 0px 0px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  background-color: #ed8d1b;
}

.section2 a:hover, .section3 a:hover, .section4 a:hover {
  text-decoration: underline;
}

.contactInfo p {
  display: flex;
  align-items: center;
  margin: 5px 0px;
  background-color: #ed8d1b;
  font-size: 14px;
}

.contactInfo strong, .contactInfo a{
  background-color: #ed8d1b;
  font-size: 14px;
  margin: 0px 0px;
}

.contactInfo strong {
  display: inline-block;
  margin-right: 2px;
  font-size: 16px;
}

.social-media-icons a{
  display: inline-block;
  margin: 10px;
}

.social-media-icons img{
  height: 30px;
  width: 30px;
  display: block;
  transition: all 0.2s ease-in-out 0s
}

.social-media-icons #tiktoklogo{
  height: 32px;
  width: 32px;
  display: block;
  transition: all 0.2s ease-in-out 0s
}

.social-media-icons img:hover{
  transform: scale(90%);
  transition: all 0.2s ease-in-out 0s
}
