body {
    margin: 0;
    background-image: url("../background.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

h1 {
    margin: 0;
    color: rgb(253, 172, 95);
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    text-align: center;
    position: relative;
    top: 20px;
}

h2 {
    margin-top: 0;
    color: rgb(253, 172, 95);
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    border-bottom: 2px solid rgb(253, 172, 95);
    padding-bottom: 10px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Map Container */
.map-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    border-radius: 8px;
    margin-bottom: 20px;
}

.map-container p {
    margin: 0;
    color: rgb(105, 105, 105);
    font-size: 14px;
    line-height: 1.8;
}

.map-container p strong {
    color: rgb(253, 172, 95);
    font-size: 16px;
}

/* Form Container */
.form-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: rgb(105, 105, 105);
    font-weight: bold;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(253, 172, 95);
    box-shadow: 0 0 5px rgba(253, 172, 95, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: rgb(253, 172, 95);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: rgb(240, 150, 70);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Response Message */
.form-response {
    margin-top: 15px;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    display: none;
}

.form-response.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Business Hours */
.business-hours {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    color: rgb(105, 105, 105);
    font-size: 14px;
}

.hours-table .day {
    font-weight: bold;
    color: rgb(253, 172, 95);
    padding-right: 15px;
}

.hours-table .time {
    text-align: right;
}

/* Social Media */
.social-media {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(253, 172, 95);
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(253, 172, 95, 0.4);
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.social-icon.tiktok:hover {
    background-color: #000000;
}

.social-text {
    text-align: center;
    color: rgb(105, 105, 105);
    font-size: 14px;
    margin: 15px 0 0 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper,
    .contact-info-wrapper {
        gap: 20px;
        margin: 30px auto;
    }

    .map-container,
    .form-container,
    .business-hours,
    .social-media {
        max-width: 100%;
        flex: 1;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }
}

/* Tablet media query */
@media (max-width: 768px) {
    .contact-wrapper,
    .contact-info-wrapper {
        flex-direction: column;
        gap: 15px;
        margin: 20px 10px;
        padding: 15px;
    }

    .map-container,
    .form-container,
    .business-hours,
    .social-media {
        max-width: 100%;
    }

    .map-container iframe {
        height: 300px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
        padding-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .social-links {
        gap: 15px;
    }
}

/* Small mobile media query */
@media (max-width: 480px) {
    .contact-wrapper,
    .contact-info-wrapper {
        margin: 15px 5px;
        padding: 10px;
        gap: 10px;
    }

    .map-container,
    .form-container,
    .business-hours,
    .social-media {
        padding: 15px;
        border-radius: 6px;
    }

    .map-container iframe {
        height: 250px;
        margin-bottom: 15px;
    }

    .map-container p {
        font-size: 13px;
        line-height: 1.6;
    }

    h1 {
        font-size: 18px;
        top: 15px;
    }

    h2 {
        font-size: 14px;
        margin: 0 0 15px 0;
        padding-bottom: 8px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
        border-radius: 3px;
    }

    .form-group textarea {
        min-height: 80px;
        rows: 4;
    }

    .submit-btn {
        padding: 10px;
        font-size: 13px;
    }

    .hours-table td {
        padding: 8px 0;
        font-size: 12px;
    }

    .hours-table .day {
        padding-right: 10px;
        font-size: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .social-links {
        gap: 12px;
        margin: 15px 0;
    }

    .social-text {
        font-size: 12px;
    }
}

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

