*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
  color: white;
}

/* START: ALL OF NAVBAR HERE  */
.navbar{
  position: fixed;
  font-family: fantasy;
  height: 13vh;
  width: 100vw;
  background: rgb(16,16,17);
  opacity: 0.9;
  align-items: right; 
  font-size: 18px;
  letter-spacing: 1px;
  padding-right: 60px;
}

.navbar-brand img{
  width: 75px;
  height: 75px;
  border-radius: 60px;
  margin-left: 20px;
}

/* Align menu items to the right */
 .navbar-nav {
  margin-left: auto;
}

/* Change the font color to white */
.navbar .navbar-nav .nav-link {
  color: white !important;
}

/* Hover effect with sliding background color animation */
  .navbar .navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(173,3,3);
    border-radius: 5px;
    z-index: -1;
    transition: left 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::before {
  left: 0;
}

/* Highlight the active page with the background hover color */
 .navbar .navbar-nav .nav-link.active::before {
  left: 0;
}

/* Add spacing between menu items */
.navbar-nav .nav-item {
  margin-left: .5rem;
  padding-right: 30px;
}

.navbar-toggler-icon {
  background-color: white; 
  padding-left: 40px;
}

/*END: ALL OF NAVBAR HERE  */
/* ******************************************************** */
#contact{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 200vh; 
    align-items: center;
    background: #faf3e0;
    /* background: blue; */
  }

  .contact-container{
    margin-top: 17vh;
    display: flex;
    width: 100vw;
    height: 75vh;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Start invisible */
    animation: fadeIn 2s ease-in forwards; /* Apply the fade-in animation */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5); /* Start small */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Grow to full size */
  }
}

.contact-head{
    display: flex;
    flex-direction: column;
    width: 68%;
    height: 100%;
    align-items: center;
    /* background-color: yellow; */
}

.contact-head h1{
    font-family: fantasy;
    color: rgb(213,0,0);
}

.line{
    width: 100px;
    height: 4px;
    background-color: black;
}

.contact-head p{
    /* font-family: 'Courier New', Courier, monospace; */
    font-size: 20px;
    width: 94%;
    color: black;
    text-align: center;
   
}
/* *********************************************** */
.contact-icons{
    margin-top: 4vh;
    display: flex;
    width: 100vw;
    height: 50vh;
    align-items: center;
    justify-content: center;
    background: #faf3e0;
    /* background-color: purple; */
}

.contact-icons i{
    display: flex;
    width: 65px;
    height: 80px;
    border-radius: 5px;
    background-color: rgb(213,0,0);
    justify-content: center;
    align-items: center;
}

.contact-icons h1{
  font-family: fantasy;
  font-size: 30px;
  color: rgb(213,0,0);
}

.contact-icons p{
/* font-family: 'Courier New', Courier, monospace; */
font-weight: bold;
color: black;
}

.phone, .whatsapp, .email, .address{
    margin: 10px;
    display: flex;
    width: 335px;
    height: 150px;
    align-items: center;
    justify-content: center;
}    

.sub-phone, .sub-whatsapp, .sub-email, .sub-address{
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 80px;
    margin-left: 5px;
    padding-top: 10px;
}

.contact-icons a{
  text-decoration: none;
  color: white;
}

.contact-icons i:hover{
  background-color: black ;
}

.contact-icons p:hover{
  color:rgb(213,0,0) ;
}

/* ****************************************** */
.contact-form{
  margin-top: 4vh;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 105vh;
  background: #faf3e0;
  /* background-color: orange; */
}

.cont-form{
  margin-left: 40px;
  padding-left: 40px;
  padding-top: 20px;
  position: relative;
  display: flex;
  width: 55%;
  height: 100%;
  border-radius: 10px;
  background-color: rgb(229,229,229);
  color: white;

}

form h1{
  font-family: fantasy;
  color: rgb(213,0,0);
}

.cont-form .line{
  display: flex;
  width: 100px;
  height: 4px;
  background-color: black;
}

form input{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 500px;
  height: 50px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  padding-left: 15px;
  background-color: black;
  color: white;
  
}

textarea{
  width: 500px;
  height: 30vh;
  border-radius: 6px;
  font-size: 15px;
  padding-top: 10px;
  padding-left: 15px;
  background-color: black;
  color: white;
}

.submit{
  display: flex;
  align-items: center;
  width: 200px;
  height: 45px;
  justify-content: center;
  text-align: center;
  background-color:rgb(213,0,0);
  color: white;
  font-size: 17px;
}
.submit:hover{
  background-color: black;
}
#maps{
  position: absolute;
  display: flex;
  width: 45%;
  height: 55vh;
  border-radius: 10px;
  background-color: black;
  margin-left: 50vw;
}

#maps iframe{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
/* ***************************************************** */
#cont-bar{
  margin-top: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 15vh; 
  background-color: black;
}

#cont-bar a{
  display: flex;
  width: 100vw;
  height: 16vh;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  animation-name: example;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes example {
  from {background-color: red;}
  to {background-color: black;}
}


#cont-bar a:hover{
  background-color: red;
}

#cont-bar .fa-solid{
  margin-right: 30px;
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  color: black;
  background-color: white;
  align-items: center;
  justify-content: center;
}

#cont-bar p{
  /* font-family: 'Courier New', Courier, monospace; */
  font-size: 23px;
  padding-top: 20px;
}


#company{
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 70vh;
  justify-content: center;
  align-items: center;
  background-color: rgb(213,0,0);
  /* background-color: blue; */
}
.logo-name{
  display: flex;
  width: 100vw;
  height: 20vh;
  justify-content: center;
  align-items: center;
  /* background-color: lightblue; */
}
.logo-name h1{
  font-family: "Cherish", cursive;
  font-weight: bolder;
  font-size: 50px;
  letter-spacing: 14px;
  word-spacing: 30px;
}

.logo-name img{
  margin-right: 40px;
  width: 140px;
  height: 140px;
  border-radius: 150px;
}


.socials{
  display: flex;
  width: 25vw;
  height: 10vh;
  justify-content: space-evenly;
  align-items: center;
  /* background-color: yellow; */
  
}

.socials a{
  text-decoration: none;
  color: white;
}

.socials a:hover{
  color: black;
}

.location-address{
  margin-top: 5vh;
  display: flex;
  width: 35vw;
  height: 5vh;
  justify-content:center;
  align-items: center;
  /* background-color: yellow; */
  
}
.location-address a{
  text-decoration: none;
  color: white;
}
.location-address a:hover{
  color: black;
}
/* *************************************************** */
footer{
  display: flex;
  width: 100vw;
  height: 10vh;
  background-color: black;
  color: white;  
  justify-content: right;
  align-items: center;
  font-size: 16px;
}

.foot{
  display: flex;
  width: 18vw;
  height: 10vh;
  color: white;  
  justify-content: center;
  place-items: center;
  font-size: 16px;
  /* background-color: blue; */
  
}

.foot a{
  color: white;
  text-decoration: none;  
}
.foot a:hover{
  color: red;
}

.tag{
 text-shadow:2px 2px 2px grey;
 animation:bayo 2s ease 1s infinite;
}

@keyframes bayo{

 0%{
    transform:rotateX(-45deg);
}
 50%{
    transform:rotateY(45deg);
}
} 