* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #111;
  color: white;
}

.container {
  width: 90%;
  margin: auto;
}

.section {
  padding: 80px 5%;
  text-align: center;
}

.dark {
  background: #000;
}

/* ================= LOGO 3D & SCISSORS ================= */


/* ================= HERO WITH SMOOTH MOVING BACKGROUND ================= */

.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}

/* Moving background image */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3%;
  width: 106%;
  height: 100%;
  background: url("simo4.jpg") center/cover no-repeat;
  animation: moveLR 25s ease-in-out infinite alternate;
  z-index: 0;
}

/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 30px 50px;
  border-radius: 20px;
  backdrop-filter: blur(2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

/* Small smooth left-right animation */
@keyframes moveLR {
  0% { transform: translateX(0); }
  100% { transform: translateX(-3%); }
}

/* ================= BUTTONS ================= */

.btn {
  background: #007bff;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* ================= GRID ================= */

.grid {
  display: grid;
  gap: 25px;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ================= CARDS ================= */

.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  perspective: 1000px;
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.card:hover img {
  transform: scale(1.05) rotateY(5deg);
}

.card:hover {
  transform: rotateY(5deg) translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.price {
  color: #007bff;
  font-size: 1.3rem;
  margin-top: 5px;
}

.stock {
  font-size: 0.9rem;
  color: #ccc;
}

/* ================= HORARIOS 3D ================= */

.horarios-box-3d {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.horario-card {
  background: #222;
  padding: 20px;
  border-radius: 15px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transform-style: preserve-3d;
  transition: transform 0.4s, box-shadow 0.4s, background 0.3s;
  cursor: pointer;
}

.horario-card:hover {
  transform: rotateX(10deg) rotateY(10deg) translateZ(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.9);
}

.horario-card:not(.cerrado):hover {
  background: #0f9d58;
  box-shadow: 0 15px 40px rgba(15,157,88,0.9);
  color: white;
}

.horario-card.cerrado {
  background: #e10600;
  color: white;
  cursor: not-allowed;
}

/* ================= ABOUT ME ================= */

#about-me {
  position: relative;
  color: white;
  padding: 120px 100px;
  text-align: center;
  overflow: hidden;
  perspective: 1000px;
}

#about-me::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("nadi.png") center/cover no-repeat;
  z-index: 0;
}
#about-me:hover::before {
  transform: scale(1.05);
}

#about-me .about-box {
  position: relative;
  z-index: 1;
}

.about-box {
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-5px);
}

/* ================= FOOTER ================= */

footer {
  background: #000;
  padding: 20px;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 50px 5%;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .horarios-box-3d {
    flex-direction: column;
    align-items: center;
  }
}
/* ================= PREMIUM ABOUT UPGRADE ================= */

/* Animación al hacer scroll */
/* Container flex */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

/* Image box */
.about-image-box {
  perspective: 1200px;
}

/* Instagram-style image */
.about-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5; /* Portrait style like Instagram */
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  transition: transform 0.5s, box-shadow 0.5s;
  animation: floatingImage 6s ease-in-out infinite;
}

/* Smooth floating effect */
@keyframes floatingImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Hover 3D effect */
.about-img:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 30px rgba(0,123,255,0.6);
}

/* About box next to image */
.about-box {
  background: linear-gradient(145deg, #111, #000);
  border-radius: 25px;
  padding: 30px 40px;
  max-width: 500px;
  color: #ddd;
  box-shadow: 0 15px 50px rgba(0,0,0,0.9);
  transition: transform 0.3s;
}

.about-box:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-box {
    max-width: 90%;
    margin-top: 20px;
  }
}
/* ================= PRECIOS IMAGE HOVER EFFECT ================= */

/* Make price card images a bit smaller */
#precios .card img {
  width: 90%;           /* slightly smaller than full width */
  max-width: 220px;     /* optional: limit max size */
  border-radius: 15px;
  margin: 0 auto 10px;  /* center and spacing */
  display: block;
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}

/* Hover effect: LED blue glow */
#precios .card:hover img {
  transform: scale(1.05); /* slightly zoom */
  filter: brightness(1.2); /* brighter */
  box-shadow: 0 0 20px #d4af37, 0 0 40px #d4af3750, 0 0 60px #d4af3730;
}
/* ================= HEADER + LOGO ================= */

header {
  background: #000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  perspective: 1000px; /* 3D effect */
}

