/* ---------- Base & Theme ---------- */
:root {
  --green-dark: #103c2e;
  --green: #155c44;
  --green-light: #e6f2ee;
  --accent: #c9dbd4;
  --cream: #faf9f6;
  --text: #0b1b15;
  --muted: #66736c;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(16, 60, 46, 0.12);
  --transition: 0.35s ease;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--max);
  width: calc(100% - 2rem);
  margin: 0 auto;
}

/* ---------- Header ---------- */
header {
  background: #e2e4d7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--green-dark);
}

.logo .mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(16, 60, 46, 0.3);
}

nav {
  display: flex;
  gap: 3rem;
  margin-top: 0.5rem;
  margin-right: 2rem;
  place-items: center;
  white-space: nowrap;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
  transition: color var(--transition);
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  width: auto;
}

.btn-primary {
  background: var(--green-dark);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green);
  transform: scale(1.1);
}

.btn-outline {
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: #fff;
  transform: scale(1.1);
}

.btn-secondary {
  background: #e2e4d7;
  color: #555350;
}

.btn-secondary:hover {
  transform: scale(1.1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-image: url("../images/hero_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 4.6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("hero.jpg") center/cover no-repeat;
  transform: scale(1.05);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(16, 60, 46, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  max-width: 800px;
  animation: fadeUp 0.8s ease both;
}

.hero-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  background-color: #e2e4d7;
  color: #555350;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  padding-inline: 8rem;
}

.hero .actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ---------- Sections ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(16, 60, 46, 0.16);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

h2.section-title {
  color: var(--green-dark);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

p.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.pill {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}

ul {
  list-style: disc inside;
  color: var(--muted);
  font-size: 1rem;
}

.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 0.8rem;
}

/* ---------- Gallery ---------- */
.gallery-wrapper {
  max-width: 100%;
  margin: 15px auto;
  padding: 0 20px;
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #335340;
  margin-bottom: 40px;
  font-family: "Open Sans", sans-serif;
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid .slide {
  position: relative;
}

.gallery-grid .slide img {
  width: 249px;
  height: 183px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.gallery-grid img:hover {
  transform: scale(1.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cta-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.cta-banner p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.wp-cta-actions {
  display: flex;
  gap: 0.8rem;
  place-items: center;
  justify-content: center;
}

/* -------- Logo ---------------*/
.logo-img {
  height: 3rem;
  width: 10rem;
}

.section {
  display: flex;
  justify-content: center;
  padding: 80px 170px 0px 170px;
  gap: 34px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.section img {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.text-content {
  width: 50%;
}

.text-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #234836;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
}

.text-content p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.features li {
  margin-bottom: 10px;
}

.comfortable {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px 50px;
  font-size: 13px;
}

.comfortable-checks {
  text-align: center;
  align-items: center;
}

.features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #234836;
  font-weight: 500;
}

.featured-lists {
  color: #234836;
  font-weight: 500;
}

.features div::before {
  content: "✔";
  color: #234836;
  font-weight: 700;
}

/* ---------- Whispering Pines CTA Section ---------- */

.wp-cta-hero {
  background: #2f4f3a;
  color: white;
  text-align: center;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.wp-trees {
  position: absolute;
  inset: 0;
  background-image: url("../images/Asset_46.png"), url(""),
    url("../images/Asset_46.png");
  background-repeat: no-repeat;
  background-size: 500px, 0px, 500px;
  background-position: -5% bottom, 50% bottom, 105% bottom;
  opacity: 0.15;
}

.wp-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.wp-content h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}

.wp-content p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.wp-btn-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.wp-btn {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.wp-btn-primary {
  background: #e4e7db;
  color: #1c2b22;
}

.wp-btn-secondary {
  border: 2px solid #e4e7db;
  color: #e4e7db;
}

.wp-btn:hover {
  transform: scale(1.08);
}

/* ---------- Map Section ---------- */

.wp2-map-section {
  width: 100%;
  background: #e8ebdf;
  padding: 0;
  margin: 0;
}

.wp2-map {
  width: 100%;
  height: 450px;
  background: url("../images/wp_map_location.png") center/cover no-repeat;
  border-bottom: 1px solid #dcdccf;
}

/* ---------- Footer ---------- */

.wp2-footer {
  background: #e8ebdf;
  padding: 40px 0 30px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #234836;
  display: flex;
  justify-content: space-between;
  place-items: center;
  padding-inline: 120px 150px;
}

.wp2-footer-blog {
  background: #2f4f3a;
  padding: 40px 0 30px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #234836;
  display: flex;
  justify-content: space-between;
  place-items: center;
  padding-inline: 250px;
}

.wp2-footer-logo img {
  width: 55px;
  height: auto;
  opacity: 0.9;
}

.wp2-footer-text {
  font-size: 14px;
  color: #234836;
  opacity: 0.85;
}

.contact-container {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 10px;
  flex-wrap: wrap;
  margin-inline: 160px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 1px 1px 1px 13px;
}

.contact-form-title-container {
  display: flex;
  justify-content: space-between;
}

/* LEFT SIDE */
.contact-left {
  max-width: 30%;
}

.contact-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.contact-title-img {
  width: 70px;
  height: 50px;
  border-radius: 10px;
}

.contact-title {
  font-size: 28px;
  margin-top: 25px;
  color: #234734;
  font-weight: 700;
}

.contact-info {
  margin-top: 10px;
  line-height: 23px;
  font-weight: 500;
  font-size: 15px;
}

.contact-hours-title {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 700;
  color: #234734;
}

.contact-hours {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}

/* RIGHT SIDE FORM */
.contact-form-wrapper {
  background: #e2e4d8;
  padding: 40px 50px;
  border-radius: 12px;
  flex: 0 0 70%;
  margin-left: 2%;
  max-width: 65%;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #234734;
}

.contact-subtitle {
  font-size: 14px;
  margin-bottom: 30px;
  color: #555;
  font-weight: 500;
}

.contact-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-group label {
  font-size: 15px;
  margin-bottom: 6px;
  color: #333;
}

.contact-input {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-submit {
  background: #234734;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  display: block;
  margin-top: 25px;
}

.contact-submit:hover {
  background: #1b3a2b;
}

/* ---------- Animation ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------------------------
   ---------- 4-Column Check Features Section ----------
   ------------------------------------------------- */
/* Default (Mobile & Normal Desktop) */
.check-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.check-item {
  color: #234836;
  font-weight: 500;
  line-height: 1.4;
  font-size: 24px;
}

.check-item .check-icon {
  font-size: 22px;
  font-weight: 700;
  color: #234836;
  margin-bottom: 12px;
  display: flex;
}

/* Large Desktop (1366px and up) */
@media (min-width: 1366px) {
  .check-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .check-item {
    color: #234836;
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.9rem;
  }

  .check-item .check-icon {
    font-size: 22px;
    font-weight: 700;
    color: #234836;
    margin-bottom: 12px;
    display: flex;
  }
}

/* Extra Large Monitors (1600px and up) */
@media (min-width: 1600px) {
  .check-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .check-item {
    color: #234836;
    font-weight: 500;
    line-height: 1.4;
    font-size: 16px;
  }

  .check-item .check-icon {
    font-size: 22px;
    font-weight: 700;
    color: #234836;
    margin-bottom: 12px;
    display: flex;
  }
}

/* Ultra Wide / 4K (1920px and up) */
@media (min-width: 1920px) {
  .check-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .check-item {
    color: #234836;
    font-weight: 500;
    line-height: 1.4;
    font-size: 1rem;
    margin-top: 2rem;
  }

  .check-item .check-icon {
    font-size: 22px;
    font-weight: 700;
    color: #234836;
    margin-bottom: 12px;
    display: flex;
  }

  .text-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #234836;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
  }

  .text-content p {
    margin-top: 2rem;
  }

  ul {
    font-size: 1rem;
    margin-top: 2rem;
  }

  .section {
    display: flex;
    justify-content: center;
    padding: 83px 0px 0px 10px;
    gap: 60px;
  }

  .gallery-wrapper {
    max-width: 100%;
    margin: 15px auto;
    padding: 0 20px;
  }

  .wp2-footer {
    padding-inline: 362px 391px;
  }

  .wp2-footer-blog {
    padding-inline: 362px 373px;
  }

  .wp-cta-hero {
    padding: 50px 300px;
  }
}

/* 4K+ Displays (2560px and up) */
@media (min-width: 2560px) {
  .check-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .check-item {
    color: #234836;
    font-weight: 500;
    line-height: 1.4;
    font-size: 1rem;
  }

  .check-item .check-icon {
    font-size: 22px;
    font-weight: 700;
    color: #234836;
    margin-bottom: 12px;
    display: flex;
  }
}

@media (max-width: 600px) {
  .check-features {
    gap: 25px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .hero {
    height: 300px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
}

@font-face {
  font-family: "LoosExtraWide";
  src: url("/fonts/LoosExtraWide-Bold.woff2") format("woff2");
  font-weight: bold;
}

@font-face {
  font-family: "SFProDisplay";
  src: url("/fonts/SFProDisplay-Regular.woff2") format("woff2");
  font-weight: normal;
}

/* -------------------------------------------------
   FULL RESPONSIVE LAYOUT FIXES
   ------------------------------------------------- */

@media (max-width: 600px) {
  nav {
    display: none; /* hide menu on mobile (optional) */
  }

  header .wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---------- MAIN SECTIONS (2 COLUMN LAYOUT) ---------- */
@media (max-width: 1100px) {
  .section {
    padding: 60px 60px;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .text-content h1 {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
  }

  .text-content p {
    font-size: 16px;
  }
}

/* ---------- CTA SECTION ---------- */
@media (max-width: 900px) {
  .wp-content h1 {
    font-size: 26px;
    font-family: "Open Sans", sans-serif;
  }

  .wp-content p {
    font-size: 14px;
  }

  .wp-btn-row {
    flex-direction: column;
    gap: 15px;
  }

  .wp-cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
    max-width: 480px;
    margin-left: 0 auto;
  }

  .check-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .check-item .check-icon {
    text-align: center;
    display: block;
  }

  .contact-container {
    flex-direction: column;
    margin-inline: 10px;
    padding: 40px 10px;
  }

  .contact-form-title-container {
    align-items: flex-start;
  }

  /* LEFT SIDE */
  .contact-left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-img {
    width: 100%;
  }

  .contact-title-img {
    width: 50px;
    height: 40px;
  }

  .contact-title {
    font-size: 18px;
    margin-top: 40px;
  }

  .contact-hours-title {
    font-size: 18px;
  }

  /* RIGHT SIDE FORM */
  .contact-form-wrapper {
    max-width: 100%;
    flex: 1 1 100%;
    margin-left: 0;
    padding: 30px 20px;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .contact-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-group {
    margin-bottom: 15px;
  }

  .contact-input {
    font-size: 14px;
    padding: 10px;
  }

  .contact-submit {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 20px;
  }

  .title-hours-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
  }

  header .wrap {
    align-items: flex-start;
    gap: 15px;
  }

  nav {
    gap: 1.5rem;
    margin-right: 0;
  }

  .btn-primary {
    padding: 0.55rem 1rem;
  }

  .section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .section img,
  .text-content {
    width: 100%;
  }

  .text-content h1 {
    font-size: 30px;
    font-family: "Open Sans", sans-serif;
  }

  #amenities {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* ---------- MAP ---------- */
@media (max-width: 700px) {
  .wp2-map {
    height: 300px;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 1100px) {
  .wp2-footer {
    padding-inline: 80px;
  }
}

@media (max-width: 800px) {
  .wp2-footer {
    padding-inline: 40px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .wp2-footer-text {
    font-size: 13px;
  }

  .wp2-footer-blog {
    padding-inline: 40px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .wp2-footer-text {
    font-size: 12px;
  }
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hide menu on mobile by default */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #e2e4d7;
    position: absolute;
    top: 65px;
    left: 0;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .hamburger {
    display: flex;
    margin-top: 15px;
  }

  nav.active {
    display: flex;
  }

  nav a.btn-primary {
    width: 100%;
    text-align: center;
  }

  #amenities {
    flex-direction: column-reverse;
  }

  .features {
    margin-left: 2rem;
    display: block;
  }

  .features ul li {
    font-size: 1rem;
  }

  .hero {
    height: auto;
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    padding-inline: 0rem;
  }

  .hero .actions {
    flex-direction: column;
    gap: 15px;
  }

  /* ---------- Gallery ---------- */
  .gallery-title {
    font-size: 26px;
    font-family: "Open Sans", sans-serif;
  }

  .gallery-wrapper {
    max-width: 100%;
    margin: 0px auto;
    padding: 0 20px;
    overflow: hidden;
  }

  .gallery-grid {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    gap: 0;
  }

  .slide {
    width: 100%; /* each slide takes full container width */
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slide img {
    width: 120%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
  }

  .contact-info {
    margin-top: 10px;
    line-height: 23px;
    font-weight: 500;
    font-size: 12px;
  }

  .contact-hours {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 23px;
  }

  .gallery-grid .slide img {
    width: 340px;
    height: 500px;
  }
}

.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);
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
