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

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
  color: white;
  background: #faf3e0;
}

/* 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  */
/* *************************************************************** */
/* ******************************************** */

.service-container{
  margin-top: 14vh;
  display: flex;
  width: 100vw;
  height: 70vh;
  justify-content: center;
  align-items: center;
  background: #faf3e0;
  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 */
  }
}

.service-head{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    justify-content: first baseline;
    align-items: center;
    text-align: center;
}

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

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

.service-head p{
    /* font-family: 'Courier New', Courier, monospace; */
    font-size: 22px;
    color: black;
}


.menu-container1{
  visibility: visible;
  display: grid;
  width: 100vw;
  height: 180vh;
  justify-content: center;
  align-items: center;
  background: #faf3e0;
  /* background-color: aqua;  */
}

/* *********************************************** */

.menu-container{
  visibility: hidden;
  display: none;
  width: 100vw;
  height: auto;
  justify-content: center;
  align-items: center;
  background: #faf3e0;
  /* background-color: aqua;  */
} 
/* ******************************************** */

.cover-menu{
  display: flex;
  width: 90vw;
  height: 60vh;
  /* background-color: rgb(255, 123, 0); */
}

.img-left{
  width: 100%;
  height: 100%;
  background-color: rgb(249, 243, 243);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.img-left h1{
  font-family: fantasy;
    color: rgb(213,0,0);
    padding-top: 15px;
}
.img-left h3{
  font-family: fantasy;
  color: black;
  padding-top: 10px;

}

.blinking-arrow {
  display: inline-block;
  font-size: 30px; /* Adjust the size as needed */
  color: black;  /* Arrow color */
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}


.img-left p{
  margin-top: 4vh;
  /* font-family: 'Courier New', Courier, monospace; */
  font-style: italic;
  font-size: 19px;
  color: black;
  text-align: center;

}

.img-left img{
  width: 100%;
  height: 100%;
}
/* ******************************************************** */
#cont-bar{
  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;
  
}

.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;
  
}
.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;
  
}

.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);
}
} 