*{
    margin: 0;
    padding: 0;
}

.custom-header{
    background: linear-gradient(
        135deg,
        #ffd1dc,
        #f8a1c4,
        #f3c6d9
    );
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    min-height: 50px;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
}

.logo{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: 10px;
}

.custom-link{
    color: #3b1d2a !important;
    background: rgba(255,255,255,0.7);
    padding: 10px 22px !important;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    margin: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-link:hover{
    background: linear-gradient(135deg, #ffd1e8, #ff6fae);
    color: white !important;
    box-shadow: 0 6px 15px rgba(231,84,128,0.5);
}

.navbar-toggler{
    border: 2px solid white;
}

.navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 576px){
    .custom-link{
        width: 170px;
        margin-bottom: 12px;
        font-size: 16px;
    }
}

.hero {
  width: 100%;
  height: 100vh;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    ),
    url("https://images.unsplash.com/photo-1512496015851-a90fb38ba796?w=1600");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 80px;
   padding-top: 90px; 
}

.hero-content {
  max-width: 500px;
  color: white;
}

.hero-content h1 {
  font-size: 100px;
  margin-bottom: 15px;
  font-family: "Rubik Dirt", system-ui;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  font-family: "Roboto Slab", serif;
}

.hero-btn {
  text-decoration: none;
  background-color: pink;
  color: black;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 18px;
  transition: 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #ffd1e8, #ff6fae);
  color: white;
}

.l-p > .latest{
    text-align: center;
    font-family: "Rubik Dirt", system-ui;
}

@media (max-width: 992px) {
  .hero {
    padding-left: 40px;
  }

  .hero-content h1 {
    font-size: 70px;
  }

  .hero-content p {
    font-size: 17px;
  }
}


@media (max-width: 600px) {
  .hero {
    height: auto;              
    min-height: 100vh;
    padding: 80px 20px 40px;
    padding-top: 120px;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}


.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    position: relative;
    width: 300px;
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 20px;
    transition: bottom 0.4s ease;
}

.card:hover .info {
    bottom: 0;
}

.info h3 {
    margin: 0 0 10px;
    font-family: "Archivo Black", sans-serif;
}

.info p {
    font-size: 14px;
     font-family: "TASA Explorer", sans-serif;
}

.card .info .order-btn{
    background-color: pink;
    border: none;
    color: black;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.card .info .order-btn:hover{
    background: linear-gradient(135deg, #ffd1e8, #ff6fae);
    color: black;
    border-bottom: 5px solid black;
}
