/* * {
    margin-top: 0px;



}

.writingone {

    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;

}

.writingtwo {

    font-family: "Fjalla One", serif;
    font-weight: 400;
    font-style: normal;
}


/* Contact Box */
/* 
body {
    background-image: url(../static/LOGO\ BACKGROUND.png);
    opacity: 0.9;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#contactbox {
    background-color: #2C2C2C;
    margin: auto;
    color: white;
    border: 2px,solid,#ffffff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    /* margin-top: 0px; */
    /* align-items: center;
    justify-content: center;
    width: 40%;
    height: 640px;

}

#contactbox h3 {
    margin-top: 70px;
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
    color: #FFAB00;
}

#contactbox h6 {
    margin-top: 10px;
    font-size: 1.2rem;
    text-align: center;
    font-style: italic;
    color: #FFAB00;
}

#formbox {
    margin-top: 40px;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.formitems {
    padding-top: 10px;
}

.inputb {
    border: .4px, solid, black;
    border-radius: 5px;
    width: 369px
}

.formitems #Address {
    border: 0.4px, solid, black;
    border-radius: 5px;
    width: 369px;

}


#checked {
    border: 2px, solid, black;
    border-radius: 4px;

}

#contactMethod {
    border: 2px, solid, black;
    border-radius: 5px;
    width: 240px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.reqitems {
    margin-top: 4px;

}

#sub {
    border: 2px, solid, black;
    border-radius: 10px;
    width: 200px;
    background-color: #cfcfef;
    font-weight: bold;

} */ 

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* More professional default font */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../static/LOGO BACKGROUND.png');
    /* Ensure background covers the whole area */
    background-repeat: repeat;
    background-attachment: fixed; /* Optional: keeps background fixed during scroll */
    opacity: 0.9;
    width: 100%;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.writingone {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
}

.writingtwo {
    font-family: "Fjalla One", serif;
    font-weight: 400;
    font-style: normal;
}

#contactbox {
    background-color: rgba(44, 44, 44, 0.9); /* Slightly transparent background */
    color: white;
    border-radius: 15px; /* Softer rounded corners */
    padding: 30px;
    margin: 20px;
    width: 90%; /* Responsive width */
    max-width: 600px; /* Maximum width on larger screens */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

#contactbox h3 {
    margin-top: 0; /* Reset top margin */
    font-size: 2.2rem; /* Larger, more prominent heading */
    text-align: center;
    font-weight: bold;
    color: #FFAB00;
    margin-bottom: 10px;
}

#contactbox h6 {
    margin-top: 0; /* Reset top margin */
    font-size: 1rem;
    text-align: center;
    font-style: italic;
    color: #ddd; /* Slightly lighter description */
    margin-bottom: 20px;
    line-height: 1.6; /* Improved readability */
}

#formbox {
    margin-top: 20px;
}

.formitems {
    margin-bottom: 20px;
    text-align: left; /* Align labels to the left */
}

.formitems label {
    display: block; /* Make labels take full width */
    margin-bottom: 5px;
    font-weight: bold;
    color: #eee;
}

.inputb,
#Address,
#contactMethod {
    width: 100%; /* Make inputs take full width of their container */
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 1rem;
    outline: none; /* Remove default focus outline */
}

#Address {
    resize: vertical; /* Allow vertical resizing of the textarea */
    min-height: 100px;
}

#contactMethod {
    appearance: none; /* Remove default arrow in some browsers */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 16px;
    cursor: pointer;
}

.reqitems {
    margin-right: 5px;
}

#sub {
    background-color: #FFAB00;
    color: #222;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto; /* Adjust width to content */
    display: block; /* Make it a block-level element */
    margin: 20px auto 0; /* Center the button */
}

#sub:hover {
    background-color: #e09b00;
}

#checked {
    margin-right: 5px;
    vertical-align: middle;
}

.formitems > label[for="checked"] {
    display: inline-block; /* Keep label and checkbox on the same line */
    font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #contactbox {
        padding: 20px;
    }

    #contactbox h3 {
        font-size: 2rem;
    }

    #contactbox h6 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #contactbox {
        padding: 15px;
    }

    #contactbox h3 {
        font-size: 1.8rem;
    }

    #contactbox h6 {
        font-size: 0.85rem;
    }

    .formitems label {
        font-size: 0.95rem;
    }

    .inputb,
    #Address,
    #contactMethod {
        font-size: 0.95rem;
        padding: 8px;
    }

    #sub {
        font-size: 1rem;
        padding: 10px 20px;
    }
}