/* 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;
  }
}




.full-bg-section {
  background: url('Images/Wooden\ Bg.svg') center/cover no-repeat;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;       /* space below fixed header */
  padding-bottom: 80px;     /* ✅ space after last image */
}



/* Content padding inside the section */
.content-container {
  width: 100%;
  padding: 0 120px;
  text-align: center;
}

@media (max-width: 1024px) {
  .content-container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .content-container {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .content-container {
    padding: 0 15px;
  }
}

/* Title */
.typing-title {
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  line-height: 1.3;
  margin-bottom: 40px;
  min-height: 100px;
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 768px) {
  .typing-title {
    font-size: 2rem;
  }
}

/* Image grid - 3 or 4 horizontal depending on screen size */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  /*left: -15px;*/
  background: #FFF4E2;
  color: #694223;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}






/* Let's Talk Section */
.lets-talk {
  background-color: #694223;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.lets-talk-container {
  text-align: center;
  color: #FFF4E2;
}

/* Title */
.animated-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: #FFF4E2;
  border-right: 2px solid #FFF4E2;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 30px;
  font-weight: 400;
  visibility: hidden;
}

/* Contact info */
.contact-info {
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 20px;
  margin: 10px 0;
}

/* Button */
.T-button {
  background-color: #FFF4E2;
  color: #694223;
  font-size: 0.9rem;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.T-button .arrow {
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.T-button:hover {
  background-color: #694223;
  color: #FFF4E2;
}

.T-button:hover .arrow {
  margin-left: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .animated-title {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  .animated-title {
    font-size: 50px;
  }
  .contact-info p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
    .lets-talk {
  background-color: #694223;
  width: 100%;
  min-height: 40vh;
  max-height: 60vh;
}
  .animated-title {
    font-size: 36px;
  }
  .contact-info p {
    font-size: 16px;
  }
  .T-button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}



/* 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;
  }
}
