/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #FFD700;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffb300;
}

/* Header Styles */
header {
    background-color: #111;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header h1 {
    color: #FFD700;
    font-size: 36px;
}

header button {
    background-color: #FFD700;
    color: #111;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

header button:hover {
    background-color: #ffb300;
}

/* Contact Section Styles */
.contact-section {
    padding: 50px 20px;
    background-color: #fff;
    color: #333;
    animation: fadeIn 1s ease-in-out;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 36px;
    color: #111;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    color: rgba(22, 20, 20, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Contact Columns Layout */
.contact-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out;
}

/* Left Column: Contact Methods */
.contact-methods {
    flex: 1;
    min-width: 300px; /* Ensures columns won't be too small on mobile */
    margin-bottom: 20px;
}

.contact-method {
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
}

.contact-method p {
    font-size: 18px;
    color: #555;
}

/* Right Column: Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px; /* Ensures columns won't be too small on mobile */
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 28px;
    color: #111;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form .form-group label {
    font-size: 18px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

.contact-form .form-group textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #FFD700;
    color: #111;
    padding: 12px 25px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ffb300;
}

/* Footer Styles */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* General Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* Contact Columns - Stack Vertically on smaller screens */
    .contact-columns {
        flex-direction: column;  /* Stack the columns vertically */
        align-items: center;     /* Center the content */
        gap: 20px;               /* Space between stacked sections */
    }

    /* Left Column (Contact Methods) */
    .contact-methods {
        width: 90%;  /* Ensure the contact methods don't exceed screen width */
        margin-bottom: 20px;  /* Add some space between sections */
    }

    /* Right Column (Contact Form) */
    .contact-form {
        width: 90%;  /* Full width, but not overflowing */
        padding: 20px;  /* Adjust padding */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
        box-sizing: border-box;  /* Ensures padding doesn't overflow */
    }

    /* Contact Methods */
    .contact-method {
        margin-bottom: 15px;  /* Add space between contact methods */
        padding: 15px;        /* Add padding for better visibility */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow effect */
    }

    .contact-method h3 {
        font-size: 20px;  /* Adjust title size */
    }

    .contact-method p {
        font-size: 14px;  /* Adjust text size */
    }

    /* Contact Form */
    .contact-form h3 {
        font-size: 24px;  /* Adjust form title size */
    }

    .contact-form input, 
    .contact-form textarea {
        width: 100%;  /* Full width for inputs and textareas */
        max-width: 100%;  /* Ensure no overflow */
        padding: 12px;  /* Add padding */
        font-size: 16px;  /* Increase font size for easier typing */
        border-radius: 5px;  /* Rounded corners */
        box-sizing: border-box;  /* Ensures padding doesn't overflow */
    }

    /* Button Styles */
    .contact-form button {
        padding: 12px 20px;  /* Button padding */
        font-size: 16px;  /* Button font size */
        background-color: #FFD700;  /* Matching the theme color */
        color: #fff;  /* White text */
        border: none;  /* No border */
        border-radius: 5px;  /* Rounded corners */
        cursor: pointer;  /* Pointer cursor */
        transition: background-color 0.3s ease;  /* Smooth hover effect */
    }

    .contact-form button:hover {
        background-color: #e5a700;  /* Slightly darker color on hover */
    }

    /* Adjust header title and button */
    header h1 {
        font-size: 24px;  /* Adjust header title font size */
    }

    header button {
        font-size: 14px;  /* Adjust button text */
        padding: 10px 15px;  /* Adjust button size */
    }

    /* Adjust page heading */
    .contact-container h2 {
        font-size: 28px;  /* Smaller heading for mobile */
    }

    .contact-container p {
        font-size: 16px;  /* Smaller text for better readability */
    }
}

/* Extra Small Devices (portrait phones) */
@media screen and (max-width: 480px) {
    /* Further refine layout and text for very small screens */
    .contact-columns {
        gap: 15px;  /* Reduce gap between sections */
    }

    /* Contact Methods */
    .contact-method h3 {
        font-size: 18px;  /* Smaller title */
    }

    .contact-method p {
        font-size: 12px;  /* Smaller text */
    }

    /* Contact Form */
    .contact-form h3 {
        font-size: 22px;  /* Adjust form heading size */
    }

    .contact-form input, 
    .contact-form textarea {
        padding: 10px;  /* Less padding for small screens */
        font-size: 14px;  /* Smaller font size */
        max-width: 100%;  /* Prevent overflow */
    }

    .contact-form button {
        padding: 10px 15px;  /* Smaller button */
        font-size: 14px;  /* Smaller font size */
    }

    /* Adjust header button for very small screens */
    header button {
        font-size: 12px;  /* Even smaller button text */
        padding: 8px 12px;  /* Smaller button padding */
    }

    /* Adjust heading */
    .contact-container h2 {
        font-size: 24px;  /* Smaller page heading */
    }

    .contact-container p {
        font-size: 14px;  /* Smaller paragraph font */
        line-height: 1.5;  /* Adjust line height for readability */
    }
}

