/* Basic Body Styling */
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styling */
header {
  background-color: #ffffff;
  color: #000000;
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1; /* Ensures header is always above other content */
}

header h1 {
  font-size: 2.5rem;
}

/* Logo Styling */
.logo {
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* Main Navigation Styling */
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2; /* Ensures menu is above background and other content */
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #ff4040;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2; /* Keep the links above the background */
}

nav ul li a:hover {
  background-color: #555;
  color: #fff;
}

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

/* Services Section */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service {
  flex: 1 1 200px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Social Links */
#socials .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#socials .social-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

#socials .social-links img {
  width: 30px;
  margin-right: 8px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo {
    max-width: 220px;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px;
  }
}
/* Basic Styling */
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Logo Styling */
.logo {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* Box Menu Styling */
.box-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  padding: 20px 0;
  background-color: #f9f9f9;
}

.menu-box {
  display: inline-block;
  padding: 15px 20px;
  background-color: #ff4040;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.menu-box:hover {
  background-color: #cc3333;
}

/* Content Section Styling */
.content-section {
  padding: 40px 20px;
  text-align: center;
}

/* Footer Styling */
footer {
  background: #333;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-box {
    width: 100%;
  }
}
