:root {
    --mainColor: #d62e33;
    --secColor:#777;
}

body,html {
    scroll-behavior: smooth;
}
/* start nav bar */
nav{
    width: 250px;
    position: fixed;
    background-color: #414658;
    color: white;
    left: -250px;
}
nav ul li:hover i {
    color: var(--mainColor);
    cursor: pointer;
}
nav ul li:hover a {
    color: var(--mainColor);
}

nav ul li:first-child{
    font-size: 25px;
    transition: color 0.3s ease;
}

nav ul li a {
    text-decoration: none;
    font-size: 25px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* End nav bar */


/* Home section */
#home {
    background-image: url(../img/events-heavenly-header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 70vh;
}

#home .layer {
    background-color: rgba(209, 31, 31, 0.5);
    height: 100%;
    color: white;
}


#home .container .caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70vh;
    align-items: center;
}
#home .caption h1 {
    font-size: 60px;
}

#home .nav {
    position: absolute;
    top: 35%;
    left: 12px;
    font-size: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
#home .nav p {
    margin: 0 0 0 15px;
    font-size: 30px;
}  

 /* End section */

/* Start singer section*/
#singer {
    margin: 100px auto;
    width: 60%;
  }
  #singer .head {
    background: #e68186;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
  }
  #singer p {
    text-align: center;
    background-color: #cccccc;
    padding: 15px 10px;
    margin-bottom: 0;
  }
 /* End singer section */


 /*   Start event section = */
 .event{
    background-image: linear-gradient(rgba(200,0,0,0.7),rgba(200,0,0,0.7)),url(../img/invitation-2508607__340.jpg);
    background-position: center center;
    background-size: cover;
}
.item{
    border: 1px solid white;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 25px;
}


   /*   End event section = */

/*   Start Contact section  */
#contact{
    padding-top: 140px;
}
#contact p {
    color: var(--secColor);
}
#contact .addrees li {
    color: var(--secColor);
}
#contact .addrees li i {
    color: var(--mainColor);
}
#contact li a {
    text-decoration: none;
    color: var(--secColor);
}

#contact .address li a:hover {
    color: var(--mainColor);
}

#contact ul.social li {
    border: 1px solid #777;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    cursor: pointer;
}

#contact ul.social li.face:hover {
    background-color: #4267b2;
  }
  #contact ul.social li.twitter:hover {
    background-color: #1da1f2;
  }
  #contact ul.social li.google:hover {
    background-color: #db4a39;
  }
  #contact ul.social li.github:hover {
    background-color: #171515;
  }
  #contact ul.social li.behance:hover {
    background-color: #1769ff;
  }
  #contact ul.social li.dribble:hover {
    background-color: #0d0c22;
  }
  #contact ul.social li:hover a {
    color: white;
  }


 
  #contact form input,
#contact form textarea{
    margin-bottom: 20px;
    border-radius: 0;
}
#contact form textarea{
    height: 200px;
    resize:vertical;
}

#contact form button{
    background-color: #D62E33;
    color:#fff;
    padding:10px 20px;
    border-radius: 0;
    text-transform: uppercase
}

#status
{
    font-size: 20px;
    color: #D62E33;
}

#contact form input:focus-visible,
#contact form textarea:focus-visible {
  outline-color: #1da1f2;
  transform: scale(1.2);
}
/*   End Contact section  */

 /* Start Btn Up  */

#btnUp
{
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99999;
    display: none;
    background-color: #d62e33;
    color: #999;
}
