/* 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 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;
}

/* 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 */
.footer {
  background: #7298aa;
  padding: 40px;
}

.footer-content {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  gap: 20px;
  color: #fff;
}

.footer-socials a {
  margin-right: 12px;
  color: #ccc;
}

.footer-meta {
  display: flex;
  flex-direction: column; /* 👈 stacks vertically */
  text-align: right;
  gap: 6px; /* space between location & copyright */
}

.footer-location {
  font-size: 15px;
  opacity: 0.9;
}

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

.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; }



