/* Global styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll */
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #111;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    padding: 5px 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffcc00;
}

/* Banner */
.banner-container {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #222;
    margin-top: 60px; /* Adjust for fixed navbar */
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.overlay-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 1000px;
    width: 100%;
    padding: 0 10px; /* Reduces excess margins */
    margin: 20px auto 0;
}

/* Developer details */
.developer-details {
    width: 100%;
    max-width: 800px;
    background-color: #222;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
}

.developer-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.developer-pfp {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

/* Quote table */
.quote-table {
    width: 100%;
    margin-top: 10px;
}

.quote-table td {
    padding: 10px;
    background-color: transparent;
}

/* Mobile Fixes */
@media (max-width: 800px) {
    .navbar {
        padding: 15px 10px; /* Reduce navbar side padding */
    }

    .nav-links {
        gap: 8px; /* Reduce link spacing */
    }

    .content-wrapper {
        padding: 0 5px; /* Reduce margins further */
        width: 100%; /* Ensure full width */
    }

    .developer-details {
        width: 100%;
    }
}
