/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 120px;
  background-color: #FFF4E2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Raleway', sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Logo */
.logo img {
  width: 200px;
}

/* Menu */
.nav-menu ul.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu ul.menu li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
  transition: color 0.3s;
}

.nav-menu ul.menu li a:hover {
  color: #BF4500;
}

/* WhatsApp icon */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.whatsapp img {
  width: 20px;
  
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #fff;
  position: fixed;
  top: 60px;
  right: 20px;
  width: 200px;
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 9999;
}

/* Show when active */
.mobile-menu.active {
  display: block;
}

/* Optional: animate hamburger into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
  transition: color 0.3s;
}

.mobile-menu ul li a:hover {
  color: #BF4500;
}

/* Responsive */
@media (max-width: 1024px) {
  .header {
    padding: 16px 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-right .whatsapp {
    display: block;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 16px 20px;
  }
}




/* Contact Section */
.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
}

/* Background image */
.contact-section .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Title */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.contact-content .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #694223;
  display: inline-block;
  visibility: hidden;
  margin-bottom: 40px;
}

/* Contact info layout */
.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  margin-bottom: 40px;
  gap: 20px;
}

.contact-info .info-column {
  flex: 1;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: 'Raleway', sans-serif;
}

.contact-info p {
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.4;
}

/* Full-width image with form card */
.form-image-container {
  position: relative;
  width: 100%;
}

.form-bg-image {
  width: 100%;
  height: 100vh; /* Full screen on desktop */
  object-fit: cover;
}

.form-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(50px);
  width: 500px;
  background-color: #FFF4E2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transition: all 0.8s ease-out;
  font-family: 'Raleway', sans-serif;
  z-index: 2;
}

/* 🟡 Updated Input Styles */
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 0.5px solid #694223;
  background-color: transparent;
  color: #000;
  border-radius: 0;
  font-family: inherit;
  margin-bottom: 16px;
  gap: 12px;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #694223;
  opacity: 0.8;
  text-align: left;
}

.form-card textarea {
  resize: none;
}

/* Button */
.form-card button {
  padding: 12px;
  font-size: 18px;
  background-color: #694223;
  color: #fff;
  border: none;
  cursor: pointer;
  align-items: center;
  border-radius: 0;
  transition: background-color 0.3s ease;
  width: 100%;
}

.form-card button:hover {
  background-color: #8b5a2b;
}

/* Floating animation */
@keyframes floatUpDownCard {
  0% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-15px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}

/* Map */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-content .title {
    font-size: 70px;
  }
  .form-card {
    width: 400px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  .contact-info .info-column {
    text-align: center;
  }
  .form-card {
    width: 300px;
  }
  .contact-content .title {
    font-size: 50px;
  }
  .form-bg-image {
    height: 80vh;
  }
}

@media (max-width: 480px) {
  .contact-content .title {
    font-size: 36px;
  }
  .form-card {
    width: 260px;
    padding: 15px;
  }
  .map-container {
    height: 300px;
  }
}











/* Footer */
.footer {
  background: #FFF4E2;
  color: #694223;
  font-family: 'Raleway', sans-serif;
  padding: 40px 20px 20px;
  border-top: 1px solid #e0e0e0;
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Quick Links */
.footer-links-container {
  text-align: center;
}

.footer-links-container h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links li a {
  text-decoration: none;
  color: #694223;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.footer-links li a:hover {
  color: orange;
  transform: translateY(-3px);
}

/* Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* Left */
.footer-left {
  flex: 1;
  min-width: 150px;
}

.footer-logo {
  width: 120px;
}

/* Center */
.footer-center {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.footer-center p {
  margin: 5px 0;
  font-size: 16px;
}

/* Right */
.footer-right {
  flex: 1;
  text-align: right;
  min-width: 150px;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

/* Footer Year */
.footer-year {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #694223;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
