/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* width: 100%; */
}

/* body {
    font-family: Arial, sans-serif;
} */

/* Header Styling */
header {
    position: fixed;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 4.16%; /* 60px for 1440px width (60 / 1440 * 100) */
    height: 80px; /* Adjustable height */
    background: #fff; /* Adjust color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    z-index: 1000; /* Keeps it above content */
}

/* Logo */
.logo img {
    height: 50px; /* Adjustable */
    width: auto;
    transition: all 0.3s ease-in-out;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.08vw; /* 30px for 1440px width (30 / 1440 * 100) */
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #804585;
    font-weight: bold;
}

/* Contact Icons */
.contact-icons {
    display: flex;
    gap: 2.08vw; /* 30px for 1440px width */
}

.contact-icons a img {
    height: 24px; /* Adjust icon size */
    width: auto;
    transition: transform 0.3s;
}

.contact-icons a img:hover {
    transform: scale(1.1);
}

/* RESPONSIVENESS */

/* Tablets */
@media (max-width: 1024px) {
    header {
        flex-wrap: wrap;
        padding: 0 3%; /* Reduce side padding */
    }

    nav ul {
        gap: 4vw; /* Increase spacing dynamically */
    }

    .logo img{
        height: 45px;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 15px;
    }

    .logo img {
        height: 80px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icons {
        margin-top: 10px;
        justify-content: center;
    }
}
