html, body { margin: 0; padding: 0; }
html {
  overscroll-behavior-y: none; /* Prevents bounce effect when reaching top/bottom */
}
body { 
  font-family: 'Mileast';
  overscroll-behavior-y: none; /* Prevents vertical overscroll bounce */
}

/* -----------------------------------
   HERO: real image in the flow
   ----------------------------------- */
.hero {
  position: relative;   /* so icons can overlay */
  width: 100%;
  overflow: hidden;
}

/* The image itself provides real height -> no overlap */
.hero img {
  width: 100%;
  height: auto;         /* ✅ keeps aspect ratio */
  display: block;       /* ✅ removes inline-gap */
}

/* Optional: if you want the hero to be at least screen height,
   but STILL not overlap the next section, this is safe: */
.hero {
  min-height: 100vh;
}
.hero img {
  min-height: 100vh;    /* makes sure it fills at least one screen */
  object-fit: cover;    /* cover the screen if the image is "short" */
}

/* -----------------------------------
   CONTENT: vintage white section
   ----------------------------------- */
.content {
  background: white; /* vintage white */
  color: #1c1c1c;
  padding: 56px 18px 80px;
}

.content .wrap {
  max-width: 860px;
  margin: 0 auto;
}

.content h2 {
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: 0.3px;
  text-align: center;
}

.content p {
  text-align: center;
  margin: 0 0 26px;
  line-height: 1.6;
  color: rgba(0,0,0,0.75);
}

.vintage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.vintage-list li {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.vintage-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.vintage-list span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,0.72);
}

/* -----------------------------------
   Desktop social icons (overlay)
   ----------------------------------- */
.social {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  z-index: 10;
}

.social a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
}

.social img {
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0);
  transition: filter 200ms ease, transform 200ms ease;
}

.social a:hover img {
  filter: brightness(0) invert(1);
  transform: scale(1.10);
}

/* -----------------------------------
   Mobile full-screen menu
   ----------------------------------- */
.social-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1002;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #111;
  cursor: pointer;
  display: none; /* hidden by default */
  place-items: center;
  font-size: 36px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1278px) {
  .social { display: none; }
  .social-toggle { display: grid; }

  .social.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    z-index: 1001;

    align-content: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 90px 18px 24px;
    flex-wrap: wrap;

    transform: translateY(-100%);
    animation: dropDown 240ms ease-out forwards;
  }

  @keyframes dropDown {
    to { transform: translateY(0); }
  }

  .social.open a { width: 56px; height: 56px; }
  .social.open img { width: 32px; height: 32px; filter: brightness(0); }
}

/* -----------------------------------
   CONTACT FORM (overlaid on hero)
   ----------------------------------- */
.contact-form-section {
  position: absolute;
  bottom: 260px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  z-index: 5;
}

.contact-form h2 {
  margin: 0 0 20px;
  font-size: 60px;
  color: #1c1c1c;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: white;
  transition: border-color 200ms ease;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1c1c1c;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: #1c1c1c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, transform 100ms ease;
}

.submit-btn:hover {
  background: #333;
}

.submit-btn:active {
  transform: scale(0.98);
}

@media (max-width: 1067px) {
  .contact-form-section {
    bottom: 16px;
    width: 92%;
    max-width: 460px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 11px 14px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 80px;
  }

  .submit-btn {
    padding: 13px 22px;
    font-size: 15px;
  }
}

@media (max-width: 694px) {
  .contact-form-section {
    bottom: 10px;
    width: 90%;
    max-width: 360px;
  }

  .contact-form {
    padding: 16px;
  }

  .contact-form h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 9px 12px;
    font-size: 13px;
  }

  .contact-form textarea {
    min-height: 65px;
  }

  .submit-btn {
    padding: 11px 18px;
    font-size: 13px;
  }
}

@media (max-width: 565px) {
  .contact-form-section {
    bottom: 8px;
    width: 85%;
    max-width: 260px;
  }

  .contact-form {
    padding: 10px;
  }

  .contact-form h2 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-group {
    margin-bottom: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 6px 8px;
    font-size: 11px;
  }

  .contact-form textarea {
    min-height: 42px;
  }

  .submit-btn {
    padding: 7px 12px;
    font-size: 11px;
  }
}

/* Hide mobile form by default */
.contact-form-mobile {
  display: none;
}

