/* General Styles */
body {
    background-image: url('../images/background.png');
    background-size: auto 100%;
    background-position: 140% 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Lexend", sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
}

.logo {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
}

.nav-links a:hover {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.contact-btn {
    background-color: #FFD700;
    color: #333;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 110px;
    transition: box-shadow 0.3s ease;
}

.contact-btn:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Contact Page Styles */
.contact-container {
    text-align: center;
    padding: 100px 20px;
}

.contact-container h1 {
    font-size: 3rem;
    color: #3D5AFE;
    background-color: white; 
    padding: 20px 30px; 
    border-radius: 400px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
    max-width: 45%;
    margin: 0 auto; 
}


.contact-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 15px;
}

/* Social Link Styles */
.social-link {
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #FFD700; 
    border: 2px solid #FFD700;
    border-radius: 50px;
    display: inline-block;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Hover Effect */
.social-link:hover {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); 
    transform: translateY(-2px); 
}

/* Icons */
.social-link i {
    margin-right: 10px;
}
