/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* NAV */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  flex-wrap: nowrap;
}
.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #e5e5e5;
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav nav {
  display: flex;
  gap: 16px;               /* space between links */
  flex-shrink: 1;           /* allows links to shrink */
}

.nav-toggle {
  display: none;
}

.nav nav a {
  white-space: nowrap;      /* prevent wrapping */
  flex-shrink: 1;           /* allow link text to shrink */
  font-size: 14px;
}

@media (max-width: 480px) {
  .nav {
    padding: 16px 20px;
  }
  .nav nav a {
    margin-left: 12px; /* reduce space between links */
    font-size: 12px;   /* optional smaller font */
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 16px 20px;
  }
  .nav nav {
    gap: 10px;
  }
  .nav nav a {
    font-size: 12px;
  }
}


.logo {
  font-weight: 500;
  letter-spacing: 2px;
}
html, body {
  height: 100%;
}

.logo img {
  height: 60px; /* or whatever fits your design */
  display: block; /* remove inline spacing */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/sky background.jpg") center / cover no-repeat;
  filter: brightness(1);
  z-index: -1;
}

/* CONTACT SECTION */
.contact {
  min-height: 100vh;
  padding: 160px 8vw 120px;
  margin-bottom: 60px;
}

/* TITLE */
.contact h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 60px;
  color: #fff;
}

/* FORM */
.contact-form {
  max-width: 700px;
}

/* ROW FOR NAME INPUTS */
.contact-form .row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 18px;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
}

/* EMAIL + MESSAGE SPACING */
.contact-form input[type="email"],
.contact-form textarea {
  margin-bottom: 24px;
}

/* PLACEHOLDER */
.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* FOCUS STATE */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* BUTTON */
.contact-form button {
  margin-top: 16px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 16px 40px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.5s ease;
}



.contact-form button:hover {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-form .row {
    flex-direction: column;
  }
}

/* FOOTER */
.footer {
  padding: 45px 0 30px;
  width: 100%;
  position: relative;
  background: rgba(255,255,255, 0.08) /* 👈 blends with page */
}

.footer-content {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  color: #ffffff; /* matches brand but softer */
}

/* LEFT */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-location {
  font-weight: 500;
}

.footer-email {
  opacity: 0.8;
}

/* SOCIAL ICONS BELOW EMAIL */
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.footer-socials a {
  color: #144961;
  font-size: 20px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 1;
}



/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #ffffff;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.6;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .logo {
    margin-right: auto;
  }

  .logo img {
    height: 42px;
  }

  .nav-links {
    display: flex;
    gap: 16px;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 13px;
  }
}


