/* Reset some default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic body styling */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Navigation Menu */
header {
  margin-bottom: 30px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
nav a:hover,
nav a.active {
  color: #000;
  border-bottom: 2px solid #000;
}

/* Hero Section (for index.html) */
.hero {
  text-align: center;
  margin-bottom: 40px;
}
.hero img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Content Sections */
.content {
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.gallery article {
  width: 250px;
  text-align: center;
}
.gallery img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form label {
  font-weight: bold;
}
form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}
form button {
  padding: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
form button:hover {
  background-color: #333;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
}
footer .payments {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
footer .payments li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .payments li a:hover {
  color: #000;
}
