body {
    font-family: Arial, sans-serif;
    background-color: #ccc;
    font-family: 'paladin3d', sans-serif;
}

.contact-section {
    position: relative;
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  text-align: center;
  margin-bottom: 60px;
}

.contact-section::before{
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('IMG/Choco_Frosty.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  opacity: 50%; /* Adjust the opacity as needed */
  z-index: -1; /* Ensure the pseudo-element is behind the content */
}


.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    
    
}

.contact-form, .contact-info {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin-bottom: 2rem;
    

}

.contact-form label{
    color: white;
}


.contact-form h3, .contact-info h3 {
    margin-bottom: 1rem;
    color: white;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #50abac;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #ff3b2f;
}

.contact-info p {
    margin-bottom: 1rem;
    color: white;
}

.contact-info img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.map-container iframe{
    border: 0;
  border-radius: 10px;
  max-width: 100%;
  height: 450px; 
}

.social-media {
    margin-top: 1rem;
}

.social-btn {
    display: inline-block;
    margin: 0 0.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.instagram {
    background: #E4405F;
}

.social-btn.facebook {
    background: #3B5998;
}

.social-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        width: 100%;
    }
}
