body {
  margin: 0;
  min-height: 100vh;
}

/* Full-width hero section */
.hero-image {
  width: 100%;
  height: 100vh;

  background-image: url("../Images/IMG_0361.PNG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text styling */
.hero-image h1 {
  color: white;
  text-align: center;
}

.footer {
  width: 100%;
  background: #111;
  color: white;

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 40px 20px;
  margin-top: 60px;
}

.footer-section {
  flex: 1;
  text-align: center;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section p {
  margin: 5px 0;
  color: #ffffff;
}

/* Contact Page */
.contact-page {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: black;        /* full black background */
  color: white;             /* default text white */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-section {
  text-align: center;
}

.contact-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.5rem;
  margin: 10px 0;
}

.contact-section .email {
  font-weight: bold;
  font-size: 1.7rem;
}