body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
}

.hero-section {
  min-height: 100vh;
  background: url("images/Home-Image-1.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.hero-section .navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  min-height: 80px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-left,
.navbar-right {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-left {
  justify-content: flex-start;
}

.navbar-right {
  justify-content: flex-end;
}

.navbar li {
  margin-left: 8px;
  font-size: 1em;
  display: flex;
  align-items: center;
}

.navbar-left li:first-child {
  margin-left: 0;
}

.navbar a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
  padding: 12px 20px;
  display: inline-block;
  white-space: nowrap;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.navbar a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(76, 155, 219, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.navbar a:hover::before {
  left: 100%;
}

.navbar a:hover {
  color: #4c9bdb;
  background: rgb(42, 25, 5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 155, 219, 0.2);
}
@media (max-width: 768px) {
  .navbar {
    display: none;
    opacity: 0;
  }

  .mobile-nav-fab {
    position: fixed;
    bottom: 75px;
    right: 20px;
    z-index: 1000;
  }

  .fab-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a2520;
    border: none;
    box-shadow: 0 8px 25px rgba(42, 37, 32, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #f7f5f3;
    font-size: 24px;
  }

  .fab-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(42, 37, 32, 0.4);
  }

  .fab-button.active {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #5d4e37, #3d2f23);
  }

  .fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .fab-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #2a2520;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(138, 127, 114, 0.1);
    transform: translateX(100px);
    animation: slideInRight 0.3s ease forwards;
  }

  .fab-menu-item:nth-child(1) { animation-delay: 0.1s; }
  .fab-menu-item:nth-child(2) { animation-delay: 0.15s; }
  .fab-menu-item:nth-child(3) { animation-delay: 0.2s; }
  .fab-menu-item:nth-child(4) { animation-delay: 0.25s; }
  .fab-menu-item:nth-child(5) { animation-delay: 0.3s; }

  .fab-menu-item:hover {
    background: rgba(138, 127, 114, 0.1);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(42, 37, 32, 0.2);
  }

  .fab-menu-item .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8a7f72;
  }

  .fab-menu-item .icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .fab-menu-item.closing {
    animation: slideOutRight 0.2s ease forwards;
  }

  @keyframes slideOutRight {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(100px);
      opacity: 0;
    }
  }

  /* Backdrop overlay */
  .fab-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .fab-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}

.hero-content {
  margin-top: 100px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
}

h1 {
  color: #ffffff;
  text-align: center;
  margin: 0;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-section {
  background: #ffffff;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  margin-top: 0; /* ensure no extra margin */
}

.split-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.split-image {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #ffffff;
}

.image-frame {
  width: 100%;
  height: 80vh;
  background: url("images/Home-Image-2.jpg") no-repeat center center/cover;
  border: 20px solid #ffffff;
  position: relative;
  background-position: center 30%;
}

.split-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.split-text {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 70px;
  background: #ffffff;
}

.text-container {
  max-width: 450px;
  text-align: left;
}

.text-title {
  font-family: "DM Serif Text", serif;
  font-size: clamp(32px, 3.5vw, 42px);
  color: #2c3e50;
  margin-bottom: 35px;
  letter-spacing: 1px;
  font-weight: 400;
}

.text-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #574839;
  margin: 0;
  text-align: justify;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .split-image {
    min-height: 40vh;
    flex: none;
  }

  .split-text {
    padding: 50px 30px;
    flex: none;
  }

  .text-container {
    text-align: center;
    max-width: 100%;
  }

  .text-content {
    text-align: center;
  }
}
