/* General Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
nav {
    width: 100%;
    height: 10vh;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.logo span {
    color: rgb(211, 3, 3);
    text-shadow: 0 0 10px rgb(211, 3, 3);
}

.hamburg,
.cancel {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 20px;
    color: white;
    font-size: clamp(2.5rem, 0.5rem + 5vw, 3rem);
    display: none;
}

.nav-container .links {
    display: flex;
}

.nav-container .links a {
    font-size: 1.2rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}

.nav-container .links a:hover {
    color: rgb(211, 3, 3);
    border-bottom: 2px solid rgb(211, 3, 3);
}

/* Dropdown Menu (Initially Hidden) */
.dropdown {
    z-index: 100;
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-500px);
    backdrop-filter: blur(4px) brightness(40%);
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px black;
    display: none;
}

.dropdown .links a {
    display: flex;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
}

.dropdown .links a:hover {
    background-color: rgb(211, 3, 3);
}

/* Contact Section */
.contact {
    padding: 50px;
    text-align: center;
}

.contact-div {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.contact-div h3 {
    font-size: 2rem;
    color: rgb(211, 3, 3);
    margin-bottom: 30px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    color: white;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group small {
    font-size: 0.8rem;
    color: #aaa;
}

.btn {
    padding: 10px 20px;
    border: none;
    background-color: rgb(211, 3, 3);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: white;
    color: rgb(211, 3, 3);
}

/* Footer Section */
.footer {
    background-color: black;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-btn:hover {
    background-color: white;
    color: rgb(211, 3, 3);
}

.footer-btn a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-btn a:hover {
    color: rgb(211, 3, 3);
}
.social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid rgb(211,3,3);
    border-radius: 50%;
    color: rgb(211,3,3);
    margin: 0 15px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}

.social-links i:hover{
    scale: 1.3;
    filter: drop-shadow(0 0 10px rgb(211,3,3));
    color: black;
    background-color: rgb(211,3,3);
}
/* Responsive Design for Mobile */
@media (max-width: 884px) {
    .logo {
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }

    .nav-container .links {
        display: none; /* Hide desktop navigation links on mobile */
    }

    .hamburg,
    .cancel {
        display: block; /* Show hamburger icon on mobile */
    }

    .social-links i {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }

    .dropdown {
        display: block; /* Dropdown menu hidden initially */
    }
}
@media (max-width: 768px) {
    
    .contact-div {
        width: 90%;
        margin: 20px auto;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-btn {
        width: 100%;
    }
}
