/* ✅ Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ✅ Body */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F7FA;
    color: #333;
    text-align: center;
    line-height: 1.6;
    background-image: url("./images/background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

/* ✅ Navigation Bar */
.nav {
    background: #ffffff99;
    padding: 15px;
    display: flex-box;
}

.nav img {
    width: 180px; /* ✅ Ensures the VuoriTech logo is NOT massive */
    max-width: 100%;
    height: auto;

}

.nav a {
    color: #004aad;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    transition: 0.3s;
}

.nav a:hover {
    text-decoration: underline;
}

/* ✅ Footer */
footer {
    margin-top: auto;
    padding: 30px;
    background: #004aad99;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ✅ Footer Links (BBB + Facebook "F" Logo, Properly Spaced) */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;  /* ✅ Ensures proper spacing between BBB & Facebook */
}

/* ✅ BBB Logo */
.footer .bbb {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 220px;
    height: auto;
}
.footer .bbb img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ✅ Facebook "F" Logo (Correct Size) */
.footer .facebook-link img {
    width: 40px;  /* ✅ Properly sized */
    height: 40px;
    display: block;
    transition: opacity 0.3s;
}
.footer .facebook-link:hover img {
    opacity: 0.8;
}

/* ✅ Blue Box Styling (For Key Sections) */
.blue-box {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #004aad;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: 600;
}
.blue-box h2, .blue-box p, .blue-box a {
    color: #fff;
    margin: 0;
}
.blue-box a {
    text-decoration: underline;
    font-weight: 700;
}
.blue-box a:hover {
    text-decoration: none;
}

/* ✅ Skillset Section (White Box) */
.skills-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffffaa;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.skills-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #004aad;
    margin-bottom: 20px;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
}
.skill-box {
    background: #004aad;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive Design (Mobile Fixes) */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    .footer .facebook-link img {
        width: 35px; /* ✅ Smaller size for mobile */
        height: 35px;
    }
    .logo-banner img {
        width: 150px; /* ✅ Adjusts logo size on smaller screens */
    }
}

