/*Home or index.html*/
body {
    background-image: url("Images/annie-spratt-0ZPSX_mQ3xI-unsplash.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;                      
    font-family: Arial, sans-serif;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

span {
    color: orangered;
    font-size: 30px;
    font-weight: bold;
}

.navigationBar {
    display: flex;
    gap: 20px;
}

.navigationBar a {
    text-decoration: none;
    font-size: 20px;
    color: #0A1F44;
    transition: color 0.3s ease;
}

.navigationBar a:hover {
    color: orangered;
}
.myName {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;
    max-width: 600px;
    margin: auto;
    color: #0A1F44;
}

.myName h3 {
    font-size: 40px;
    margin-bottom: 15px;
}

.myName p {
    font-size: 18px;
    line-height: 1.6;
}
.pill {
    background-color: #0A1F44;
    color: white;              
    border: none;               
    padding: 12px 25px;         
    margin: 10px;              
    border-radius: 25px;       
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pill:hover {
    background-color: orangered; 
    transform: scale(1.05);      
}

footer {
    background-color: rgba(10, 31, 68, 0.9);
    color: white;
    text-align: center;
    padding: 15px 20px;
}

footer {
    background-color: rgba(10, 31, 68, 0.9);
    color: white;
    text-align: center;
    padding: 10px 20px;
}

.followMe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-section, .contact-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.followMe p {
    margin: 0;
    font-weight: bold;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons img, .contact-icons img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#phone, #email {
    font-size: 13px;
    margin-right: 5px;
}
.copyright {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
}

.copyright p {
    margin: 0;
    opacity: 0.8;
}
/* Media Queries for responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigationBar {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .myName {
        height: auto;
        padding: 20px;
    }

    .myName h3 {
        font-size: 28px;
    }

    .myName p {
        font-size: 16px;
    }

    .pill {
        padding: 10px 20px;
        font-size: 14px;
    }

    .followMe {
        flex-direction: column;
        gap: 15px;
    }

    .social-section, .contact-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    span {
        font-size: 24px;
    }

    .navigationBar a {
        font-size: 16px;
    }

    .myName h3 {
        font-size: 22px;
    }

    .myName p {
        font-size: 14px;
    }

    #phone, #email {
        font-size: 12px;
    }
}

