/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  background-color: #FAF9F6;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px 30px;
  font-family: 'JakartaSans';
  mix-blend-mode: multiply;
  position: relative;
  z-index: 999;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #3a3a3a;
}

#logo-img {
  width: 220px;
}

nav {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

nav a {
  margin: 0 25px;
  text-decoration: none;
  color: #3a3a3a;
  font-size: 18px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #c8a898;
}

.contact-btn {
  background-color: #c8a898;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
}

.contact-btn:hover {
  color: #fff;
  background-color: #b88f85;
}

@media (max-width: 768px) {
  header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
  }

  .logo {
    z-index: 1001;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #3a3a3a;
    transition: 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  nav {
     overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  flex-direction: column;
  width: 100%;
  text-align: left;
  margin-top: 10px;
  align-items: start;
  }

  nav.show {
    max-height: 400px; /* Enough to fit all links */
  opacity: 1;
  }

  nav a {
    padding: 12px 0px;
    font-size: 18px;
    color: #3a3a3a;
    text-decoration: none;
  }

  .contact-btn {
    background-color: #c8a898;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    width: fit-content;
    margin-left: 20px;
    margin-top: 10px;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 102%;
  object-fit: cover;
  z-index: 1;
}

.hero-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, #faf9f6 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ========== COLLABORATE SECTION ========== */
.collaborate {
  padding: 40px 90px;
}

.collaborate div {
  font-size: 65px;
  font-family: "Cormorant";
  font-weight: 400;
}

.collaborate p {
  font-size: 27px;
  font-family: "Poppins";
  letter-spacing: 3px;
}

/* ========== CONTACT SECTION ========== */
.contact-info {
  background-color: #c6cca2;
  padding: 50px 90px;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.contact-info h2 {
  font-size: 56px;
  font-family: "Cormorant";
  font-weight: 500;
  color: white;
  text-shadow: 1px 1px 2px #555;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 3px;
}

.contact-left ul {
  list-style: none;
  padding: 0;
}

.contact-left li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 19px;
  margin-bottom: 15px;
  color: white;
}

.contact-left li img {
  width: 25px;
  margin-top: 5px;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  align-items: center;
}

.social-icons a {
  margin-right: 5px;
}

.social-icons .img1 {
  width: 31px;
  height: 31px;
}

.connect-btn {
  margin-top: 20px;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.connect-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-right h3 {
  font-size: 24px;
  font-weight: 400;
  color: white;
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
  font-family: "JakartaSans";
  letter-spacing: 2px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-input {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

form input,
form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  border: 1px solid #c8a898;
}

form textarea {
  resize: vertical;
  margin-bottom: 20px;
  height: 90px;
}

.send-btn {
  align-self: center;
  padding: 12px 30px;
  background-color: #c8a898;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.send-btn:hover {
  background-color: #b88f85;
}

/* Responsive Contact */
@media (max-width: 768px) {
  #logo-img {
  width: 170px;
}


  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .form-input {
    flex-direction: column;
  }

  .collaborate {
    padding: 40px 30px;
    text-align: center;
  }

  .collaborate div {
    font-size: 36px;
  }

  .collaborate p {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 90px 20px;
  font-family: 'JakartaSans';
  background: linear-gradient(to bottom,#FAF9F6 , #f8f8f2, #BEC5A4, #A6B3A1);
  color: #3a3a3a;
}

.footer hr {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  width: 220px;
  height: 110px;
  mix-blend-mode: multiply;
}

.footer-links,
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 40px;
}

.footer-links a,
.footer-contact-info a {
  color: #3a3a3a;
  text-decoration: none;
  font-size: 20px;
}

.footer-contact-info p {
  margin: 0;
  font-size: 20px;
}

.footer-connect-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-connect {
  padding: 8px 24px;
  border: 2px solid #e3b85d;
  background: white;
  color: #3a3a3a;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 22px;
      width: 180px;
      height: 50px;
    text-align: center;
}

.footer-connect:hover {
  background: #f9f3e6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(11%) sepia(2%) saturate(0%) hue-rotate(180deg) brightness(94%) contrast(89%);
}

.footer-socials img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer-links {
    display: none;
  }

  .footer-connect-group {
    justify-content: center;
  }

  .footer-bottom {
    gap: 10px;
  }

  .footer-connect {
      width: 130px;
      height: 50px;
}
.footer-socials img {
  width: 35px;
  height: 40px;
}

.footer-logo {
    width: 190px;
    height: 95px;
}
}
