/* dimensions.css - Responsive Design */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Default Styling (Desktop) */
.header-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.nav-bar a {
    text-decoration: none;
    margin: 0 10px;
    color: #333;
    font-weight: bold;
}

.contact-section,
.thank-you-popup,
.footer-content {
    width: 80%;
    margin: 0 auto;
}

footer {
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
}

/* Tablet Devices */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-bar a {
        margin: 5px 0;
    }

    .contact-section,
    .thank-you-popup,
    .footer-content {
        width: 90%;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-bar {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-section,
    .thank-you-popup,
    .footer-content {
        width: 95%;
    }

    .thank-you-popup img {
        width: 100%;
        height: auto;
    }

    button {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
    }
}
