/* styles.css */

/* Reset some default margins and paddings */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

/* Set up the gradient background */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, black, rgb(20, 2, 159));
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

/* Logo/Name styling */
.logo h1 {
    font-size: 24px;
    font-weight: bold;
}

/* Navigation styling */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    text-decoration: underline;
}


/* Image Panel Styling */
.image-panel {
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    overflow: hidden;
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire div */
}

.quote-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add shadow for better readability */
}

.quote-text p {
    margin: 5px 0;
    font-size: 24px; /* Adjust font size as needed */
    font-weight: bold;
}

/* Icon Links Row Styling */
.icon-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    max-width: 800px; /* Adjust as needed */
}

.icon-links a {
    display: inline-block;
    width: 80px; /* Set the width of the icons */
    height: 80px; /* Set the height of the icons */
}

.icon-links img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the icons are contained within the given width/height */
}

/* Introduction Text Box Styling */
.intro-text-box {
    background: linear-gradient(to bottom, rgb(20, 2, 51), rgb(20, 2, 159)); /* Slightly transparent white background */
    color: rgb(255, 255, 255);
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

/* Social Links Footer Styling */
footer {
    margin-top: auto;
    padding: 20px 0;
    background:linear-gradient(to bottom, rgba(20, 2, 159, 0.14), rgb(20, 2, 159)); /* Slightly darker background for the footer */
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 40px; /* Set the width of the social icons */
    height: 40px; /* Set the height of the social icons */
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the icons fit within the given width/height */
}

