* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-image: url(backdrop-874452_1280.jpg);
    /* Same background image as the other pages */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}


header {
    position: fixed;
    width: 100%;
    height: 80px;
    background: rgba(53, 53, 53, 0.6);
    padding: 20px;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: right;
    border-bottom: 1px solid white;
}

nav{
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: right;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

nav li:hover {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 5px;
    transition: all 0.2s ease-in;
}

.contact-container {
    width: 90%;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
}

.contact-card {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    margin: auto;
    margin-top: 20px;
}

.contact-info h1 {
    font-size: 3rem;
    margin-top: 100px;
    border-bottom: 1px solid white;
    padding-bottom: 0.5rem;
    text-align: left;
    margin-bottom: 100px;
}

.contact-details h2 {
    border-bottom: 1px solid white;
    padding-bottom: 5px
}

.contact-details p {
    font-size: 1.2rem;
    line-height: 0.8;
    text-align: left;
    margin-bottom: 1.5rem;
}

.address {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    
}
.address p{
    line-height: 1.4rem
}

#push{
margin-top: 55px;
}
.contact-details a {
    color: #FFD700;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

footer {
    width: 100%;
    text-align: center;
    border: 1px solid white;
    padding: 1rem 0;
    color: white;
    background: rgba(53, 53, 53, 0.6);

}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-container {
        width: 90%;
    }

    nav ul {
        gap: 1rem;
        font-size: 1rem;
        justify-content: center
    }
}

@media (max-width: 768px) {
    .contact-container {
        width: 100%;
        padding: 1rem;
    }

    .contact-info h1 {
        font-size: 2.5rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    footer {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header{
        justify-content: center;
    }
    .contact-container {
        padding: 0.5rem;
        min-width: 90%
    }

    nav{
        justify-content: center;
    }

    nav ul {
        position: fixed;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .contact-info h1 {
        font-size: 2rem;
    }


    .contact-details{
        /* min-width: 95% */
    }
    footer {
        padding: 1rem;
        font-size: 0.8rem;
        margin-top: 3rem;
    }
}

@media(max-width: 340px){
    nav a{
        font-size: 0.9rem
    }

    
}