/* Logo Text */
.logo-text {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #f1f1f1, #eaeae9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  animation: floatLogo 3s ease-in-out infinite;
}

/* Scissors */
.logo-scissors {
  font-size: 2rem;
  color: #007bff;
  animation: scissorsRotate 4s ease-in-out infinite alternate;
}

/* Floating Animation for Text */
@keyframes floatLogo {
  0% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-4px) rotateX(2deg) rotateY(2deg); }
  50% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  75% { transform: translateY(-4px) rotateX(-2deg) rotateY(-2deg); }
  100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
}

/* Scissors Rotation Animation */
@keyframes scissorsRotate {
  0% { transform: rotateZ(0deg); }
  50% { transform: rotateZ(20deg); }
  100% { transform: rotateZ(-10deg); }
}

/* Logo hover effect */
.logo:hover .logo-text {
  transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

/* ================= NAVIGATION MENU ================= */

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #007bff;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #007bff;
}


/* ================= LOGO ================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffffff, #f1d77a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: floatLogo 3s ease-in-out infinite;
}

.logo-scissors {
  font-size: 1.6rem;
  color: #007bff;
  animation: scissorsRotate 4s ease-in-out infinite alternate;
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes scissorsRotate {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(20deg); }
  100% { transform: rotate(-10deg); }
}

/* ================= NAVIGATION ================= */

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #007bff;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #007bff;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-scissors {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 0.85rem;
  }

}

/* ================= VAPERS SECTION ================= */

.vapers {
    padding: 80px 5%;
    background: #111;
    text-align: center;
    color: white;
}

.vapers h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #d4af37;
}

.vaper-container {
    max-width: 900px;
    margin: auto;
    perspective: 1000px;
}

.vaper-img {
    width: 100%;
    border-radius: 20px;
    transition: 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.vaper-container:hover .vaper-img {
    transform: rotateY(8deg) scale(1.03);
    box-shadow: 0 0 40px rgba(255,255,255,0.8);
}

.vaper-info {
    margin-top: 25px;
}

.vaper-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vaper-info p {
    font-size: 1rem;
    color: #ccc;
    max-width: 700px;
    margin: auto;
}

.price {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ffcc;
}
/* ================= AGE WARNING ================= */

.age-warning {
    padding: 60px 5%;
    background: #000;
    display: flex;
    justify-content: center;
}

.warning-box {
    max-width: 800px;
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.7),
        inset 0 0 15px rgba(255,255,255,0.05);
    transform: perspective(1000px) rotateX(5deg);
    transition: 0.4s ease;
}

.warning-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ff4444;
}

.warning-box p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.warning-box:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(255,0,0,0.5),
        0 0 30px rgba(255,255,255,0.2);
}
/* ================= SOCIAL SECTION ================= */

.social-section {
    padding: 80px 5%;
    background: #111;
    text-align: center;
    color: white;
}

.social-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #d4af37;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    perspective: 1000px;
}

.social-card {
    width: 180px;
    height: 180px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: 0.4s ease;
    transform-style: preserve-3d;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 10px;
    transition: 0.4s;
}

.social-card:hover {
    transform: rotateY(10deg) rotateX(10deg) scale(1.05);
}

/* WhatsApp glow */
.whatsapp:hover {
    box-shadow: 0 0 40px rgba(37,211,102,0.8);
}

.whatsapp i {
    color: #25D366;
}

/* Instagram glow */
.instagram:hover {
    box-shadow: 0 0 40px rgba(225,48,108,0.8);
}

.instagram i {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* ================= FOOTER ================= */

.footer {
    background: #000;
    padding: 25px 5%;
    text-align: center;
    border-top: 1px solid #222;
}

.footer p {
    color: #777;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer p:hover {
    color: #d4af37;
}
/* ================= MAP SECTION ================= */

.map-section {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    text-align: center;
    color: white;
}

/* Background image */
.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("lma7al.jpeg") center/cover no-repeat;
    filter: blur(4px); /* Soft blur */
    opacity: 0.6;
    z-index: -2;
    animation: moveBackground 25s ease-in-out infinite;
}

/* Dark overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Background animation */
@keyframes moveBackground {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

.map-content {
    position: relative;
    z-index: 2;
}

.map-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #d4af37;
    letter-spacing: 2px;
}

.map-content iframe {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}



