/* ====== TailorMe Global Styles ====== */

body {

  background-color: #0c1220;

  color: white;

  font-family: 'Georgia', serif;

  margin: 0;

  padding: 0;

}



/* Logo & Title */

.navbar-logo {

  height: 60px;

  margin-right: 15px;

}



.navbar-title {

  font-size: 30px;

  color: silver;

}



/* Language */

.lang-section {

  display: flex;

  align-items: center;

}



/* Buttons General */

.main-buttons a {

  background: linear-gradient(to right, #d4af37, #b8860b);

  color: black;

  padding: 15px 30px;

  border-radius: 10px;

  font-weight: bold;

  text-decoration: none;

}



/* Icon inside buttons */

.icon-btn {

  width: 30px;

  margin-right: 10px;

  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);

  border-radius: 6px;

}



/* Text links (View Price List & Asking TailorMe) */

.text-button {

  border: 1px solid white;

  color: white;

  padding: 10px 25px;

  border-radius: 8px;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  margin-top: 20px;

}



/* Hover and Active Effects */

a:hover {

  opacity: 0.85;

  transition: all 0.3s ease;

}



a:active {

  transform: scale(0.98);

}



/* ====== Mobile Responsive Design ====== */

@media (max-width: 600px) {

  .navbar {

    flex-direction: column;

    align-items: center !important;

    text-align: center;

  }



  .navbar-logo {

    height: 70px !important;

  }



  .navbar-title {

    font-size: 32px !important;

  }



  .icon-btn {

    width: 40px !important;

    margin-right: 10px !important;

  }



  .main-buttons a {

    font-size: 18px;

    padding: 12px 25px;

  }



  .lang-section {

    justify-content: center;

    margin-top: 10px;

  }



  .text-button {

    font-size: 16px;

    padding: 10px 20px;

  }

}
