
/* Add some basic styles */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
}
/* Header Styles */
header {
    display: flex;
    align-items: center;
    justify-content: center; /* Center all elements */
    background:orange; /* Header background color */
    color: white; /* Header text color */
    padding: 1rem; /* Header padding */
}

.logo-container {
    width: 80px; /* Adjust based on logo size */
    height: 80px; /* Adjust based on logo size */
    border-radius: 50%; /* Makes it round */
    overflow: hidden; /* Ensures the image fits within the round shape */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Box shadow */
    display: inline-block; /* Allows inline placement */
    margin-right: 1rem; /* Spacing between logo and text */
}

.logo {
    width: 100%; /* Make image fill the container */
    height: auto; /* Maintain aspect ratio */
}

header h1, header h2 {
    margin: 0;
    text-align: center; /* Align text left */
}
h1 {
    margin: 0;
    text-align: center; /* Align text left */
}
nav {
    flex-grow: 1; /* Allow nav to take remaining space */
    text-align: center; /* Center nav items */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: purple; /* Change color on hover */
}
.nav-dots {
    text-align: center;
    margin-top: 10px;
}

.nav-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb; /* Inactive dot color */
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dot.active {
    background-color: #ffdd57; /* Active dot color */
}

.nav-button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background-color 0.3s;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}
.story {
    margin-bottom: 20px;
}
.video-section, .stats-section, .more-stories {
    margin-top: 40px;
    box-shadow: 0 4px 10px orange; /* Box shadow */
}
.video {
    margin-bottom: 20px;
    width: 48%; /* Set width for videos */
    display: inline-block; /* Align videos side by side */
}
.stats-container {
background-color:#c012c0; /* Light background color */
padding: 20px; /* Add some padding */
border-radius: 10px; /* Rounded corners */
box-shadow: 0 4px 10px orange; /* Box shadow */
text-align: center; /* Center align text */
margin: 20px 0; /* Space around the container */
}

.stats-container h2 {
margin-bottom: 20px; /* Space below the heading */
font-size: 24px; /* Heading size */
color: #333; /* Heading color */
}

.stats {
display: flex; /* Flexbox layout for side by side */
justify-content: space-around; /* Space items evenly */
}

.stat {
background-color: #ffffff; /* White background for stats */
padding: 15px; /* Padding inside each stat box */
border-radius: 8px; /* Rounded corners */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Box shadow for each stat */
width: 30%; /* Width for each stat box */
}

.stat h2 {
font-size: 36px; /* Font size for numbers */
color: #2c3e50; /* Dark color for numbers */
}

.stat p {
font-size: 18px; /* Font size for descriptions */
color: #7f8c8d; /* Gray color for descriptions */
}

.more-stories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.story-container {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.more-stories h2 {
    margin-top: 40px;
}
.more-stories p {
    margin: 5px 0;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    background-color: #007BFF;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
}
.read-more:hover {
    background-color: #0056b3;
}
.featured-story {
    border: 2px solid purple;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px purple /* Box shadow */
}
/* General styles for the submission form */
.story-submission {
    background-color:orange; /* Light background for contrast */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    margin: 20px auto; /* Center the form */
    max-width: 1000px; /* Limit width */
    box-shadow: 0 2px 10px purple; /* Soft shadow */
}

/* Form labels */
.story-submission label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block; /* Ensure labels are on separate lines */
}

/* Input boxes and textarea */
.story-submission input[type="text"],
.story-submission textarea {
    width: 100%; /* Full width */
    padding: 10px; /* Padding for comfort */
    border: 1px solid #ccc; /* Border color */
    border-radius: 4px; /* Slightly rounded corners */
    margin-bottom: 15px; /* Space between inputs */
    font-size: 16px; /* Larger font size */
}

/* Input focus styles */
.story-submission input[type="text"]:focus,
.story-submission textarea:focus {
    border-color: #007BFF; /* Highlight border on focus */
    outline: none; /* Remove default outline */
}

/* Submit button styles */
.story-submission button {
    background-color: #007BFF; /* Button color */
    color: #fff; /* Text color */
    padding: 10px 15px; /* Padding for button */
    border: none; /* Remove default border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Button hover effect */
.story-submission button:hover {
    background-color: #0056b3; /* Darker color on hover */
}


* Footer Container */
footer {
    background-color:white; /* Dark background */
    color:black; /* White text */
    padding: 50px 20px; /* Padding to add space around the content */
    font-family: 'Arial', sans-serif;
}

/* Footer Content Layout */
.footer-content {
    max-width: 1200px;
    margin: 0 auto; /* Center the footer content */
    display: flex;
    flex-wrap: wrap; /* Wrap content on small screens */
    justify-content: space-between; /* Spread the columns evenly */
}

/* Footer Links Section */
.footer-links {
    flex: 1 1 200px; /* Flexible basis for responsiveness */
    margin: 20px;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase; /* Uppercase titles for distinction */
    color: purple; /* Highlight color for section titles */
}

/* List Styling */
.footer-links ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px; /* Space between list items */
    font-size: 16px;
}

.footer-links li:before {
    content: '✓'; /* Checkmark before each list item */
    color: #f5b400;
    margin-right: 10px;
}

/* Footer Text Links */
.footer-links a {
    color: white;
    text-decoration: none; /* Remove underline */
}

.footer-links a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Footer Bottom Text */
footer p {
    margin-top: 30px;
    text-align: center; /* Center the copyright text */
    font-size: 14px;
    color: #aaa; /* Lighter text color */
    border-top: 1px solid #444; /* Thin top border */
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack columns vertically on small screens */
    }
    .footer-links {
        text-align: center; /* Center-align links on small screens */
    }
}