*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    padding: 20px;
    font-family: Josefin Sans,sans-serif;
    font-weight: 500;
    font-size: 1em;
    text-transform: uppercase;
    color: white;
    text-align: center;
    background-color: inherit;
}
.nav-links:hover{
    text-decoration: underline;
}
button.logout-btn.nav-links {
    all: unset; /* removes all default button styles */
    cursor: pointer;
    padding: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 1em;
    text-transform: uppercase;
    color: white;
    text-align: center;
    background-color: inherit;
}

button.logout-btn.nav-links:hover {
    text-decoration: underline;
}
main{
    background-color: rgb(254, 250, 245)
}
nav{
    /* width: 100%;
    height: 80px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
    /* background-color: rgb(36, 34, 30); */
    /* background: linear-gradient(#24221e, #565040); */
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(36,34,30,1) 50%, rgba(0,212,255,1) 100%);
    border:2px solid black;
    border-radius: 15px;
}
nav img{
    position: absolute;
    left: 10px;
    height: 100%;
    margin-left: 20px;
}
footer{
    text-align: center;
    background-color: rgb(41 52 61);
    color: white;
    padding: 20px 0;
}
header{
    padding: 5px 10px 5px 10px;
    top: 0.1px;
    position: sticky;
    z-index: 10;
}
.bg{
    background-image: url(bg.webp);
    z-index: -10;
    width: 100%;
    height: 100vh;
    background-size: cover;
    opacity: 0.7;
}
.bg h1{
    font-family: Josefin Sans,sans-serif;
    color: rgb(255, 255, 255);
    font-size: 3em;
    padding: 50px;
    position: relative;
    top: 50px;
    animation: textAnimate ease-out 0.5s 1 forwards normal;
}
@keyframes textAnimate {
    from{
        transform: translateX(-10px);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}
.contact_us{
    text-align: center;
    font-size: 1.1em;
    line-height: 1.75em;
    padding: 25px;
}
.contact_us h2{
    font-size: 2.5em;
    padding-bottom: 20px;
}
.contact_us p{
    font-size: 1.2em;
}
.contact_us h4{
    font-size: 1.2em;
}
.details{
    background-color: rgb(238 239 241);
    display: flex;
    text-align: left;
    flex-direction: row;
    align-items: center;
    padding: 32px;
    padding-left: 200px;
    padding-right: 200px;
    margin: 50px;
    justify-content: space-between;
    border-radius: 0.5em;
}
.details div h3{
    padding-bottom: 10px;
}
.details a{
    all:unset;
    font: inherit;
    color: inherit;
}
.details a:hover {
    color: blue;
}
.lilita-one-regular {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.bebas-neue{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.review {
  background-color: #fffaf0;
  padding: 40px 30px;
  max-width: 500px;
  margin: 50px auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.review h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #333;
}

.review form input,
.review form textarea {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: 0.2s ease;
}

.review form input:focus,
.review form textarea:focus {
  border-color: #ff9900;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 153, 0, 0.4);
}

.review form button {
  background-color: #ff9900;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

.review form button:hover {
  background-color: #e58c00;
}