/* style.css */

/* Reset default list styles */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000; /* Dark background color */
}

/* Style list items (menu items) */
li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s; /* Smooth hover transition */
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #000000; /* Darker color on hover */
}

/* Body styles */
body {
    background-color: #000000; /* Dark gray background for the entire page */
    color: #fff; /* White text color */
    font-family: Arial, sans-serif;
}

/* Header styles */
header {
    background-color: #000000; /* Slightly darker header background */
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Hero section styles */
#hero {
    position: relative;
    background-color: #000000; /* Dark background color for hero section */
    color: #fff;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

#hero h2,
#hero p,
#hero button {
    opacity: 0; /* Initially hidden */
    transform: translateY(30px 0);
    transition: opacity 1s ease, transform 1s ease;
}

/* Night color (dark blue) */
#hero.night {
    background-color: #000080;
}

#hero.night h2,
#hero.night p,
#hero.night button {
    opacity: 1; /* Fade in during the transition */
    transform: translateY(0);
}

/* Other section styles (adjust as needed) */
#about,
#services,
#portfolio,
#contact {
    padding: 80px 0;
}

/* Footer styles */
footer {
    background-color: #000000;
    color: #888;
    text-align: center;
    padding: 20px 0;
}
