* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
}

body {
    padding-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    min-height: 500px;
    background-image: url("../images/backpattern.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto auto; 
    grid-template-areas:
        "nav nav"
        "header header"
        "main aside"
        "footer footer";
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
    padding: 20px;
    background-color: rgb(0, 0, 0);
    border-radius: 12px;
}

.nav-area       { grid-area: nav; }
.header-area    { grid-area: header; }
.main-area      { grid-area: main; }
.aside-area     { grid-area: aside; }

.footer-area    { 
    grid-area: footer; 
    background: #000000;
    color: white;
    padding: 15px;
    text-align: center;
    border-top: 3px solid #D40000;
}

.nav-area {
    display: flex;
    justify-content: center; 
    background: #3d3d3d;
    padding: 15px 20px;
    border-radius: 8px;
    border-bottom: 3px solid #D40000;
}

.logo {
    height: 200px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    padding: 10px 16px;
    font-weight: bold;
    border-radius: 6px;
    color: white;
}

.nav-menu a:hover {
    background: #D40000;
    color: white;
}

.header-area {
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.main-area,.aside-area {
    padding: 20px;
    color: white;
}

.contact-content h2,.contact-content h3 {
    margin-bottom: 10px;
    color: #D40000;
}

.contact-content p {
    margin-bottom: 8px;
    line-height: 1.4;
    color: rgb(255, 255, 255);
}

.map-img {
    width: 90%;
    border-radius: 10px;
    margin: 15px 0 25px 0;
    border: 2px solid #D40000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid #D40000;
}

.contact-form button {
    width: 150px;
    padding: 10px;
    background: #D40000;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #b10000;
}

.hours-box ul {
    list-style: none;
    padding-left: 0;
}

.hours-box li {
    margin-bottom: 6px;
}

.divider {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.social-box h3 {
    margin-bottom: 10px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.social-row img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-row span {
    font-size: 15px;
    color: #ff0000;
}


textarea {
    resize: none;
}

@media screen and (max-width: 800px) {
    #grid-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "nav"
            "header"
            "main"
            "aside"
            "footer";
        width: 95%;
        max-width: none;
    }
}

@media screen and (max-width: 700px) {
    body {
        background-image: none;
        background-attachment: scroll;
    }

    #grid-container {
        width: 100%;
        max-width: none;
        border-radius: 0;
    }
}