/* Google Fonts Used: Fredoka One (bold fun), Comic Neue (clean bold) */
body {
    margin: 0;
    background: linear-gradient(135deg, #fceabb, #f8b500);
    font-family: 'Comic Neue', sans-serif;
    color: #222;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
    box-sizing: border-box;
  }
  
  .contact-container {
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(248, 181, 0, 0.5);
    padding: 40px 30px;
    text-align: center;
  }
  
  .page-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px #aa7b00;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .info-block {
    background: #ffdd44;
    border-radius: 15px;
    padding: 20px;
    flex: 1 1 200px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: default;
  }
  
  .info-block:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 204, 0, 0.6);
  }
  
  .info-block h2 {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    color: #333300;
    text-shadow: 1px 1px 0 #fff9cc;
  }
  
  .info-block p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #663300;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }
  
  .contact-form h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffb300;
    text-align: center;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    font-size: 1.1rem;
    border-radius: 15px;
    border: 2px solid #ffcc33;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Comic Neue', sans-serif;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #ffb300;
    box-shadow: 0 0 10px #ffb300;
    background: #fff9e6;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .btn-3d {
    background: linear-gradient(145deg, #ffbb00, #ffdd44);
    border: none;
    border-radius: 20px;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 15px 0;
    color: #5a3e00;
    cursor: pointer;
    box-shadow: 0 6px 0 #cc9900;
    transition: all 0.25s ease;
    user-select: none;
  }
  
  .btn-3d:hover {
    box-shadow: 0 10px 15px #ffdd44;
    transform: translateY(-5px);
    color: #3a2200;
  }
  
  .btn-3d:active {
    box-shadow: 0 2px 0 #cc9900;
    transform: translateY(2px);
  }
  
  @media (max-width: 600px) {
    .contact-info {
      flex-direction: column;
      gap: 15px;
    }
  }
  /* ---------------------------
   📱 MOBILE RESPONSIVE LAYOUT
---------------------------- */
@media only screen and (max-width: 768px) {

  body {
    padding: 10px;
    font-size: 16px;
  }

  header, .navbar, .hero, .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }

  .hero img,
  .container img,
  .product-card img,
  .gallery-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-card, .gallery-box {
    width: 100% !important;
    margin: 10px 0;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial {
    margin: 15px 0;
  }

  .footer-links, .footer {
    flex-direction: column;
    text-align: center;
  }

  form input,
  form textarea,
  form button {
    width: 100% !important;
    margin-bottom: 15px;
  }
}
