



.reservation-banner {
    background-color: #f0f0f0d3;
    width: 80%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.reservation-btn {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 90px;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 40PX;
}

.contact-info p {
    margin: 1rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

.contact {
    background:none;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
}


.contact-form-all {
    background: none;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    gap: 2rem;
}

.title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: #ff6600;
}

.description {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.social-links1 {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    font-size: larger;
  }
  
  .social-link1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background-color: rgba(255, 255, 255, 0.1); */
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none   ;
  }
  
  .social-link1:hover {
    /* background-color: rgba(255, 255, 255, 0.2); */
    transform: translateY(-3px);
  }
  
  .social-link1 i {
    font-size: 2rem;
    color: #ff6600  ;
  }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 20px ;
    outline: none;
    transition: all 0.2s;
}

input:focus, textarea:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

textarea {
    resize: none;
    min-height: 120px;
}

button {
    background-color: #ff6600;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #ff5900;
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-form-all {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .contact-form-all {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 1.25rem;
    }
}


@media (max-width: 768px) {
    

    
    .reservation-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .main-content {
        padding: 1rem;
    }
}

 


