@font-face {
  font-family: 'Alta Regular';
  src: url('fonts/alta-regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, header, footer, .contact-container, .contact-info {
  font-family: 'Alta Regular', sans-serif;
}

/* ====== GLOBAL STYLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Alta Regular', sans-serif;

}

body {
  color: #000;
  background-color: #f8f6f2; /* Ivory cream tone */
  overflow-x: hidden;
}

/* ====== HEADER / LOGO ====== */
header {
  text-align: center;
  padding: 40px 20px 20px 20px;
  position: relative;
}

.logo {
  display: inline-block;
  color: #000;
  letter-spacing: 3px;
}

.word {
  display: inline-block;
  margin: 0 10px;
}

.first {
  font-size: 68px;
  font-weight: normal;
}

.rest {
  font-size: 48px;
  font-weight: normal;
}

/* ====== NAVIGATION ====== */
nav {
  text-align: center;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: #000;
  margin: 0 20px;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #7a7a7a;
}

/* ====== HERO SECTION (FINAL FIX) ====== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://i.postimg.cc/gkm5R5Dg/Banner.png') center center / cover no-repeat;
  background-attachment: scroll;
  height: 42vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: 36vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 34vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 25px;
  border-radius: 10px;
}

/* ====== ABOUT SECTION ====== */
.about {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #000;
}

.about p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

@font-face {
  font-family: 'Alta Regular';
  src: url('fonts/alta-regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ====== CONTACT PAGE ====== */

@font-face {
  font-family: 'Alta Regular';
  src: url('fonts/alta-regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, header, footer, .contact-container, .contact-info {
  font-family: 'Alta Regular', sans-serif;
}

.contact-container {
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2px;
  padding: 10px 10%;
  background-color: #f8f6f2;
}

.contact-info {
  word-break: break-word;
  overflow-wrap: anywhere;
  font-family: 'Arial', sans-serif;
  flex: 1 1 45%;
  text-align: center;
}

.contact-info h2 {
  word-break: break-word;
  overflow-wrap: anywhere;
  font-family: 'Arial', sans-serif;
  color: #000;
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-info p {
  word-break: break-word;
  overflow-wrap: anywhere;
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.map-container {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border: none;
  border-radius: 12px;
}

/* ====== FOOTER ====== */
footer {
  background: #000;
  color: #333;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablets */
@media (max-width: 992px) {
  .first { font-size: 56px; }
  .rest { font-size: 40px; }
  .hero { height: 38vh; }
}

/* Mobile */
@media (max-width: 768px) {
  header { padding: 25px 10px; }

  .first { font-size: 44px; }
  .rest { font-size: 32px; }

  nav {
    position: static;
    margin-top: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero {
    height: 38vh;
    background-position: center;
    background-size: cover; /* prevents crop + grey bands */
    background-repeat: no-repeat;
  }

  .hero h1 {
    font-size: 34px;
    padding: 8px 15px;
  }

 .contact-info {
    font-size: 10px;
    width: 100%;           /* full width */
    padding: 0 10px;       /* small horizontal padding */
    word-break: break-word; /* allow long words/emails to wrap */
    overflow-wrap: anywhere; /* wrap anywhere if needed */
    text-align: left;    /* keep centered */
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .map-container iframe {
    height: 300px;
  }

}

/* Small Mobile */
@media (max-width: 480px) {
  header { padding: 20px 10px; }

  .first { font-size: 38px; }
  .rest { font-size: 28px; }

  .hero {
    height: 38vh;
    background-position: center;
    background-size: cover;
  }

  .hero h1 {
    font-size: 26px;
  }

  section {
    padding: 40px 6%;
  }

  footer {
    font-size: 12px;
  }
}
