/* styles.css */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
  }

  /*Fonts*/
  .rampart-one-regular {
  font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.chewy-regular {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
}
.rock-salt-regular {
  font-family: "Rock Salt", cursive;
  font-weight: 400;
  font-style: normal;
}

  
  /* Navbar */
 
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    border: #000;
    border-width: 3px;
    background: #f793db;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 1rem;
    z-index: 1000;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.714));
    -webkit-filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.802));
}
  
  .logo {
    font-weight: bold;
  }
  
  .logo img {
    height: 50px;
    object-fit:contain;
  }

  .cta {
    background-color: #ffe628;
    border: 2px solid black;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    filter: drop-shadow(8px 8px 0px #000);
    -webkit-filter: drop-shadow(8px 8px 0px #000);
}
    .cta:hover{
        background-color: #f793da;
        color: #fff;
    }

    .cta1 {
    background-color: #ffe628;
    border: 2px solid #f793da;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    filter: drop-shadow(8px 8px 0px #f793da);
    -webkit-filter: drop-shadow(8px 8px 0px #f793da);
}
    .cta1:hover{
        background-color: #ffad40;
        color: #fff;
    }


  /* Hero */
  .schoolbell-regular {
    font-family: "Schoolbell", cursive;
    font-weight: 400;
    font-style: normal;
  }  

  .hero {
    min-height: 75vh;
    background-color: #000;
    display: flex;
    align-items: flex-start;
    overflow: clip;
    padding-top: 3rem;
  }
  
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 1rem; 
    flex-wrap: wrap;
    overflow: auto;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
}

  .hero-content h1 {
    color: #fff;
    font-size: 5rem;
  }
  
  .hero-content p {
    margin: 1rem 0;
    font-size: 1.2rem;
  }
  

  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
  }
  
  .hero-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    transform: rotate(10deg);
    border-radius: 10px;
  }
  
  /* Social Media */
  .social {
    background-color: #ffad40;
    padding: 2rem;
    color: #000;
    text-align: center;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.802));
    -webkit-filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.802));
}

  .social p {
    font-size: 1.15rem;
  }
  .social h2 {
    color: #f793da;
    margin-bottom: 1rem;
  }
  
  .icons a {
    margin: 0 1rem;
    color: #fff;
    text-decoration: none;
  }

  .icons h2 {
    color: #f793da;
  }
  /* About us*/
  .about {
  background-image: url('backgroud pattern.jpg');
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  background-position: center;
  padding: 5rem 2rem;
  color: #fff;
  text-align: center;
}

  .icons img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.802));
    -webkit-filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.802));
}

  /* Products */
  .products {
    padding: 2rem;
    background-color: #000;
    filter: drop-shadow(0px -10px 15px rgba(0, 0, 0, 0.802));
    -webkit-filter: drop-shadow(0px -10px 15px rgba(0, 0, 0, 0.802));
}
  
  .products h2 {
    color: #f793da;
    text-align: center;
    margin-bottom: 1rem;
  }
  
/*Gellery*/
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    padding: 2rem;
  }
  
  .gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ffad40;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
  
  
  .card {
    background-color: #ffad40;
    padding: 2rem;
    width: 150px;
    text-align: center;
  }
  
  /* Reviews */
  .reviews {
    background-color: #ffad40;
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .reviews h2 {
    margin-bottom: 2rem;
    color: #fff;
  }
  
  .review-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .review-card {
    background-color: #000;
    padding: 1.5rem;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
  }
  
  .stars {
    font-size: 1.5rem;
    color: #f793da;
    text-shadow: 0 0 5px #f793da, 0 0 10px #f793da;
    margin-bottom: 1rem;
  }
  
  .review-card p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
  }

  /*Map*/

  .find-us {
    background-color: #000;
    color: #fff;
    padding: 3rem 2rem;
  }
  
  .find-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .find-us-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .find-us-info {
    max-width: 400px;
  }
  
  .find-us-info h2 {
    color: #f793da;
    margin-bottom: 1rem;
  }
  
  .find-us-info p {
    margin: 0.5rem 0;
  }
  
  .social-links a {
    color: #ffe528;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  
  .social-links a:hover {
    text-decoration: underline;
  }
  
  .map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
  }
  
  /* Footer */
  .footer {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
  }
  
  .footer-links a {
    color: #ffe528;
    margin: 0 1rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
/* Responsive para pantallas menores a 768px */
@media (max-width: 768px) {
    .navbar {
      flex-direction: row;
      align-items: center;
      padding: 0.2rem;
      justify-content: space-between;

    }

    .logo {
      margin-bottom: 0.2rem;
    }
  
    .cta {
      align-self: center;
    }
  
    .hero {
        padding-left: 0px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0px
      }


.hero-text {
    flex: 1;
    min-width: 300px;
    color: #fff;
  }
  
      .hero-image img {
        width: 50%;
        height: auto;
        transform: rotate(10deg);
        margin-top: 1rem;
      }
    
    .hero-content h1 {
      font-size: 4rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .gallery {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 80%;
      margin-bottom: 1rem;
    }
  
    .review-card {
      width: 90%;
    }
  
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .icons a {
      display: block;
      margin: 0.5rem 0;
    }
    @media (max-width: 768px) {
      .review-card {
        width: 90%;
      }
    }

  .find-us-content {
    flex-direction: column;
    text-align: center;
  }

  .find-us-image img,
  .find-us-info {
    max-width: 100%;
  }

  }  

