/* General styling */
body, html {
    height: 100%;
    background-color: #1a1a1a; /* Set a standard dark theme for the body */
    color: #d1d1d1; /* Light text color for better contrast */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Flexbox container */
.container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    min-height: 100vh; /* Make the container cover the full viewport height */
}

/* Main content */
main {
    flex: 1; /* Allow the main content to grow and push the footer down */
}

.navbar {
    margin-top: 10px; /* Adjust the value as needed */
}

/* Navbar styling */
nav {
    background-color: #1a1a1a; /* Match the body color */
    display: flex;
    justify-content: flex-end;
    padding: 20px 40px; /* Add padding for spacing */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 40px; /* Space between links */
}

nav ul li a {
    text-decoration: none;
    color: #d1d1d1;
    font-size: 15px; /* Smaller font size */
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffffff; /* Highlight effect */
}

/* Footer styling */
footer {
    background-color: #1a1a1a; /* Match the body color */
    color: #d1d1d1;
    text-align: center;
    padding: 10px 20px; /* Reduced padding */
    font-size: 12px; /* Smaller font */
}

/* Home content */
.home-banner {
    text-align: center;
    padding: 100px 20px;
}

.home-banner h1 {
    font-size: 36px;
    color: #ffffff;
}

.home-banner p {
    font-size: 18px;
    color: #d1d1d1;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
}

.hero-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 5px;
    border: 2px solid #333;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #f5f5f5;
}

.hero-text p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #B0B0B0;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #FFFFFF;
}

/* -- About Page -- */
.content {
    padding-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    flex-direction: column;
}

.content h2 {
    color: #5DADE2; /* Accent color */
}

.content p {
    line-height: 1.6;
}

@media (max-width: 1024px) {
    /* Adjust padding for the navbar */
    nav {
        padding: 15px 20px;
    }
    nav ul li {
        margin-right: 20px;
    }

    /* Reduce font sizes for headings and paragraphs */
    .home-banner h1 {
        font-size: 28px;
    }
    .home-banner p {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }

    /* Resize the hero image */
    .hero-image img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    /* Reduce overall padding and font sizes */
    .home-banner {
        padding: 50px 10px;
    }
    .home-banner h1 {
        font-size: 24px;
    }
    .home-banner p {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }

    /* Resize social icons */
    .social-icons a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Adjust layout for small screens */
    .hero {
        margin-top: 20px;
    }

    .home-banner h1 {
        font-size: 20px;
    }
    .home-banner p {
        font-size: 12px;
    }

    /* Resize hero image for very small screens */
    .hero-image img {
        width: 100px;
        height: 100px;
    }

    .social-icons a {
        font-size: 1rem;
    }
}

