/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page background */
body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #111;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

/* Navigation */
nav {
  background: #222;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 15px 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f4c10f;
}

/* Main content */
main {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Sections */
section {
  margin-bottom: 60px;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Home text */
#home p {
  text-align: center;
  max-width: 800px;
  margin: 10px auto;
}

/* Gallery */
#gallery {
  text-align: center;
}

#gallery img {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 10px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* About section */
#about p {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Contact */
#contact ul {
  list-style: none;
  text-align: center;
  margin-top: 20px;
}

#contact ul li {
  margin: 10px 0;
  display: inline-block;
    margin-right: 15px;

}

#contact ul li a {
  color: #222;
  text-decoration: none;
  font-weight: bold;
}

#contact ul li a:hover {
  color: #f4c10f;
}
#contact p {
  text-align: center;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
