/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Helvetica Now Display, sans-serif; }

/* ===== Scroll Animations ===== */
.fade-left, .fade-right, .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.fade-up { transform: translateY(40px); }

.show-animate {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #2E3192;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 60px;
  z-index: 1000;
  flex-wrap: nowrap;              /* prevent wrapping */
}

.logo img {
  height: 40px;
}

/* Navbar takes the flexible middle space */
.navbar {
  display: flex;
  align-items: center;
  flex: 1 1 auto;                 /* grow/shrink as needed */
  min-width: 0;                   /* allows flex children to shrink properly */
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;        /* center the menu in the available middle */
  gap: 45px;
  flex: 1 1 auto;
  min-width: 0;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;            /* keep items on one line */
}

.navbar .nav-links li a:hover {
  color: #FFD700;
}

/* Hamburger sits at the end of navbar area */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 12px;
  flex: 0 0 auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ===== Call (desktop, right side) ===== */
.call-icon {
  margin-left: auto;              /* pushes this block to the far right */
  flex: 0 0 auto;
}

.call-icon a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.call-icon img {
  height: 22px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.call-icon img:hover {
  transform: scale(1.1);
  color: #FFD700;
  
}

.call-icon span {
  color: white;
}
.call-icon span:hover {
  color: #FFD700;
}

/* ===== Call item INSIDE hamburger ===== */
.mobile-call {
  display: none; /* hidden on desktop */
}

.mobile-call a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-call img {
  height: 20px;
  filter: invert(1) brightness(0); /* <-- makes white SVG look black */

}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .navbar .nav-links {
    gap: 28px; /* tighter gaps on medium screens to keep layout in one row */
  }
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    justify-content: flex-start;  /* stack links */
    align-items: flex-start;
    gap: 14px;
  }

  .navbar .nav-links li a {
    color: #000;
  }

  .navbar .nav-links li a:hover {
    color: var(--primary);
  }

  .navbar .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Hide desktop call on small screens */
  .call-icon {
    display: none;
  }

  /* Show call option inside hamburger */
  .mobile-call {
    display: block;
  }
}


/* Section Base */
.image-section {
  width: 100%;
  height: 700px; /* fixed height */
  min-height: 400px;
  max-height: 700px;
  background: url('Img/Duet\ img\ \(2\).JPG') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Overlay for readability */
.image-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55); /* dark overlay */
}

/* Text container */
.image-overlay {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 10px; /* padding for mobile */
}

.image-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  font-family: "Lora";
}

.image-desc {
  font-size: 1.1rem;
  margin: 5px 0 0;
  max-width: 600px;   /* limits width so text wraps */
  margin: 0 auto;
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .image-title {
    font-size: 24px;
  }
  .image-desc {
    font-size: 14px;
  }
}

/* 💻 Tablet */
@media (max-width: 1000px) and (min-width: 601px) {
  .image-title {
    font-size: 20px;
  }
  .image-desc {
    font-size: 16px;
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 60px 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85); /* overlay to keep text readable */
  z-index: 1;
}


