/* 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;
  }
}






/* Section */
/* Our Story Section */
.our-story {
  background: url('Images/Wooden\ Bg.svg') no-repeat center center/cover;
  min-height: 800px;
  padding: 80px 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 60px;
}

/* Content wrapper */
.story-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Title */
.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  margin-bottom: 8px;
  visibility: hidden;
  border-right: 2px solid #694223;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}

/* Description */
.story-description {
  font-size: 20px;
  color: #694223;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Floating Images container */
.story-images {
  position: absolute;
  object-fit: cover;
  opacity: 0.7;
  animation: floatUpDown 6s ease-in-out infinite;
  z-index: 1; /* stay behind text */
  
}

/* Images */
.story-image {
  position: absolute;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.9;
  animation: floatUpDown 6s ease-in-out infinite;
}

/* Example custom sizes and positions */
.img1 {
  width: 260px;
  height: 290px;
  top: 5%;
  left: 10%;
  animation-delay: 0.3s;
}

.img2 {
  width: 220px;
  height: 270px;
  bottom: 8%;
  left: 5%;
  animation-delay: 0.6s;
}

.img3 {
  width: 290px;
  height: 420px;
  bottom: 10%;
  right: 4%;
  animation-delay: 0.9s;
}

/* Floating Animation */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  .story-title { font-size: 60px; }
  .story-description { font-size: 18px; }
  .img1, .img2, .img3 {
    width: 200px;
    height: 260px;
  }
  .img1 { top: 8%; left: 3%; }
  .img2 { bottom: 5%; left: 3%; }
  .img3 { bottom: 10%; right: 3%; }
}

@media (max-width: 768px) {
  .story-title { font-size: 45px; }
  .story-description { font-size: 16px; }
  .img1, .img2, .img3 {
    width: 160px;
    height: 200px;
  }
  .img1 { top: 8%; left: 3%; }
  .img2 { bottom: 10%; left: 3%; }
  .img3 { bottom: 10%; right: 3%; }
}

@media (max-width: 480px) {
    .story-title {
  font-size: 40px;
  font-weight: 400;
  }
  .story-title { font-size: 32px; }
  .story-description { font-size: 14px; }
  .img1, .img2, .img3 {
    width: 120px !important;
    height: 140px !important;
    
  }
   .img1 { top: 5%; left: 2%; }      /* top-left */
  .img2 { bottom: 12%; left: 2%; }  /* bottom-left */
  .img3 { bottom: 12%; right: 2%; } /* bottom-right */
}


/* Our Vision Section */
.our-vision {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Section background image */
.our-vision .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Title container */
.our-vision .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
  position: relative;
  z-index: 1;
}

.our-vision .title-container.align-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 20px;
}

.our-vision .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #694223;
  display: inline-block;
  visibility: hidden;
}

/* Full-width image container - now uses background-image */
.our-vision .full-width-image-container {
  position: relative;
  width: 100%;
  height: 900px;
  background-image: url('Images/Vision.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Floating card */
.our-vision .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;
}

.our-vision .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.our-vision .card-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #694223;
}

/* Floating animation */
@keyframes floatUpDownCardVision {
  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) {
  .our-vision .content { padding: 0 60px; }
  .our-vision .title { font-size: 70px; }
  .our-vision .full-width-image-container { height: 700px; }
  .our-vision .floating-card { width: 400px; height: 320px; padding: 25px; }
  .our-vision .card-title { font-size: 22px; }
  .our-vision .card-description { font-size: 18px; }
}

@media (max-width: 768px) {
  .our-vision .content { padding: 0 30px; }
  .our-vision .title { font-size: 50px; }
  .our-vision .full-width-image-container { height: 500px; }
  .our-vision .floating-card { width: 300px; height: 270px; padding: 20px; }
  .our-vision .card-title { font-size: 20px; }
  .our-vision .card-description { font-size: 16px; }
}

@media (max-width: 480px) {
  .our-vision .title { font-size: 36px; }
  .our-vision .full-width-image-container { height: 400px; }
  .our-vision .floating-card { width: 260px; height: 250px; padding: 15px; }
  .our-vision .card-title { font-size: 18px; }
  .our-vision .card-description { font-size: 14px; }
}



/* Our Principles Section */
.our-principles {
  background: url('Images/Wooden\ Bg.svg') no-repeat center center/cover;
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #f7f1eb;
}

/* Title */
.our-principles .principles-title-container {
  text-align: center;
  margin-bottom: 40px;
}

.our-principles .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 400;
  color: #694223;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #694223;
  display: inline-block;
  visibility: hidden;
}

/* Content layout */
.our-principles .principles-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 0 120px;
}

.principles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.principles-list .principle {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #b8a29e;
  cursor: default;
  transition: color 0.3s ease;
}

.principles-list .principle.active {
  color: #694223;
  font-weight: 700;
}

.principles-images {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}

.principles-images .principle-img {
  position: absolute;
  width: 100%;
  max-width: 400px;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.principles-images .principle-img.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .our-principles .title {
    font-size: 50px;
  }

  .principles-content {
    flex-direction: column;
    gap: 40px;
  }

  .principles-images {
    height: 300px;
  }

  .principles-images .principle-img {
    max-width: 80%;
  }

  .principles-list .principle {
    font-size: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .our-principles {
    padding-bottom: 40px; /* ✅ This creates space after the image */
  }
  .our-principles .title {
    font-size: 36px;
    
  }

  .principles-images {
    height: 250px;
    
  }

  .principles-list .principle {
    font-size: 18px;
  }
}







/* 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;
  }
}
