* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

header {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

header nav {
  margin-top: 15px;
}

header nav a {
  color: #f0f0f0;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('images/art1.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background-color: #c2185b;
}

h2 {
  text-align: center;
  margin: 40px 0 20px;
  color: #333;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery .item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery p {
  padding: 10px;
  font-style: italic;
}

footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

a {
  color: #e91e63;
}
