/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* BACKGROUND IMAGE (OUTSIDE SITE WRAP) */
.background {
  position: fixed;
  inset: 0;
  background-image: url("photos/bggg.png");
  background-size: cover;
  background-position: center;
  z-index: -2;

  filter: blur(7px);
  transform: scale(1.05);
}

/* SITE WRAP */
.site-wrap {
  max-width: 1800px;
  margin: 80px auto;
  padding: 40px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 5px;   /* ← move it down */
  left: 0;
  width: 100%;
  z-index: 100;

  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}


/* NAV INNER */
.nav-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 22px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand {
  color: #06402b;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* LINKS */
.nav-links a {
  color: #06402b;
  text-decoration: none;
  margin-left: 36px;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
}

/* HOVER UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #06402b;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* SCROLLED NAVBAR */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* HERO */
.hero {
  height: 800px;
  background-image: url("photos/background.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;

  position: relative;
  overflow: hidden;   /* 👈 this is what keeps cream inside */
  display: flex;
  align-items: center;
  padding: 40px;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to right,
    rgba(248, 242, 230, 0.35) 0%,
    rgba(248, 242, 230, 0.22) 25%,
    rgba(248, 242, 230, 0.10) 45%,
    rgba(248, 242, 230, 0.00) 65%
  );
}



/* TEXT ABOVE OVERLAY */
.hero-text {
  position: relative;
  z-index: 2;
  color: #2a2a2a;
}

/* HERO TEXT */
.hero-text {
  color: #06402b;
  max-width: 800px;
  transform: translateY(200px);
}

.hero-text h1 {
  font-size: 85px;
  margin-bottom: 10px;
  margin-left: -20px;
}

.hero-text p {
  font-size: 18px;
  opacity: ;
  margin-bottom: 10px;
  margin-left: 40px;
  margin-top: -20px;
}

/* EXTRA CONTENT */
.section {
  margin-top: 80px;
  color: #fff;
}


/* LAUNCH SECTION */
.launch {
  margin-top: 80px;
  padding: 100px 60px;
  background: #f7f4ef; /* soft cream */
  border-radius: 16px;
   display: flex;
  align-items: center;      /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}

/* CONTENT */
.launch-inner {
  max-width: 700px;
}

/* HEADLINE */
.launch h2 {
  font-size: 48px;
  font-weight: 500;
  color: #06402b;
  margin-bottom: 20px;
}

/* TEXT */
.launch p {
  font-size: 16px;
  color: #06402b;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* FORM */
.launch-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.launch-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid #06402b;
  background: transparent;
  border-radius: 6px;
  font-size: 14px;
}

.launch-form input::placeholder {
  color: #06402b;
}

/* BUTTON */
.launch-form button {
  padding: 14px 26px;
  border: 1px solid #06402b;
  background: transparent;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.launch-form button:hover {
  background: #06402b;
  color: #fff;
}
.contact-footer {
  margin-top: 50px;
  padding: 120px 80px;
  background: #f7f4ef;
  border-radius: 16px;
  position: relative;.floating image {
  position:absolute;
  right:80px;
  top: 220px;
  width: 520px;
  max-width: 40%;
  z-index: 2;
}

/* FLOATING IMAGE */
.floating-image {
  position: absolute;
  right: 80px;
  top: 220px;
  width: 520px;
  max-width: 40%;
  z-index: 2;
}



  overflow: visible;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

/* LEFT */
.contact-left h2 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-left p {
  color: #666;
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 40px;
}


/* RIGHT */
.contact-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-block small {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
}

.contact-block strong {
  display: block;
  font-size: 16px;
  margin: 8px 0;
}

.contact-block span {
  font-size: 14px;
  color: #666;
}

.contact-image {
  grid-column: 1 / span 2;
  margin-top: -10px;

  height: 200px;        /* 👈 control height */
  overflow: hidden;    /* 👈 crop the image */
  border-radius: 12px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 👈 keeps it nice while cropping */
  display: block;
}

.contact-buttons {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.contact-buttons a {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid #1f3b2c;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  color: #1f3b2c;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.contact-buttons a:hover {
  background: #1f3b2c;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}
#contact {
  scroll-margin-top: 120px; /* height of your navbar */
}

/* ===========================
   MOBILE & TABLET RESPONSIVE
=========================== */

/* Tablets */
@media (max-width: 1024px) {

  .site-wrap {
    margin: 120px 20px;
    padding: 30px;
  }

  .hero {
    height: 600px;
  }

  .hero-text {
    transform: translateY(120px);
  }

  .hero-text h1 {
    font-size: 60px;
    margin-left: 0;
  }

  .hero-text p {
    margin-left: 0;
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .floating-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    right: 0;
    top: 0;
    margin-top: 40px;
  }
}

/* Phones */
@media (max-width: 768px) {

  /* Navbar */
  .nav-inner {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links a {
    margin: 0 14px;
  }

  /* Hero */
  .hero {
    height: 520px;
    padding: 30px;
  }

  .hero-text {
    transform: translateY(80px);
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 14px;
  }

  /* Launch section */
  .launch {
    padding: 60px 20px;
  }

  .launch h2 {
    font-size: 32px;
  }

  .launch-form {
    flex-direction: column;
  }

  .launch-form input,
  .launch-form button {
    width: 100%;
  }

  /* Footer */
  .contact-footer {
    padding: 80px 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-right {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .floating-image {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .floating-image {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    right: 0 !important;
    top: 0 !important;
    margin-top: 30px;
  }

  .contact-image {
    height: auto;
  }
}

