/* --------------------------------------------------
|| Variables
-------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #93782f;
  --color-secondary: hsl(195, 43%, 9%);
  --color-accent: hsl(from var(--color-secondary) h s 30%);

  --color-font-light: hsl(from var(--color-secondary) h s 14%);
  --color-font-dark: var(--color-secondary);

  --bg-body: hsl(44, 52%, 95%);
  --bg-card: hsl(0, 0%, 100%);

  --color-media-overlay: hsla(0 0% 0% / 0.3);
  --color-bg-overlay: rgba(13, 28, 33, 0.5);

  --gradient-background: #d4bc62;
  --radial-gradient: radial-gradient(
    circle farthest-corner at center center,
    #d4bc62 0%,
    #8c7529 20%,
    #d4bc62 40%,
    #8c7529 60%,
    #d4bc62 80%,
    #8c7529 100%
  );

  /* Fonts */
  --ff-regular: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  --ff-title: 'Playfair Display', serif;

  /* Font Weights */
  --fw-regular: 400;
  --fw-bold: 600;

  /* Font Sizes */
  --fs-100: clamp(12px, 0.9vw, 18px);
  --fs-200: clamp(14px, 1.05vw, 21px);
  --fs-300: clamp(17px, 1.2vw, 24px);
  --fs-400: clamp(20px, 2vw, 40px);
  --fs-500: clamp(21px, 2.25vw, 48px);
  --fs-600: clamp(24px, 2.75vw, 60px);
  --fs-700: clamp(27px, 3vw, 72px);
  --fs-800: clamp(30px, 3.25vw, 90px);
  --fs-900: clamp(36px, 4vw, 120px);

  /* Shadows */
  --shadow-card: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------
|| Reset
-------------------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background-color: var(--bg-body);
  color: var(--color-font-light);
  font-family: var(--ff-regular);
  font-size: var(--fs-100);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  letter-spacing: 0.2px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body.dark {
  --color-font-light: hsl(0, 0%, 100%);
  --color-font-dark: hsl(44, 52%, 95%);
  --bg-body: hsl(194, 42%, 13%);
  --bg-card: hsl(194, 42%, 11%);

  --bg-body: hsl(194, 42%, 11%);
  --bg-card: hsl(194, 42%, 9%);

  /* Font Weights */
  --fw-regular: 400;
  --fw-bold: 500;

  /* Shadows */
  --shadow-card: 0 0 15px rgba(69, 120, 82, 0.3);
}

a {
  text-decoration: none;
  font: inherit;
  color: inherit;
}

/* --------------------------------------------------
|| Utility Classes
-------------------------------------------------- */
.main {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container {
  width: 96%;
  max-width: 1680px;
  margin-inline: auto;
}
.container-narrow {
  width: 60%;
  max-width: 840px;
  margin-inline: auto;
  @media (max-width: 1024px) {
    width: 96%;
  }
}
section {
  margin-block: 3rem;

  @media (max-width: 480px) {
    margin-block: 2rem;
  }
}
.first-section {
  margin-top: 6rem;
}
.hero {
  position: relative;
  z-index: 10;
}
.hero-title,
.hero-subtitle {
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-family: var(--ff-title);
  text-align: center;
  color: #fff;
  mix-blend-mode: overlay;
}
.hero-title {
  font-size: var(--fs-600);
}
.hero-subtitle {
  font-size: var(--fs-500);
}
.section-title {
  font-size: var(--fs-400);
  font-weight: var(--fw-bold);
  font-family: var(--ff-title);
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--gradient-background);
  background: var(--radial-gradient);
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;

  @media (max-width: 480px) {
    margin-bottom: 0.875rem;
  }
}

.properties-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 0.625rem;
}

