@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

:root {
  --transition: all 0.7s ease;
  --orange: #fd8a1e;
  --orangeHover: #ff7b00 ;
  --dark: #292826;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Playfair Display", serif;
  text-decoration: none;
  scroll-behavior: smooth;
  text-decoration: none;
  list-style: none;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
}

p{
  font-size: 19px;
}

h2{
  color: var(--orange);
}

.bg-orange{
  background-color: var(--orange);
}

.center {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 10px;
  width: 140px;
  display: block;
  margin: 15px auto;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover {
  opacity: 0.85;
}

.btn-primary{
  background-color: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
  margin: 0 auto !important;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 30px;
  color: #fff;
}

@media (max-width: 500px) {
  body {
    font-size: 14px;
  }
}

.nav-item {
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  border-bottom: 0.5px solid rgba(249, 211, 66, 0.3);
  opacity: 0.8;
  letter-spacing: 1.5px;
  transition: var(--transition) !important;
}

.nav-item a:hover{
    color: var(--orangeHover) !important;
    padding-left: 12px;
}


/* footer */
.footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.footer-container {
  width: 85vw;
  margin: 0 auto;
  padding: 30px 0;
}
.footer-container p,
.footer-container a,
.footer-container span {
  opacity: 0.8;
}
.footer a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.social-icons li{
    margin: 0 10px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    cursor: pointer;
}
.social-icons li:hover{
    background: var(--orangeHover);
    color: #fff;
}

.social-icons li a:hover{
    background: var(--orangeHover);
    color: #fff;
}

.contact-item span {
  display: block;
}
@media (min-width: 900px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
@media (min-width: 1170px) {
  .footer {
    text-align: left;
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container div:nth-child(1) p {
    padding-right: 20px;
  }
  .contact-item {
    display: grid;
    grid-template-columns: 5% 95%;
    margin-bottom: 15px;
    align-items: center;
  }
}

.showModal {
  position: fixed;
  background: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
}

#up-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  text-align: center;
  z-index: 99;
  background-color: var(--orange);
  color: white;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
  font-size: 25px;
}

#up-btn:hover {
  background-color: var(--orangeHover);
}
