/* General Body Styles */
html, body {
    font-family: 'Product Sans', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #0e1111 50%, #1a1e1e 100%);
    color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width:100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(15, 13, 13, 0.9);
    border-bottom: 1px solid red;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 1000;
}
.social-icons {
    display: flex;
    justify-content: center; /* Center the icons */
    margin-top: 20px; /* Space above the icons */
    gap: 15px; /* Space between icons */
}

.social-icon {
    font-size: 25px; /* Adjust size as needed */
    color: white; /* Change icon color */
    transition: transform 0.3s ease; /* Smooth zoom effect on hover */
}

.social-icon:hover {
     color: red;
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}
.logo-img {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 15px;
    font-size: 16px;
}
.nav-links img {
            width: 60px;
            height: auto;
    }

.nav-links a {
    color: red;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Main Content */
.content {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    margin-top: 30px; /* Adjust this value to decrease space above the main logo */
    text-align: center;
    max-width: 800px;
}

.main-logo {
    width: 300px;
    margin: 0px auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.main-logo:hover {
    
    transform: scale(1.05);
}
.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 20px;
    color: red; /* Highlighted color for title */
}

.description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 80%;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-style: italic;
    padding: 15px 30px;
    background-color: #0f0d0d;
    border-top: 1px solid red;
    font-size: 14px;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: red;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 55px;
        right: 20px;
        background-color: #0f0d0d;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        gap: 10px;
        flex-direction: column;
        width: 160px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}
