/* ==============================
   BASE
============================== */

* {
  box-sizing: border-box;
  transition: all 0.25s ease;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: linear-gradient(
    to bottom,
    #fffdf8 0%,
    #f7f2ea 55%,
    #efe7dc 100%
  );
}

a {
  text-decoration: none;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}


/* ==============================
   HEADER
============================== */

.top-header {
  position: relative;
  padding: 18px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.55) 0%, transparent 35%),
    linear-gradient(135deg, #f7b06f 0%, #f4a261 30%, #e76f51 65%, #d65a3a 100%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.top-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  height: 140px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-block::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 210px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.logo-block img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 120px;
  transform: scale(1.4);
}


/* ==============================
   CONTACT BUTTON
============================== */

.contact-pill {
  position: absolute;
  right: 30px;
  padding: 16px 30px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #32a866, #1f7a45);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(31, 122, 69, 0.28);
}

.contact-pill:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #38b872, #216f43);
  box-shadow: 0 12px 24px rgba(31, 122, 69, 0.36);
}


/* ==============================
   NAVBAR
============================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, #f6e08a 0%, #e2c955 50%, #d4b944 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar ul {
  height: 62px;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 38px;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.navbar li {
  position: relative;
}

.navbar a {
  position: relative;
  padding: 9px 5px;
  color: #2f2b22;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2e9e5b, #1f7a45);
  transform: translateX(-50%);
}

.navbar a:hover {
  color: #1f7a45;
}

.navbar a:hover::after {
  width: 100%;
}


/* ==============================
   DROPDOWN
============================== */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 195px;
  margin: 0;
  padding: 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 15px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: #1f7a45;
  background: #fff7df;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ==============================
   FOOTER
============================== */
/* ---------- LUXURY FOOTER ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #063f20, #087238);
  color: #fffaf0;
  padding: 70px 20px 25px;
  margin-top: 80px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(233,214,107,0.25), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.12), transparent 25%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-left,
.footer-links,
.footer-contact {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
  color: #fff8dc;
}

.site-footer h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 900;
  color: #e9d66b;
}

.site-footer p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff3d6;
  margin: 0 0 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.socials a {
  color: #fffaf0;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-links a:hover,
.socials a:hover {
  color: #e9d66b;
  padding-left: 6px;
}

.socials a {
  display: inline-block;
  margin-top: 12px;
  background: #e9d66b;
  color: #063f20;
  padding: 10px 18px;
  border-radius: 999px;
}

.socials a:hover {
  background: #fff8dc;
  color: #063f20;
  padding-left: 18px;
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  max-width: 1400px;
  margin: 35px auto 0;
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
  font-size: 13px;
  color: #f4eecf;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-left,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 900px) {
  .header-inner {
    height: 130px;
  }

  .logo-block img {
    height: 100px;
    transform: scale(1.25);
  }

  .contact-pill {
    padding: 14px 22px;
    font-size: 16px;
  }

  .navbar ul {
    gap: 24px;
  }

  .navbar a {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .top-header {
    padding: 22px 0;
  }

  .header-inner {
    height: auto;
    padding: 0 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .logo-block::before {
    width: 230px;
    height: 160px;
  }

  .logo-block img {
    height: 95px;
    transform: scale(1.25);
  }

  .contact-pill {
    position: static;
    display: inline-block;
    padding: 13px 22px;
    font-size: 15px;
  }

  .navbar {
    height: auto;
  }

  .navbar ul {
    height: auto;
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .dropdown-menu {
    left: 50%;
    transform: translate(-50%, 12px);
  }

  .dropdown:hover .dropdown-menu {
    transform: translate(-50%, 0);
  }
}