/* Basic reset and font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
}

.hero h1 {
  font-size: 2rem;
  color: #444;
}

.hero p {
  font-size: 1rem;
  color: #666;
}

/* About Section */
.about {
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.about h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1rem;
  color: #666;
}

/* Portfolio Section */
.portfolio {
  padding: 2rem;
  text-align: center;
  background-color: #fff;
}

.portfolio h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 1rem;
  justify-items: center;
}

/* Uniform Image Sizing */
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Forces a square aspect ratio */
  object-fit: cover; /* Crops images to fill the square */
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.contact p a {
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #444;
}

.contact p a:hover {
  color: #666;
  border-bottom: 1px solid #666;
}

.movies {
  margin: 20px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.movies ul {
  list-style-type: none;
  padding-left: 0;
}

.movies li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.movies li:last-child {
  border-bottom: none;
}

.movies strong {
  font-size: 1.1em;
  font-weight: 500;
}

.movies p {
  margin: 5px 0;
}

.movies h2 {
  text-align: center;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
