@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: rgb(20, 20, 20);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(img/SanFrancisco.svg);
}

nav p {
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #F7F7F7;
    color: #F7F7F7;
    text-align: center;
    font-family: Poppins;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

section .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

section h1 {
    color: #F7F7F7;
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

section h2 {
    color: #F7F7F7;
    text-align: center;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

section button {
    color: #141414;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 280px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #F7F7F7;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

section button:hover {
    background-color: #e0e0e0;
}

.contact-info {
    margin-top: 80px;
    text-align: center;
    color: #F7F7F7;
    font-family: Poppins;
    font-size: 20px;
    line-height: 120%;
}

.contact-info a {
    color: #F7F7F7;
    text-decoration: underline;
}

.container {
    margin: auto;
    display: flex;
    justify-content: center;
    width: 98%;
    max-width: 1200px;
    flex-direction: column;
    gap: 24px;
}

footer {
    height: 110px;
    display: flex;
    align-items: center;
    border-top: 1px solid #F7F7F7;
    margin-top: auto;
}

footer p {
    color: #F7F7F7;
    text-align: left;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer a {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #F7F7F7;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
}

footer img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: invert(100%);
}

.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    width: 98%;
    max-width: 1200px;
    align-items: center;
}

/* Mobile styles for devices under 700px */
@media screen and (max-width: 700px) {
    nav p {
        height: 80px;
        font-size: 24px;
    }
    
    section {
        padding: 20px 15px;
    }
    
    section h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    section h2 {
        font-size: 16px;
        line-height: 1.4;
        margin-top: 10px;
    }
    
    section .btn {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    section button {
        width: 100%;
        max-width: 280px;
        font-size: 16px;
    }
    
    .contact-info {
        margin-top: 60px;
        font-size: 16px;
    }
    
    footer {
        height: auto;
        padding: 20px 0;
    }
    
    .footer-container {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
    }
    
    footer p, footer a {
        text-align: center;
        font-size: 14px;
    }
    
    footer a {
        margin: 0 auto;
    }

    .container{
        gap:0;
    }
}