/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    min-height: 100vh;
}

.main-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* Header/Logo */
.header {
    width: 100%;
    margin-bottom: 20px;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
}

/* Golden Banner */
.banner {
    background: linear-gradient(to right, #824b11, #e8a84a, #824b11);
    padding: 25px 0;
    margin: 30px 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.banner h1 {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    color: #000;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

/* Description Text */
.description {
    margin-bottom: 40px;
}

.description p {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #c58d41;
    font-weight: 300;
}

/* Contact Form */
.contact-section {
    width: 100%;
}

.contact-box {
    border: 2px solid #c58d41;
    padding: 30px 20px;
}

.contact-box h2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1rem;
    color: #c58d41;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #c58d41;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.input-group i {
    color: #c58d41;
    font-size: 0.8rem;
    margin-right: 10px;
}

.input-group input {
    background: transparent;
    border: none;
    color: #c58d41;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    width: 100%;
    outline: none;
}

.input-group input::placeholder {
    color: #c58d41;
    opacity: 0.7;
}

.textarea-group {
    border: 1px solid #c58d41;
    margin-bottom: 20px;
}

.textarea-group textarea {
    background: transparent;
    border: none;
    width: 100%;
    padding: 10px;
    color: #fff;
    resize: none;
    outline: none;
}

.btn-submit {
    background-color: #c5c5c5;
    color: #000;
    border: none;
    padding: 8px 40px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #e0e0e0;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-bottom: 20px;
}

.footer p {
    font-size: 0.7rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .banner h1 {
        font-size: 1rem;
    }
    .description p {
        font-size: 0.95rem;
    }
    .logo {
        max-width: 280px;
    }
}
