/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #0f1c3f;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  color: #c0c0c0;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 50px 0;
}

/* Gallery Item */
.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Image */
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Static Description */
.description {
  padding: 20px;
  background-color: #f5f5f5;
}

.description h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #0f1c3f;
}

.description p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Footer */
footer {
  text-align: center;
  background-color: #0f1c3f;
  color: #c0c0c0;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  .description h3 {
    font-size: 1.2rem;
  }
}