/* Watermark sketches */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;

  background-image: 
    url('Img/Bg\ 11.svg'),   /* 1 */
    url('Img/Bg\ 16.svg'),   /* 2 */
    url('Img/Bg\ 13.svg'),   /* 3 */
    url('Img/Bg\ 14.svg'),   /* 4 */
    url('Img/Bg\ 15.svg'),   /* 5 */
    url('Img/Bg\ 16.svg'),   /* 6 */
    url('Img/Bg\ 17.svg'),   /* 7 */
    url('Img/Bg\ 18.svg'),   /* 8 */
    url('Img/Bg\ 19.svg'),   /* 9 */
    url('Img/Bg\ 17.svg'),  /* 10 */
    url('Img/Bg\ 12.svg'),  /* 11 */
    url('Img/Bg\ 11.svg');  /* 12 */

  background-position: 
    left top,        /* 1 */
    right top,       /* 2 */
    center top,      /* 3 */
    left center,     /* 4 */
    right center,    /* 5 */
    center center,   /* 6 */
    left bottom,     /* 7 */
    right bottom,    /* 8 */
    center bottom,   /* 9 */
    20% 20%,         /* 10 custom */
    80% 30%,         /* 11 custom */
    50% 80%;         /* 12 custom */

  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, 
                     no-repeat, no-repeat, no-repeat, no-repeat, 
                     no-repeat, no-repeat, no-repeat, no-repeat;

  background-size: 
    200px,  /* 1 */
    280px,  /* 2 */
    220px,  /* 3 */
    200px,  /* 4 */
    220px,  /* 5 */
    200px,  /* 6 */
    280px,  /* 7 */
    280px,  /* 8 */
    220px,  /* 9 */
    250px,  /* 10 */
    260px,  /* 11 */
    270px;  /* 12 */

  pointer-events: none;
  z-index: 0;
}




/* Title and Description */
.contact-header {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto 40px auto;
  text-align: left;
  box-sizing: border-box;
}

.contact-header h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-family: "Lora", serif;
}

.contact-header p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Form and Map Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  align-items: stretch;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Form */
.contact-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-left input,
.contact-left textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-left textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-left button {
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-left button:hover {
  background-color: #0056b3;
}

/* Map */
.contact-right {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
    height: 300px; /* map height on mobile */
  }

  .contact-header {
    max-width: 100%;
  }
}


/* Full-width background wrapper */
.contact-bg {
  width: 100%;
  background-image: url('Img/section3\ \ wall.svg');
  background-repeat: no-repeat;
  background-size: cover;          /* cover full width and height */
  background-position: top center;
  padding: 50px 0;                 /* vertical spacing */
  min-height: 100vh;               /* full screen height */
  display: flex;
  justify-content: center;         /* centers the inner content */
  align-items: center;
}

/* Content wrapper stays the same */
.contact-section1 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1000px; 
  padding: 0 20px;
}

/* Left Side Image */
.contact-left1 img {
  width: 500px;
  height: 416px;
  object-fit: cover;
  border-radius: 10px;
}

/* Right Side Text */
.contact-right1 {
  width: 500px;
  height: 416px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
}

.contact-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.contact-item p {
  margin: 0 0 15px;
  font-size: 14px;
  color: #555;
}

/* 📱 Mobile (Stacked Layout) */
@media (max-width: 600px) {
  .contact-section1 {
    flex-direction: column;
    align-items: center;
  }

  .contact-left1 img,
  .contact-right1 {
    width: 100%;
    height: auto;
  }

  .contact-right1 {
    margin-top: 20px;
  }
}

/* 💻 Tablet (Stack but balanced) */
@media (max-width: 1000px) and (min-width: 601px) {
  .contact-section1 {
    flex-direction: column;
    align-items: center;
  }

  .contact-left1 img,
  .contact-right1 {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  .contact-right1 {
    margin-top: 20px;
  }
}






/* ===== Footer ===== */
.footer {
  background: #fff;
  padding: 60px 60px 60px;
  font-family: "helvetica Now Display", sans-serif;
  color: #000;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* About */
.footer-about {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-about p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-socials a {
  font-size: 1.2rem;
  margin-right: 12px;
  color: #000;
  transition: color 0.3s;
}
.footer-socials a img {
  width: 32px;  
  height: 32px;  
}

.footer-contact img {
  width: 22px;   
  height: 22px;
}


.footer-socials a:hover {
  color: #007BFF;
}

/* Links */
.footer-links {
  flex: 1 1 180px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #007BFF;
}

/* Contact */
.footer-contact {
  flex: 1 1 250px;
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: #007BFF;
  min-width: 18px;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-policy a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.footer-policy a:hover {
  color: #007BFF;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 60px 60px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-bottom {
    padding-top: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 60px;
  }

  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 25px;
  }

  .footer-about, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-policy a {
    margin: 0 10px;
  }
}
