/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media only screen and (min-width: 601px){
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    max-width: 1920px;
    margin: auto;
    background-color: #f5f5f5;
    color: #333;
    padding-top: 60px;
    background-image: url('../../images/feet-contact-info.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1000;
}

.desktop-view {
    display: flex;
    justify-content: center;
}

.mobile-view {
    display: none;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 50px;
    flex-wrap: wrap;
    align-self: center;
}

.text-container {
    background-color: rgba(189, 189, 189, 0.7);
    border-radius: 1rem;
    transform: scale(1);
    padding: 50px;
}

.text-container h1 {
    font-size: 50px;
    margin-bottom: 20px;
    text-align: left;
    color: white;
}

.text-container p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 10px;
    z-index: 10;
    color: black;
}

.contact-info {
    margin-top: 20px;
    font-size: 18px;
}

.socials a {
    color: black;
    text-decoration: none;
}
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
    .desktop-view {
        display: none;
    }
    
    .mobile-view {
        display: block;
    }
    
    body {
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        max-width: 1920px;
        margin: auto;
        background-color: #f5f5f5;
        color: #333;
        padding-top: 60px;
        background-image: url('../../images/feet-contact-info.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1000;
    }
    
    .flex-container {
        display: flex;
        flex-direction: column;
        padding: 100px 10% 50px;
    }
    
    
    .text-container {
        background-color: rgba(189, 189, 189, 0.7);
        border-radius: 1rem;
        padding: 50px;
    }
    
    .text-container h1 {
        font-size: 32px;
        text-align: left;
        color: white;
    }
    
    .text-container p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
        z-index: 10;
        color: black;
    }
    
    .contact-info {
        margin-top: 20px;
        font-size: 12px;
    }
}
