html {
  scroll-behavior: smooth;
}

* {
  font-family: "Lilita One", sans-serif;
  font-weight: 200;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.Home {
  background-color: #f9f6f2;
  color: #0c0a07;
  
}

.site-navbar {
  background-color: #9e6e3e;
  padding: 10px 0;
  color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  width: 90px;
}

.nav-links {
  flex-grow: 1;
  text-align: center;
}

.nav-links a.active,
.nav-links a[aria-current="page"],
.nav-links li.active > a {
  color: #000000;
}

.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #000000;
}

.auth-links {
  display: flex;
  gap: 20px;
  letter-spacing: 0.2rem;
  margin-top: 5px;

  .log-sign:hover {
    color: black;
  }
}

.log-sign {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: black;
  transition: background-color 0.3s ease;
}
/* hero section */

.container-hero {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

.hero {
  position: relative;
  background-color: #9e6e3e;
  overflow: hidden;
}

.hero-overlay {
  padding: 64px 0;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 0 0 44%;
  min-width: 280px;
}

.hero-welc {
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 12px;
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.hero-actions a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 0.8rem;
}

.hero-media {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  max-width: 560px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.hero-act {
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: transform 0.12s ease, opacity 0.2s ease,
    background-color 0.2s ease;
}

.hero-act:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* why section */

.container-why {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

.why {
  padding: 64px 0;
  background: #fff;
}

.why-kicker {
  display: block;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 150;
  letter-spacing: 0.3px;
  color: #1f1f1f;
  margin-bottom: 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  justify-items: center;
}

.why-card {
  width: 100%;
  max-width: 340px;
  min-height: 380px;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.why-grid .why-card:nth-child(1) {
  background: #a7b363;
}
.why-grid .why-card:nth-child(2) {
  background: #8f5444;
}
.why-grid .why-card:nth-child(3) {
  background: #9e6e3e;
}

.why-title {
  font-size: 22px;
  font-weight: 200;
  margin: 12px 0 10px;
}

.why-text {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 6px;
  opacity: 0.95;
  text-align: justify;
}

.why-icon,
.why-icon-- {
  display: inline-flex;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-icon embed,
.why-icon-- embed {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.why-grid .why-text {
  color: #ffffff;
}

/* ===== About Section ===== */
.about {
  background: #f7f7f7;
  padding: 64px 0;
}

.container-about {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-media {
  flex: 1 1 50%;
  min-width: 280px;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-right: 50px;
}

.about-content {
  flex: 1 1 46%;
  min-width: 280px;
}

.about-kicker {
  display: inline-block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.about-title {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #1f1f1f;
  margin: 6px 0 10px;
  font-weight: 700;
}

.about-text {
  color: #444;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 22px;
}

.about-sec {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease, transform 0.12s ease,
    opacity 0.2s ease;
}

/* ===== Footer  ===== */
.site-footer {
  background: #9e6e3e;
  color: #e9e9e9;
  padding: 48px 0 28px;
}

.container-footer {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr 0.7fr;
  gap: 32px;
  justify-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  align-items: flex-start;
}

.footer-heading {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 16px;
  margin-left: 0;
  text-align: left;
}

.footer-nav-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: small;
}

.footer-nav-list li + li,
.contact-list li + li {
  margin-top: 10px;
}

.footer-nav-list a {
  color: #d5d3d3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #d5d3d3;
  text-decoration: underline;
}

.contact-list i {
  width: 22px;
  display: inline-block;
  opacity: 0.9;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 0.12s ease, background-color 0.2s ease,
    opacity 0.2s ease;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.footer-copy {
  text-align: center;
  margin-top: 36px;
}

.copy-line {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto 16px;
  max-width: 860px;
}

.footer-copy h6 {
  font-size: 14px;
  color: #cfcfcf;
  margin: 0;
}

/* team in the about us page */
.team {
  background: #f5f5f5;
  padding: 64px 0;
  color: #1f1f1f;
}
.container-team {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.team-head {
  text-align: center;
  margin-bottom: 22px;
}

.team-kicker {
  display: block;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
.team-sub {
  font-size: 16px;
  color: #7a7a7a;
  max-width: 680px;
  margin: 6px auto 0;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;

  .social-icons {
    justify-content: center;
    margin-top: 8px;
  }
}

.team-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 84px 22px 20px;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-4px);
}

.team-img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  display: block;
  margin: -68px auto 10px;
  background: #fff;
}

.team-role {
  display: block;
  font-size: 14px;
  color: #8a8a8a;
  margin-top: 6px;
}
.team-name {
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 10px;
}

.social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e6e6e6;
  color: #aa7219;
  text-decoration: none;
  transition: transform 0.12s ease, background-color 0.2s ease;
}
.social-btn:hover {
  transform: translateY(-2px);
  background: #f4f4f4;
}
.social-btn i {
  font-size: 15px;
}

/* contact us page */

.contact {
  background: #f7f7f8;
  padding: 72px 0;
  margin-top: auto;
}
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-head {
  text-align: center;
  margin-bottom: 28px;
}
.contact-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 8px;

  .Get-in {
    font-weight: bolder;
    color: #6f9761;
  }
}

.contact-sub {
  color: #6b7280;
  margin: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.form,
.info {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.field label {
  font-size: 0.9rem;
  color: #1f2937;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  font: inherit;
  color: #1f2937;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #6f9761;
  box-shadow: 0 0 0 3px rgba(253, 77, 64, 0.15);
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  background: #6f9761;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}
.btn:hover {
  filter: brightness(0.95);
  background-color: #6f97616b;
}

.info-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px dashed #eee;
  border-radius: 10px;
}
.info-label {
  font-weight: 600;
  color: #1f2937;
}
.info a {
  color: #6f9761;
  text-decoration: none;
}
.info a:hover {
  text-decoration: underline;
}

/* Card container */
.container-login {
  max-width: 420px;
  margin: 96px auto;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Header */
.logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 8px;
}
h2 {
  text-align: center;
  margin: 8px 0 16px;
  font-size: 28px;
}

.form-group {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  font: inherit;
}

input::placeholder {
  color: #9ca3af;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 16px;
  font-size: 14px;
}
.check input[type="checkbox"] {
  accent-color: #9e6e3e;
}

.login {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: #9e6e3e;
  color: #ffffff;
  font-weight: 600;
}

.login:hover {
  background-color: #937252;
}

.login:focus-visible {
  outline: 3px solid rgba(253, 91, 78, 0.35);
  outline-offset: 2px;
}

.links {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}
.links a {
  color: #9e6e3e;
  text-decoration: none;
}
.links a:hover {
  text-decoration: underline;
}



/* ===== Responsive ===== */
@media (max-width: 480px) {
  .container-login {
    margin: 56px 16px;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col,
  .footer-brand,
  .footer-social {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .nav-links.is-open {
    display: hidden;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-row {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    max-width: 680px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    order: 4;
  }
  .hero-overlay {
    padding: 40px 0;
  }

  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    flex-basis: auto;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-image {
    max-width: 480px;
  }
  .nav-flex {
    align-items: center;
  }

  .nav-links ul {
    gap: 15px;
  }

  .auth-links {
    margin-top: 15px;
  }

  .log-sign {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .team {
    padding: 48px 0;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .why {
    padding: 48px 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Toggle button hidden on the desktop for phones */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  margin-left: auto; 
  cursor: pointer;
}
.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.auth-links .log-sign:hover {
  color: black;
}

/* Responsive for Mobile layout */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-flex {
    gap: 12px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: #c4c2c2;
    color: #111;
    border-left: 1px solid #e5e7eb;
    padding: 80px 20px 20px; /* space for top bar */
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1001;
    text-align: left; /* override center */
  }
  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav-links li a {
    color: #111;
  }
  .nav-links li a:hover{
    background-color: white;
  }

  .auth-links {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #c4c2c2;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    padding: 14px 20px;
    gap: 12px;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1001;
  }

  /* Backdrop */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
  }

  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .nav-links,
  body.nav-open .auth-links {
    transform: translateX(0);
  }
  body.nav-open::before {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open .menu-toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.nav-open .menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .menu-toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    text-align: left;
  }
    .nav-links li a {
    color: #fff;
  }
  .nav-links li a:hover {
    color: #000000;
    opacity: 0.85;
  }
}


/* ========== Responsive footer grid ========== */

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 36px 0 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr; 
    gap: 20px;
    justify-items: stretch;
  }

  .footer-col {
    min-width: 0; 
    align-items: center;
    text-align: center;
  }

  .footer-heading {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-social .social-icons {
    display: flex;
    gap: 12px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    max-width: 140px;
    height: auto;
  }

  .footer-copy {
    text-align: center;
    margin-top: 18px;
  }
  
  .copy-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 12px auto 10px;
  }
}