/* --------------------------------------------------
|| Navigation
-------------------------------------------------- */
nav {
  background-color: var(--bg-card);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 11;
}
nav .navbar {
  padding-block: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img {
  width: 275px;
  max-width: 45vw;
  height: auto;
}
#city_selector {
  padding: 6px 10px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 5px;
  border: 1px solid #fff;
  font-size: clamp(11px, 0.9vw, 16px);
}
.navbar .nav-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;

  @media (max-width: 480px) {
    gap: 1.5rem;
  }

  @media (max-width: 390px) {
    gap: 0.625rem;
  }
}
.nav-items .nav-links {
  @media (max-width: 1024px) {
    display: none;
  }
}
.nav-items .nav-links a {
  margin-inline: 0.3125rem;
  padding: 0.3125rem 0.625rem;
  font-weight: 400;
  border: 1px solid var(--bg-card);
  -webkit-border-radius: 0.31255rem;
  -moz-border-radius: 0.31255rem;
  -ms-border-radius: 0.31255rem;
  -o-border-radius: 0.31255rem;
  border-radius: 0.3125rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.nav-items .nav-links a.active,
.nav-items .nav-links a:hover,
.nav-items .nav-links a:focus,
.nav-items .nav-links a:focus-visible {
  border: 1px solid var(--color-font-dark);
  -webkit-border-radius: 0.31255rem;
  -moz-border-radius: 0.31255rem;
  -ms-border-radius: 0.31255rem;
  -o-border-radius: 0.31255rem;
  border-radius: 0.3125rem;
}

.nav-items .nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  cursor: pointer;
  @media (max-width: 1024px) {
    gap: 1.5rem;
  }
  @media (max-width: 768px) {
    gap: 1.25rem;
  }
  @media (max-width: 540px) {
    gap: 1rem;
  }
  @media (max-width: 450px) {
    gap: 0.85rem;
  }
  @media (max-width: 390px) {
    gap: 0.5rem;
  }
}
.nav-items .nav-icons span {
  font-size: clamp(14px, 1.2vw, 30px);
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.5rem;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;

  @media (max-width: 480px) {
    padding: 0.35rem;
  }
}
.nav-icons .menu-icon {
  display: none;
  @media (max-width: 1024px) {
    display: initial;
  }
}

/* --------------------------------------------------
|| Footer Section
-------------------------------------------------- */

footer {
  background-color: var(--bg-card);
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem 3.5rem;
  margin-bottom: 1px solid var(--color-primary);

  @media (max-width: 1024px) {
    flex-wrap: wrap;
  }

  @media (max-width: 860px) {
    padding-inline: 1.25rem;
  }
}
footer .footer-section-title {
  font-size: var(--fs-400);
  margin-bottom: 1.5rem;
}
.footer-top .company-short-intro {
  width: calc(40% - 0.5rem);
  text-align: justify;

  @media (max-width: 1024px) {
    width: 100%;
  }
}
footer .footer-top .company-short-intro img {
  width: 275px;
  max-width: 45vw;
  height: auto;
}
footer .company-location {
  width: calc(40% - 0.5rem);

  @media (max-width: 1024px) {
    width: 60%;
  }

  @media (max-width: 860px) {
    width: 100%;
  }
}
footer .company-contacts {
  width: calc(20% - 0.5rem);

  @media (max-width: 1024px) {
    width: 35%;
  }

  @media (max-width: 860px) {
    width: 100%;
  }
}
.company-contacts .office-city h6 {
  font-size: var(--fs-300);
  font-weight: 500;
  text-decoration: underline;
}
.company-contacts .office-city.pune {
  margin-bottom: 1.5rem;
}
.company-contacts .office-city.mumbai {
  margin-top: 1.5rem;
}

footer .footer-bottom {
  background-color: var(--bg-body);
  padding-block: 1.5rem;

  @media (max-width: 1024px) {
    padding-block: 1.5rem 3.5rem;
  }
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  @media (max-width: 860px) {
    flex-direction: column;
  }
}
.footer-bottom .company-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
/* Sticky Footer for Tablets and Mobiles */
.footer-responsive {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  color: #fff;
  display: none;
  z-index: 9;
  @media (max-width: 1024px) {
    display: block;
  }
}
.footer-responsive .icon-boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.footer-responsive .icon-boxes > * {
  width: 33.33%;
}
.icon-boxes .icon-box {
  padding-block: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #fff;
}
.icon-box span {
  font-size: 150%;
}
