/* 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;
  overflow-y: auto;
}  


/* 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;
  }
}



/* Hero Section */
.hero-section {
  background: url("Images/Wooden Bg.svg") no-repeat center center/cover;
  padding: 60px 0;
  position: relative;
  margin-top: 80px;
}

/* Title + Button wrapper */
.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 120px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Title */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #4a2d1a;
  line-height: 1.1;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #4a2d1a;
  visibility: hidden;
}

/* Button */
.hero-button {
  font-family: 'Raleway', sans-serif;
  background: #4a2d1a;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.3s ease;
  font-weight: 500;
}
.hero-button:hover {
  background: #FFF4E2;
  color: #4a2d1a;
}

/* Video Container */
.hero-video {
  position: relative;
  padding: 0 120px;
  margin-bottom: 20px;
}

.hero-video video {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 0;
}

/* Description overlay at bottom of video */
.hero-description {
  position: absolute;
  bottom: 0;
  left: 120px;
  right: 120px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 16px 20px;
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  text-align: left;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 70px;
    max-width: 100%;
  }
  .hero-video {
    padding: 0 40px;
  }
  .hero-description {
    left: 40px;
    right: 40px;
    font-size: 16px;
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .hero-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .hero-video {
    padding: 0 40px;
  }

  .hero-video video {
    height: auto;
  }

  .hero-description {
    left: 40px;
    right: 40px;
    font-size: 15px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    position: static;         /* Moves it below the video */
    background: transparent;  /* Removes dark overlay */
    color: #4a2d1a; 
    text-align: center;
    left: 20px;
    right: 20px;
    font-size: 14px;
    padding: 8px 12px;
  }
}


/*What we do*/



.what-we-do {
    background: url('Images/Wooden\ Bg.svg') no-repeat center center/cover;
    padding: 20px 120px;
    position: relative;
    overflow: hidden;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 400;
    color: #694223;
    margin-bottom: 50px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #694223;
    display: inline-block;
    visibility: hidden;
}

.title-container.align-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* move to right */
  text-align: right;     /* align text inside to right */
}


/* Images */
.images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.image {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    border-radius: 0;
    object-fit: cover;
}



.image.left {
    width: 288px;
    height: 370px;
    align-self: flex-start;
}

.image.middle {
    width: 500px;
    height: 700px;
    align-self: center;
}

.image.right {
    width: 288px;
    height: 370px;
    align-self: flex-end;
}

/* Description */
.description {
    font-size: 18px;
    color: #694223;
    max-width: 600px;
}

/* Responsive */
@media (max-width: 1200px) {
    .what-we-do {
        padding: 100px 60px;
    }

    .title {
        font-size: 70px;
    }

    .images {
        flex-direction: column;
        align-items: center;
    }

    .image.middle {
        width: 400px;
        height: 560px;
    }

    .image.left, .image.right {
        width: 250px;
        height: 320px;
    }

    .description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 60px 30px;
    }

    .title {
        font-size: 50px;
    }

    .image.middle {
        width: 300px;
        height: 420px;
    }

    .image.left, .image.right {
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 36px;
    }

    .image.middle {
        width: 250px;
        height: 350px;
    }

    .image.left, .image.right {
        width: 180px;
        height: 230px;
    }

    .description {
        font-size: 16px;
    }
}

/* Floating animation */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Apply float after they appear */
.image.left {
  width: 288px;
  height: 370px;
  align-self: flex-start;
  animation: floatUpDown 6s ease-in-out infinite;
  animation-delay: 0.3s; /* little delay */
}

.image.middle {
  width: 500px;
  height: 700px;
  align-self: center;
  animation: floatUpDown 7s ease-in-out infinite;
  animation-delay: 0.6s;
}

.image.right {
  width: 288px;
  height: 370px;
  align-self: flex-end;
  animation: floatUpDown 5.5s ease-in-out infinite;
  animation-delay: 0.9s;
}

/* Why Choose Us Section  */

.why-choose-us {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Section background image */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Title container */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px; /* Title padding left/right */
  position: relative;
  z-index: 1;
}

.title-container.align-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align */
  text-align: left;
  margin-bottom: 20px;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #694223;
  display: inline-block;
  visibility: hidden;
}

/* Full-width image */
.full-width-image-container {
  position: relative;
  width: 100%;
}

