/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}


/* Responsive Video */
@media screen and (max-width: 768px) {

  .catalog {
    padding: 2rem 1rem;
  }
}


.catalog {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* GRID de las cards */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Cards individuales */
.hotel-card, .casino-card, .tour-card, .restaurant-card, .bar-card, .rentcar-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: transform 0.2s ease;
}
.hotel-card:hover {
  transform: scale(1.02);
}
.casino-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}
.casino-card h3{
  font-size: 1.2rem;
  margin: 10px 0 5px;
  text-align: center;
}
.casino-card p{
  font-size: 0.95rem;
  margin: 5px 0;
  text-align: center;
}
.casino-card button {
  display: block;
  margin: 10px auto 0;
  padding: 8px 14px;
  background: #FF9900;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.tour-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}
.tour-card h3{
  font-size: 1.2rem;
  margin: 10px 0 5px;
  text-align: center;
}
.tour-card p{
  font-size: 0.95rem;
  margin: 5px 0;
  text-align: center;
}
.tour-card button {
  display: block;
  margin: 10px auto 0;
  padding: 8px 14px;
  background: #FF9900;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.restaurant-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}
.restaurant-card h3{
  font-size: 1.2rem;
  margin: 10px 0 5px;
  text-align: center;
}
.restaurant-card p{
  font-size: 0.95rem;
  margin: 5px 0;
  text-align: center;
}
.restaurant-card button {
  display: block;
  margin: 10px auto 0;
  padding: 8px 14px;
  background: #FF9900;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.bar-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}
.bar-card h3{
  font-size: 1.2rem;
  margin: 10px 0 5px;
  text-align: center;
}
.bar-card p{
  font-size: 0.95rem;
  margin: 5px 0;
  text-align: center;
}
.bar-card button {
  display: block;
  margin: 10px auto 0;
  padding: 8px 14px;
  background: #FF9900;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.rentcar-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}
.rentcar-card h3{
  font-size: 1.2rem;
  margin: 10px 0 5px;
  text-align: center;
}
.rentcar-card p{
  font-size: 0.95rem;
  margin: 5px 0;
  text-align: center;
}
.rentcar-card button {
  display: block;
  margin: 10px auto 0;
  padding: 8px 14px;
  background: #FF9900;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.hotel-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}

.hotel-card h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  text-align: center;
}

.hotel-card p {
  font-size: 0.95rem;
  margin: 5px 0;
  text-align: center;
}

.hotel-card button {
  display: block;
  margin: 10px auto 0;
  padding: 8px 14px;
  background: #FF9900;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* RESPONSIVE ajuste extra para móviles */
@media (max-width: 480px) {
  .catalog h2 {
    font-size: 1.5rem;
  }
  .catalog-grid {
    grid-template-columns: 4fr;
  }
}
.card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 5px;
}


    /* FOOTER */
    .footer {
      width: 100%;
      background: #003b5c;
      color: white;
      text-align: center;
      padding: 20px 0;
      font-size: 1em;
    }
    .footer p {
      margin: 0;
    }
    @media (max-width: 480px) {
    .loading-logo {
      width: 120px;
    }
  
    .loading-text {
      font-size: 1.6rem;
    }
  
    .spinner {
      width: 40px;
      height: 40px;
      border-width: 5px;
    }
  }
  
  @media (min-width: 1024px) {
    .loading-text {
      font-size: 3rem;
    }
  
    .loading-logo {
      width: 200px;
    }
  
    .spinner {
      width: 60px;
      height: 60px;
      border-width: 6px;
    }
  }
     .lang-selector {
  position: fixed;
  top: 90px; /* debajo del navbar */
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.lang-selector img {
  width: 50px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 5px;
  border: 1px solid #ccc;

  transition: transform 0.2s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
  
  .lang-selector img:hover {
    transform: scale(1.1);
  }
  
  .lang-options {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }
  
  .lang-selector.open .lang-options {
    display: flex;
  }
   @media screen and (max-width: 768px) {
  .lang-selector img{
      width:40px;
      height: 30px;
  }
}
@media screen and (max-width: 480px){
  .lang-selector img{
    top:60px;
      width:40px;
      height: 25px;
  }
}
   .whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-alert {
  background-color: #25D366;
  color: white;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-container:hover .whatsapp-alert {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.whatsapp-link:hover {
  transform: scale(1.1);
}

.whatsapp-link img {
  width: 65px;
  height: auto;
}
.whatsapp-dropdown {
  position: absolute;
  bottom: 80px;
  right: 10px;
  background-color: white;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  min-width: 160px;
  overflow: hidden;
}

.whatsapp-dropdown a {
  padding: 10px 15px;
  text-decoration: none;
  color: #075e54;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
  text-align: center;
}

.whatsapp-dropdown a:hover {
  background-color: #f1f1f1;
}

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-container:hover .whatsapp-alert {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-dropdown a i {
  margin-right: 8px;
  color: #075e54;
}

/* Responsivo */
@media screen and (max-width: 480px) {
  .whatsapp-alert {
    font-size: 12px;
    padding: 5px 10px;
  }

  .whatsapp-link img {
    width: 55px;
  }

  .whatsapp-container {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
}


/* RESPONSIVE: iPhone 5 y otros pequeños */
@media screen and (max-width: 375px) {
  .whatsapp-alert {
    font-size: 12px;
    padding: 4px 8px;
  }

  .whatsapp-link img {
    width: 55px;
  }
}

/* Tablets y medianos */
@media screen and (min-width: 376px) and (max-width: 768px) {
  .whatsapp-alert {
    font-size: 9px;
    padding: 5px 9px;
  }

  .whatsapp-link img {
    width: 60px;
  }
}

/* Teléfonos grandes y tablets grandes */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-alert {
    font-size: 14px;
  }

  .whatsapp-link img {
    width: 65px;
  }
}

/* Pantallas grandes */
@media screen and (min-width: 1025px) {
  .whatsapp-alert {
    font-size: 14px;
  }

  .whatsapp-link img {
    width: 70px;
  }
}
@media (max-width: 480px) {
    .loading-logo {
      width: 120px;
    }
  
    .loading-text {
      font-size: 1.6rem;
    }
  
    .spinner {
      width: 40px;
      height: 40px;
      border-width: 5px;
    }
  }
  
  @media (min-width: 1024px) {
    .loading-text {
      font-size: 3rem;
    }
  
    .loading-logo {
      width: 200px;
    }
  
    .spinner {
      width: 60px;
      height: 60px;
      border-width: 6px;
    }
  }
     .ini{

color: #FFC300;
font-weight: 900;
text-shadow: 
  -1px -1px 0 #000,  
  1px -1px 0 #000,  
  -1px 1px 0 #000,  
  1px 1px 0 #000,  
  0 0 10px #FFC300;
}
#loading-screen {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background: linear-gradient(rgba(155, 155, 155, 0.11), rgba(0, 0, 0, 0.205)),
              url('/imagen/descuento.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.7s ease;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.loading-logo {
width: 200px;
border-radius: 50%;
box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
margin-bottom: 20px;
}

.loading-text {
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 3rem;
margin-bottom: 25px;
text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.spinner {
border: 6px solid rgba(255,255,255,0.4);
border-top: 6px solid #fff;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}


    /* NAVBAR */
    .navbar {
    position: absolute; /* así el video va atrás */
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
  }
  .navbar.shrink {
    height: 60px; /* más chico al hacer scroll */
    padding: 5px 20px;
    background-color: rgba(255,255,255,0.95);
  }
  
  .logo {
    transition: all 0.3s ease;
  }
  
  .navbar.shrink .logo {
    width: 65px;
    transform: translateY(0); /* se mete dentro del navbar */
  }
  .logo {
    width: 150px;
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.5);
    object-fit: cover;
    transform: translateY(24%); /* CLAVE: Baja el logo para que sobresalga */
    position: relative;
    z-index: 1001;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
  }
  
  .nav-links ul {
    display: flex;
    gap: 21px;
    list-style: none;
    margin: 0 20px;
    padding: 0 4px;
  }
  
  .nav-links ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links ul li a:hover {
    color: #0078A8;
  }
  
  .menu-actions {
    display: flex;
    align-items: center;
    gap: 6px; /* más pegado */
    margin-left: auto;
  }
  
  .hamburger {
    display: none;
    font-size: 1.9rem;
    cursor: pointer;
    color: #0078A8;
  }
  
  .btn-reserva {
    background: #0078A8;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s;
  }
  
  .btn-reserva:hover {
    background: #005f86;
  }
  
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: inline-block;
  }
  
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .right-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Responsive */
  /* RESPONSIVE */
  @media screen and (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .mobile-only {
      display: inline-block;
    }
  
    .desktop-only {
      display: none;
    }
  
    .nav-links {
      position: fixed;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 400px;
      background: white;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      display: none;
      z-index: 999;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links ul {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  
    .nav-links .btn-reserva {
      margin-top: 10px;
    }
  }
  @media screen and (max-width: 1024px) {
  .logo {
    width: 200px;
    transform: translateY(20%);
  }
}

@media screen and (max-width: 768px) {
  .logo {
    width: 150px;
    transform: translateY(18%);
  }
}

@media screen and (max-width: 480px) {
  .logo {
    width: 120px;
    transform: translateY(16%);
  }
}

@media screen and (max-width: 360px) {
  .logo {
    width: 100px;
    transform: translateY(14%);
  }
}
.phone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phone-list li {
  margin-bottom: 6px;
}

.phone-list a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.phone-list a i {
  margin-right: 8px;
  color: white;
}
.phone-list a:hover{
  color: yellow;
}
    /* HERO HEADER */
    .hero {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-top: 80px;
    }
    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 80vh;
      object-fit: cover;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      color: white;
      padding: 20px;
      max-width: 900px;
      animation: fadeInDown 2s ease;
    }
    .hero-content h1 {
      font-size: 3em;
        color: #FFC300;
        font-weight: 900;
        text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,  
        -1px 1px 0 #000,  
        1px 1px 0 #000,  
        0 0 10px #FFC300;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        margin-bottom: 20px;
    }
    .hero-content p {
      font-size: 1.4em;
      margin-bottom: 25px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    }
    .button {
      background-color: #0096fa;
      color: white;
      padding: 14px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s, background 0.3s;
    }
    .button:hover {
      background-color: #0093ad;
      transform: scale(1.1);
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-50px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 4em;
  }

  .hero p {
    font-size: 3em;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .hero h1 {
    font-size: 3em;
    margin-top: 1.5em;
  }

  .hero p {
    font-size: 2em;
    padding: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .hero{
    height: 60vh;
  }

  .hero h1 {
    font-size: 2.3em;
    padding-bottom: 30px;
  }

  .hero p {
    font-size: 1em;
  }

  .button {
    font-size: 0.95em;
    padding: 12px 24px;
  }
}

@media screen and (max-width: 360px) {
  .hero h1 {
    font-size: 1.4em;
  }

  .hero p {
    font-size: 0.85em;
    padding: 0 10px;
  }

  .button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}
.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  min-width: 220px;
  z-index: 1000;
}

.dropdown .dropdown-menu li {
  padding: 0;
}

.dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.dropdown .dropdown-menu a:hover {
  background-color: #f3f3f3;
  color: #0078A8;
}

/* Mostrar menú al pasar el mouse en desktop */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive: menú desplegable dentro del menú móvil */
@media screen and (max-width: 768px) {
  .dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: 100%;
  }

  .dropdown .dropdown-menu a {
    padding: 8px 0;
    text-align: center;
    font-size: 1rem;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}
.main-footer {
    background-color: #003b5c;
    color: white;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .footer-logo {
    flex: 1 1 220px;
  }
  
  .footer-logo img {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footer-links,
  .footer-info,
  .footer-social {
    flex: 1 1 150px;
  }
  
  .footer-links h4,
  .footer-info h4,
  .footer-social h4 {
    margin-bottom: 10px;
    color: #FFC300;
  }
  
  .footer-links ul,
  .footer-info ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-info li {
    margin-bottom: 8px;
  }
  
  .footer-links a,
  .footer-info a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover,
  .footer-info a:hover {
    color: #FFC300;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.4rem;
    color: white;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #00AEEF;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-logo img {
      margin: 0 auto 10px;
    }
  
    .social-icons a {
      margin: 0 10px;
    }
  }
  #scrollToTop {
  position: fixed;
  bottom: 30px;
  left: 20px;  /* O usa right si quieres que esté a la derecha */
  z-index: 9999;
  background-color: #0078A8;
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: none;
  transition: background 0.3s;
}


#scrollToTop:hover {
  background-color: #005f86;
}
.ini{

    color: #FFC300;
    font-weight: 900;
    text-shadow: 
      -1px -1px 0 #000,  
      1px -1px 0 #000,  
      -1px 1px 0 #000,  
      1px 1px 0 #000,  
      0 0 10px #FFC300;
    }
    #loading-screen {
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background: linear-gradient(rgba(155, 155, 155, 0.11), rgba(0, 0, 0, 0.205)),
              url('/imagen/descuento.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.7s ease;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
    }


    .loading-logo {
    width: 200px;
    border-radius: 50%;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    }
  
    .loading-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
  
    .spinner {
    border: 6px solid rgba(255,255,255,0.4);
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    }
    @media (max-width: 480px) {
    .loading-logo {
      width: 120px;
    }
  
    .loading-text {
      font-size: 1.6rem;
    }
  
    .spinner {
      width: 40px;
      height: 40px;
      border-width: 5px;
    }
  }
  
  @media (min-width: 1024px) {
    .loading-text {
      font-size: 3rem;
    }
  
    .loading-logo {
      width: 200px;
    }
  
    .spinner {
      width: 60px;
      height: 60px;
      border-width: 6px;
    }
  }
    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
    }
    .alert-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow:
    0 0 5px red,
    0 0 10px red,
    0 0 20px red,
    0 0 40px rgba(255, 0, 0, 0.8);
  animation: glowText 2s ease-in-out infinite;
  margin-top: 12px;
  z-index: 2;
}

@keyframes glowText {
  0% {
    text-shadow:
      0 0 5px red,
      0 0 10px red,
      0 0 20px red,
      0 0 40px rgba(255, 0, 0, 0.8);
  }
  50% {
    text-shadow:
      0 0 2px #ff4d4d,
      0 0 4px #ff4d4d,
      0 0 8px #ff4d4d,
      0 0 16px rgba(255, 77, 77, 0.5);
  }
  100% {
    text-shadow:
      0 0 5px red,
      0 0 10px red,
      0 0 20px red,
      0 0 40px rgba(255, 0, 0, 0.8);
  }
}

@media (max-width: 768px) {
  .alert-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 20px;
      text-align: center;
    }
    .card {
      margin-top: 3em;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s;
    }
    .card:hover {
      transform: scale(1.02);
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .card-info {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .card-info h3 {
      margin: 0;
      font-size: 1.3rem;
      font-weight: bold;
    }
    .card-info p {
      flex-grow: 1;
      margin: 10px 0;
    }
    .card-info .stars {
      color: gold;
      margin-top: 5px;
    }
    .card-info .btn {
      margin-top: 12px;
      text-align: center;
      background: #0077ff;
      color: white;
      padding: 10px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
    }
    .card-info .btn:hover {
      background: #005dcc;
    }