* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #161616;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 50px;

  background: rgba(0,0,0,0.6);

  backdrop-filter: blur(10px);

  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 120px;

  text-decoration: none;
}

.logo img {
  width: 70px;
}

.logo-text h2 {
  color: white;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.logo-text span {
  color: #F5BE00;
  font-size: 14px;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #F5BE00;
}

/* HERO */

.hero {
  height: 100vh;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('fondo.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 900px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 20px;

  transform: translateX(-20px);
}

.hero-logo {
  width: 180px;
  margin-bottom: 10px;

  animation: float 4s ease-in-out infinite;
}

.hero h1 {
  font-size: 65px;
  font-family: 'Playfair Display', serif;

  margin-bottom: 10px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

.btn{
    padding: 15px 40px;

    background: #9B002D;

    border-radius: 40px;

    color: white;

    text-decoration: none;

    transition: 0.4s ease;

    transform: translateY(15px);
}

.btn:hover {
  background: #F5BE00;
  color: black;

  transform: scale(1.05);
}

/* ABOUT */

.about {
  padding: 120px 10%;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 60px;

  flex-wrap: wrap;

  
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 50px;
  color: #F5BE00;

  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: #ddd;
}

.about-video {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

.about-video video {
  width: 100%;
  max-width: 420px;

  height: 650px;

  object-fit: cover;

  border-radius: 20px;
}

/* MENU */

.menu {
  padding: 120px 10%;
  
}

.menu h2 {
  text-align: center;
  font-size: 55px;

  margin-bottom: 60px;

  color: #F5BE00;
}

.menu-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.menu-card {
  background: #2a2a2a;

  padding: 40px;

  border-radius: 20px;

  transition: 0.4s;
}

.menu-card:hover {
  transform: translateY(-10px);
}

.menu-card h3 {
  margin-bottom: 20px;
  color: #F5BE00;
}

/* CONTACT */

.contact {
  padding: 120px 10%;
}

.contact h2 {
  text-align: center;

  font-size: 50px;

  margin-bottom: 50px;

  color: #F5BE00;
}

.contact-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.contact-box {
  background: #1f1f1f;

  padding: 40px;

  border-radius: 20px;

  text-align: center;
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #F5BE00;
}

.contact-box a {
  color: white;
  text-decoration: none;
}

/* FOOTER */

footer {
  text-align: center;

  padding: 30px;

  background: black;
}

/* ANIMATIONS */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* MOBILE */
@media(max-width: 768px){

    /* NAVBAR */

    .navbar{
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo{
        gap: 20px;
    }

    .logo img{
        width: 55px;
    }

    .logo-text h2{
        font-size: 22px;
    }

    .nav-links{
        gap: 15px;
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* HERO */

    .hero{
        padding: 140px 20px 80px;
        height: auto;
    }

    .hero-content{
        transform: translateX(0);
    }

    .hero h1{
        font-size: 42px;
        line-height: 1.2;
    }

    .hero p{
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-mascot{
    width: 170px;

    margin-top: 40px;

    left: 0;

    display: block;

    margin-left: auto;
    margin-right: auto;
}

    .btn{
        padding: 14px 30px;
        font-size: 15px;
    }

    /* ABOUT */

    .about{
        padding: 80px 20px;
        flex-direction: column;
        text-align: center;
    }

    .about-text h2{
        font-size: 38px;
    }

    .about-text p{
        font-size: 15px;
    }

    .about-video video{
        width: 100%;
        max-width: 100%;
        height: 420px;
    }

    /* MENU */

    .menu{
        padding: 80px 20px;
    }

    .menu h2{
        font-size: 40px;
    }

    .menu-card{
        padding: 25px;
    }

    /* LOCATION */

    .location-info{
        flex-direction: column;
        gap: 40px;
        padding: 80px 20px;
    }

    .location h2{
        font-size: 36px;
    }

    .map-container iframe{
        height: 350px;
    }

    /* REVIEWS */

    .review-card{
        min-width: 260px;
    }

    /* FOOTER */

    footer{
        padding: 25px 15px;
        font-size: 14px;
    }

}







.map-container{
    width: 100%;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero-text{
    animation: fadeUp 1.5s ease;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.location-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 100px 6%;
    width: 100%;
    margin-top: 60px;
}


.location-box{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 55px;
    min-width: 320px;
}


.map-container iframe{
    width: 100%;
    height: 550px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.reviews-slider{
    overflow: hidden;
    width: 100%;
    margin-top: 80px;
    padding: 20px 0;
}

.reviews-track{
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollReviews 20s linear infinite;
}

.review-card{
    min-width: 320px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.review-card p{
    margin: 15px 0;
    line-height: 1.6;
}

@keyframes scrollReviews{
    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(-50%);
    }
}
.location h2{
    color: #d4af37 !important;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}
.smoke-section{
    position: relative;
    overflow: hidden;
    background: #050505;
}

.smoke-overlay{
    position: absolute;

    inset: 0;

    background-image:
    radial-gradient(
        circle at bottom,
        rgba(255,255,255,0.25),
        transparent 60%
    );

    filter: blur(80px);

    opacity: 0.8;

    animation: smokeMove 8s ease-in-out infinite alternate;

    z-index: 1;
}

.smoke-section .about-text,
.smoke-section .about-video,
.smoke-section h2,
.smoke-section p{
    position: relative;
    z-index: 2;
}
@keyframes smokeMove{

    0%{
        transform: translateY(0px) scale(1);
        opacity: 0.5;
    }

    50%{
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }

    100%{
        transform: translateY(-60px) scale(1.2);
        opacity: 0.4;
    }

}
.hero-mascot{
    width: 250px;

    margin-top: 150px;
 position: relative;
left: 0px;
    animation: mascotFloat 4s ease-in-out infinite;

    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.45));
}
@keyframes mascotFloat{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }

}
.visit-title{
    position: relative;
    top: 100px;
}