.full-width-image {
  width: 100%;
  height: 900px;
  object-fit: cover;
}

/* Floating card */
.floating-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(50px);
  width: 444px;
  height: 367px;
  background-color: #FFF4E2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  opacity: 0;
  transition: all 0.8s ease-out;
  font-family: 'Raleway', sans-serif;
  z-index: 1;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #694223;
}

.card-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #694223;
}

/* 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); }
}

/* Responsive */
@media (max-width: 1200px) {
  .content { padding: 0 60px; }
  .title { font-size: 70px; }
  .full-width-image { height: 700px; }
  .floating-card { width: 400px; height: 320px; padding: 25px; }
  .card-title { font-size: 22px; }
  .card-description { font-size: 18px; }
}

@media (max-width: 768px) {
  .content { padding: 0 30px; }
  .title { font-size: 50px; }
  .full-width-image { height: 500px; }
  .floating-card { width: 300px; height: 270px; padding: 20px; }
  .card-title { font-size: 20px; }
  .card-description { font-size: 16px; }
}

@media (max-width: 480px) {
  .title { font-size: 36px; }
  .full-width-image { height: 400px; }
  .floating-card { width: 260px; height: 250px; padding: 15px; }
  .card-title { font-size: 18px; }
  .card-description { font-size: 14px; }
}

/* Project section*/

/* Project section*/

/* Section */
.projects-section {
  background: url('Images/Wooden\ Bg.svg') no-repeat center center/cover;
  padding: 120px;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Typing Title */
.projects-title {
  text-align: right;
  margin-bottom: 60px;
}

.projects-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #694223;
}

/* Cards wrapper */
/* Cards wrapper */
.cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 40px; /* space between cards horizontally & vertically */
  position: relative;
}

/* Vertical Project Card */
.project-card {
  position: relative;
  display: block;
  max-width: 100%;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

/* Zigzag stagger */
.project-card:nth-child(odd) {
  grid-column: 1; /* left */
  grid-row: auto;
}

.project-card:nth-child(even) {
  grid-column: 2; /* right */
  position: relative;
  top: 40px; /* slightly below its left sibling */
}

/* Card image */
.card-image {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 16px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Overlay with title & description */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(105,66,35,0.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  transition: opacity 0.3s ease;
}


.card-overlay h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.card-overlay p {
  font-size: 18px;
  margin: 0;
}

/* Hover effect */
.project-card:hover .card-overlay {
  opacity: 1;
}

.project-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .projects-section {
    padding: 80px;
  }

  .projects-title h1 {
    font-size: 60px;
  }

  .card-image {
    height: 350px;
  }

  .card-overlay h2 {
    font-size: 36px;
  }

  .card-overlay p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 40px 20px;
  }

  .projects-title h1 {
    font-size: 40px;
    text-align: center;
  }

  .cards-wrapper {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 40px; /* keep spacing */
  }

  /* Reset zigzag on mobile */
  .project-card {
    top: 0 !important;         /* remove stagger offset */
    margin-top: 0 !important;  /* remove manual margins */
    grid-column: 1 !important; /* force into one column */
  }

  .card-image {
    height: 300px;
  }

  .card-overlay h2 {
    font-size: 28px;
  }

  .card-overlay p {
    font-size: 14px;
  }
}


/* Lets Talk */
.lets-talk {
  background-color: #694223;
  width: 100%;
  min-height: 100vh; /* covers full device height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.lets-talk-container {
  text-align: center;
  color: #FFF4E2;
}

/* Title */
#lets-talk-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;
}

/* 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;
}

/* Hover effect */
.T-button:hover {
  background-color: #694223;
  color: #FFF4E2;
}

.hero-button:hover .arrow {
  margin-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  #lets-talk-title {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  #lets-talk-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;
}
  #lets-talk-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: 17px;
  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;
  white-space: normal;
  overflow: visible;
}

/* 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;
  }
}



/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;       /* makes it float on screen */
  width: 30px;
  height: 30px;
  bottom: 40px;          /* distance from bottom */
  right: 40px;           /* distance from right */
  /*background-color: #25d366;*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;         /* make sure it's on top of everything */
  transition: transform 0.2s ease;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.3);
}

/* Floating animation (gentle up-down motion) */
@keyframes floatEffect {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Optional glowing pulse */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: floatEffect 3s ease-in-out infinite, pulse 2s infinite;
}