* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #f5f5f5;
    color: #333;
  }
  
  /* HERO */
  .hero {
    position: relative;
    text-align: center;
  }
  
  .hero img {
    /* width: 100%; */
    height: 400px;
    object-fit: cover;
  }
  
  .hero-text {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    color: #2f5f8f;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    /* background: rgba(0,0,0,0.5); */
    padding: 10px 20px;
  }
  
  .hero-text p {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  
  /* NAV */
  nav {
    background: #2f5f8f;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  nav li {
    margin: 10px 20px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* GALLERY */
  .gallery {
    padding: 40px;
    text-align: center;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  
  .grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .grid img:hover {
    transform: scale(1.05);
  }
  
  /* ABOUT + CONTACT */
  .about, .contact {
    padding: 40px;
    text-align: center;
  }
  
  /* FOOTER */
  footer {
    background: #2f5f8f;
    color: white;
    text-align: center;
    padding: 15px;
  }