/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Agbalumo';
}
title {
  display: flex;
  align-items: center;
}
body {
  color: #333;
  background-color: #f7f1e3; /* Light tan */
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 99, 71, 0.8); /* Light reddish color */
  color: #000; /* Black text */
  z-index: 1000;
  align-items: center;
}

.navbar h1 {
  font-size: 1.5em;
}

.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #333; /* Black with some light shade */
  font-weight: bold;
}

.navbar ul li a:hover {
  color: #ff6347; /* Slight red tint */
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-size: cover; /* Ensures the image covers the container */
  background-position: center bottom; /* Adjust as needed */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(80%);
}

.hero-content {
  text-align: center;
  color: black;
}

.hero h2 {
  font-size: 3em;
}

.hero p {
  font-size: 1.2em;
}

main {
  padding: 80px 20px; /* Add padding to ensure main content doesn't clash with navbar */
}
main h1 {
  text-align: center;
}

/* Gallery Styles */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
}

.gallery-item {
  background-color: #fff; /* White background for images */
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
  width: 300px; /* Width of each item */
  text-align: center;
}

.gallery-item img {
  max-width: 100%; /* Responsive images */
  height: auto;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
}

#about,
#portfolio,
#contact {
  margin-top: 20px;
}
