/* General Styles */
.reviews-body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

/* Navbar Style Matching your screenshot */
.header{
      width:cover;
      height:auto;
      align-items: center;
      max-width: auto;
      background-color:rgb(0, 0, 0);
      border-bottom-right-radius: 25px;
      border-bottom-left-radius: 25px;
      display:flex;
      justify-content: space-between;
      margin:5px;
      padding:10px;
      border-bottom:5px solid goldenrod;
      color:white;
      
    }

  .header .logo-text{
    display:flex;
    align-items: center;
    font-size :30px;
    
   }
   
   .logo-text span{
    color:#ffb700;
   }

  nav ul{
    display:flex;
    gap:30px;
    list-style-type: none;
  }
  nav ul a{
    text-decoration: none;
    color:rgb(255, 255, 255);
    transition:0.4s;
  }
  nav ul a:hover{
    background-color:goldenrod;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding:10px;
    color:black;
    box-shadow:0 0 15px #d7ca13;
  }

  .login{
    border-radius:30px;
    padding:10px;
    width: 100px;
    background-color:rgb(0, 0, 0);
    display: flex;
    align-items: center;
    font-size: 15px;
    border:2px solid gray;
    text-align: center;
    cursor:pointer;
    transition:all 0.4s ease;
  }
  .text{
    color:white;
    order:1;
    transition: all 0.4s ease;
    margin-left: 2px;
  }
  
  .white-ball{
    width:25px;
    height: 25px;
    background-color:color-mix(in xyz, white 50%, black 30%);
    border-radius: 50%;
    border:1px solid rgb(255, 255, 255);
    box-shadow:0 0 15px #aca519;
    transition:all 0.4s ease;
    order:1;
  }
  .login:hover .text{
    order:1;

  }
  .login:hover .white-ball{
    order:2;
  }
  .button a{
    text-align: center;
  }
  .button{
    display: flex;
    align-items: center;
    gap:10px;
  }
  .button button:hover{
    background-color:rgb(0, 0, 0);
    padding:10px;
    box-shadow:0 0 15px #ffccbc;
  }
  

/* Review Section */
.reviews-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 100px;
}
 @keyframes sidefromleft{
    from{
      opacity:0;
      transform: translateX(-100px);
    }
    to{
      opacity:1;
      transform: translateX(0);
    }
  }
  @keyframes sidefromright{
    from{
      opacity:0;
      transform: translate(-200px);
    }
    to{
      opacity:1;
      transform: translateX(0);
    }
  }
/* Glass Card Design */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease;
    animation:sidefromright 1.5s ease-out forwards;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    animation:sidefromleft 1.5s ease-out forwards;
}

.user-info img {
    width:200px;
    height:200px;
    border-radius: 50%;
    margin-left: -100px;
    margin-top: -100px;
    border: 2px solid #d4af37;
}

.user-info h3 { margin: 0; font-size: 1.1rem; color: #d4af37; }

/* Form Section */
.leave-review {
    margin-top: 80px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    border-top: 4px solid #d4af37;
}

.leave-review form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 20px auto 0;
}

.leave-review input, .leave-review select, .leave-review textarea {
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 12px;
    border-radius: 5px;
}

.submit-btn {
    background: #d4af37;
    color: black;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #f1c40f;
}