/* Reset & basic styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Header container: flex layout */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  padding: 10px 20px;
}

/* Business name styling */
.site-title a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

/* Adjust nav-list to align right */
.nav-list {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-list li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

/* Optional hover effect on nav links */
.nav-list li a:hover {
  text-decoration: underline;
}

/* Navigation */
header {
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
}
.nav-list li {
  margin: 0 15px;
}
.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Intro Section */
.intro {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}
.intro h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
.intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Main content sections */
.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

/* Slider Styles */
.slider-container {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
  overflow: hidden;
}
.slider {
  position: relative;
}
.slide {
  display: none;
}
.slide.active {
  display: block;
}
.slider img {
  width: 100%;
  height: auto;
}

/* Slider buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Video Section */
.video-section {
  text-align: center;
  margin-top: 40px;
}
.video-embed {
  max-width: 800px;
  margin: auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .nav-list {
    flex-direction: column;
  }
  .nav-list li {
    margin: 5px 0;
  }
  .hero {
    padding: 60px 20px;
  }
}

/* Enhanced Paragraph Styling */
p {
  margin-bottom: 1.5em; /* Adds extra space after each paragraph */
  line-height: 1.6;
  font-size: 1.1em; /* Optional: Increase font size for better readability */
}

/* Enhanced List Styling */
ul {
  margin: 1em 0;      /* Adds vertical spacing for the list as a whole */
  padding-left: 1.5em; /* Provides indentation for list items */
  list-style-type: disc;  /* Uses disc bullets (default) */
}

li {
  margin-bottom: 0.5em;  /* Adds spacing between individual list items */
  line-height: 1.4;
}

/* Optional: Improve readability within list items that span multiple lines */
li::marker {
  font-size: 1.2em; /* Slightly enlarge the bullet marker */
}

/* Grid Menu Styles */
.grid-menu {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 50%
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item:hover .overlay {
  opacity: 1;
}

/* Contact Section */
.contact {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}
.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.contact p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.contact a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.contact a:hover {
  text-decoration: underline;
}

.drone-services {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}
.drone-services h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.drone-services p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.drone-services ul {
  margin-top: 1em;
  padding-left: 1.5em;
}
.drone-services li {
  margin-bottom: 0.75em;
  line-height: 1.4;
}