/* 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;
  }
}



/*  Projects */

/* Our Projects Section */
.our-projects {
  background: url('Images/Wooden Bg.svg') no-repeat center center/cover;
  padding: 100px 120px;
  margin-top: 60px;
}

.projects-container {
  max-width: 1600px;
  margin: 0 auto;
}

.projects-title{

    text-align: center;
}

/* Title */
.projects-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  border-right: 2px solid #694223;
  visibility: hidden;
  margin-bottom: 60px;
  
}

/* Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.project-card {
  position: relative;
  display: block;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.project-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 2;
}

.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.project-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  opacity: 0;
  max-width: 80%;
  transition: opacity 0.3s ease;
}

/* Arrow Button */
.arrow-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.85);
  color: #694223;
  border: none;
  padding: 8px 8px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  z-index: 2;
  transition: background 0.3s ease;
}

.arrow-btn:hover {
  background: #fff;
}

/* Hover Effect */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(105, 66, 35, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-desc {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .our-projects {
    padding: 80px 60px;
  }
  .projects-title h1 {
    font-size: 60px;
  }
  .project-name {
    font-size: 36px;
  }
}

/* Tablet layout images fix */
@media (max-width: 1024px) and (min-width: 769px) {
  .project-card .card-image {
    height: 250px; /* fixed height for all cards on tablet */
    overflow: hidden;
  }

  .project-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures all images fill the card uniformly */
    transition: transform 0.4s ease;
  }

  /* Optional: reduce hover scale slightly on tablet */
  .project-card:hover img {
    transform: scale(1.05);
  }
  .project-card .project-name {
    color: #694223; /* main color */
    transition: color 0.3s ease; /* smooth transition on hover */
  }

  /* Change title color to white on hover */
  .project-card:hover .project-name {
    color: #ffffff;
  }
}



@media (max-width: 768px) {
  .our-projects {
    padding: 60px 24px;
  }
  .projects-title h1 {
    font-size: 48px;
    
  }
  .projects-grid {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 24px;
  }
  .project-card {
    height: 300px;
  }
  .project-name {
    font-size: 28px;
    color: #ffffff;
  }
  .project-desc {
    font-size: 16px;
  }
  .arrow-btn {
    font-size: 20px;
    padding: 6px 12px;
  }
}

/* Filter Bar */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.filter-btn {
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #694223;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: #BF4500;
}

.filter-btn.active {
  font-weight: 700;
  color: #694223;
  border-bottom: 2px solid #694223;
}

.projects-divider {
  width: 80%;
  margin: 0 auto 40px;
  border: none;
  border-top: 0.8px solid rgba(105, 66, 35, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .projects-filter {
    gap: 16px;
  }

  .filter-btn {
    font-size: 16px;
  }
}



/* 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: 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;
  }
}
