body {
  font-family: Arial, sans-serif;
  background-color: #fff4ee; 
}



header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

header .logo img {
  height: 40px;  
  width: auto;
}

.cart img {
  height: 20px;
  vertical-align: middle;
}

nav ul {
  list-style: none;
  gap: 16px;
  margin: 15px 10px;
}

nav ul li a {
  text-decoration: none;
  color:#000; 
  font-weight: 600;
  text-align: end;
}

nav ul li a:hover {
  text-decoration: underline;
}
.jumbotron,
.card-body,
.container,
.site-header {
  font-family: 'Verdana', serif !important;
}

.jumbotron .display-4 {
  font-weight: bold;
}

nav a {
  text-decoration: none;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.jumbotron {
  height: 50vh;
  padding: 5em inherit;
  margin-bottom: 0;
  background-color: #53C0FB;
  background: url('../img/cover_back.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  font-weight: bold;
}

@media (min-width: 768px) {
  .jumbotron {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.jumbotron p:last-child {
  margin-bottom: 0;
}

.jumbotron-heading {
  font-weight: 300;
}

.jumbotron .container {
  max-width: 40rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  text-shadow: 1px 1px 2px grey;
}

.jumbotron .lead {
  font-size: 38px;
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: .25rem;
}

.site-header a {
  color: white;
  transition: ease-in-out color .15s;
}

.site-header .dropdown-menu a {
  color: black;
}

.dropzone {
  border: 2px dashed #0087F7;
  border-radius: 5px;
  background: white;
}

.img-fit {
  max-height: 100%;
}

.alert {
  position: fixed;
  top: 80px;
  width: 50%;
  left: 50%;
  transform: translate(-50%, 0);
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
}

.cursor-active {
  cursor: pointer;
}

.left {
  float: left;
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.5);
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

#spinner-wrapper {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1021;
  display: none;
}

main {
  min-height: calc(100vh - 210px);
}

a.custom-card,
a.custom-card:hover {
  color: inherit;
  text-decoration: inherit;
}

.checked {
  color: orange;
}



.navbar-light {
    background-color: #ff6600 !important;
    border: none !important;
    border-width:0!important;

}

.btn, .btn-lg, .btn-success {
    background-color: #FF7323 !important;
    border: none !important;
    border-width:0!important;

}

.btn-primary-custom {
            background: #FF7323;
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 10px;
            font-weight: 600;
        }



.ratings-panel {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.ratings-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-box {
  border-left: 2px solid #ddd;
  padding-left: 15px;
}

.rating-subtitle {
  font-weight: 600;
  margin-bottom: 10px;
}

.rating-comment {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 8px;
  resize: none;
  margin-bottom: 10px;
}

.rating-stars {
  display: flex;
  justify-content: center;
  direction: rtl;
  font-size: 1.5rem;
  cursor: pointer;
}

.rating-stars input {
  display: none;
}

.rating-stars label {
  color: #ccc;
  transition: color 0.2s;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: #ff6600;
}

.rating-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 8px;
}

.rating-btn:hover {
  background-color: #e25500;
}

/* === MODO OSCURO === */
.dark-mode {
  background-color: #121212 !important;
  color: #f5f5f5 !important;
}

.dark-mode .card {
  background-color: #1e1e1e !important;
  color: #f5f5f5 !important;
}

.dark-mode .list-group-item {
  background-color: #2c2c2c !important;
  color: #fff !important;
}

.dark-mode .navbar,
.dark-mode .footer {
  background-color: #000 !important;
  
}
.dark-mode .menu a {
  color:#fff4ee !important;
}
.dark-mode .btn-outline-light {
  border-color: #fff4ee !important;
  color: #fff4ee !important;
}

.dark-mode .btn-outline-light:hover {
  background-color: #fff4ee !important;
  color: #121212 !important;
} 
.dark-mode textarea  {
  background-color: #121212 !important;
  color: #fff4ee !important;
  border: 1px solid #555 !important;
}
.dark-mode .rating-box {
  background-color: #2c2c2c !important;
  color: #fff4ee !important;
  border-left: 2px solid #555 !important;

} .dark-mode .album {
  background-color: #121212 !important;
}

.dark-mode .btn-light {
  background-color: #ff6600 !important;
  color: #fff4ee !important;
  border: none !important;
}

.dark-mode h1, .dark-mode h2, .dark-mode p, .dark-mode a, .dark-mode span{
  color: #fff4ee !important;
}

.dark-mode .section.hero {
  background-color: #1e1e1e !important;
}
.profile-image img {
  width: 150px;
   height: 150px; 
   border-radius: 50%; 
   object-fit: cover; 
   border: 2px solid #FF7323;
  }

  .text-success {
    color: #FF7323 !important;
  }

  .card.sticky-top {
  max-width: 300px;
}

.badge-primary {
    background-color: #FF7323 !important;
}

.navbar {
  background-color: #ff6600;
  padding: 10px 30px;
}

#darkModeToggle {
  width: 148px;
}

.btn-sm {
  background-color: #ff9457 !important;
}