* {
  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: 500px;
  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;
}

.about-wrapper{
  margin-bottom: 1%;
}

.about-us-wrapper h1{
  font-size: 51px;
  text-align: center;
}

.info-wrapper{
  text-align: center;
}

.info-wrapper p{
  font-size: 21px;
}

.image-wrapper {
    display: flex;
    flex-direction: row;    /* Stack Row */
    align-items: center;    /* Center horizontally */
    gap: 50px;              /* Space between images */
    margin-bottom: 5%;
}

.img1-wrapper, .img2-wrapper, .img3-wrapper, .img4-wrapper{
  border: 3px solid #151616;
  pointer-events: none;
  cursor: none;
  box-shadow: 0 1.5rem 3rem -0.75rem #ed8d1b;
}

.image-wrapper img{
    height: 320px;
    width: 400px;
}

/*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
}