 :root {
      --overlay: rgba(0, 0, 0, 0.5);
      --fg: #ffffff;
      --accent: #ebc384;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
        @font-face {
        font-family: "BASKRV_L";
        src: url("font/BASKRV_L.woff2") format("woff2"),
             url("font/BASKRV_L.woff") format("woff");
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }
      .dwel{
        color: var(--accent);
        padding-bottom: 20px;
    }
    /* Apply BASKRV_L only to h2 and p */
    h2 {
        font-family: 'BASKRV_L', serif;
    }
    p {
        font-family: 'BASKRV_L', serif;
    }

    html, body {
      height: 100%;
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--fg);
      background: #000;
    }

    /* --- Navigation --- */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0, 0, 0, 0.1);
      /*backdrop-filter: blur(6px);*/
      z-index: 1000;
    }

    nav .logo img {
      height: 80px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: var(--fg);
      font-weight: 500;
      transition: color 0.3s ease;
      font-family: 'BASKRV_L', serif;
      font-size:1.2rem;
    }

    nav ul li a:hover {
      color: var(--accent);
    }

    /* --- Dropdown Menu --- */
    nav ul li .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(0,0,0,0.9);
      min-width: 200px;
      display: flex;
      flex-direction: column;
      border-radius: 6px;
      padding: .5rem 0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);

      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(10px);
      transition: all 0.35s ease;
      z-index: 999;
    }

    nav ul li .submenu li a {
      padding: .6rem 1rem;
      display: block;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    nav ul li .submenu li a:hover {
      background: rgba(255,255,255,0.08);
      color: var(--accent);
    }

    nav ul li:hover > .submenu {
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
    }

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

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

    /* Mobile menu */
    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        padding: 1rem;
        gap: 1rem;
        display: none;
      }

      nav ul.active {
        display: flex;
      }

      .hamburger {
        display: flex;
      }

      nav ul li .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
        max-height: 0;
        opacity: 0;
      }

      nav ul li.open > .submenu {
        max-height: 300px;
        opacity: 1;
      }

      nav ul li > a i {
        margin-left: 6px;
        font-size: .8rem;
        transition: transform 0.3s ease;
      }

      nav ul li.open > a i {
        transform: rotate(180deg);
      }
    }

.hero {
  min-height: 100vh;
  background-image: url('slides/the_Aisle_3B-4.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 2rem;
  isolation: isolate;
  transition: background-image 1s ease-in-out;
}
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem;
  isolation: isolate;
}

.slideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
}

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.55) 100%);
      z-index: -1;
    }

    .card {
      width: min(680px, 100%);
      backdrop-filter: blur(6px);
      background: color-mix(in srgb, var(--overlay) 80%, transparent);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 24px;
      padding: clamp(1.25rem, 3vw, 2rem);
      box-shadow: 0 10px 40px rgba(0,0,0,.35);
      text-align: center;
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      width: min(400px, 90%);
      text-align: center;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-weight: 800;
      letter-spacing: .5px;
      font-size: clamp(1rem, 1.8vw, 1.125rem);
      text-transform: uppercase;
      opacity: .95;
    }

    p.lead {
      margin: 0 auto 1.25rem;
      max-width: 52ch;
      font-size: clamp(1rem, 2.1vw, 1.125rem);
      opacity: .9;
    }

    .row { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1rem; }

    input[type="email"] {
      flex: 1 1 260px;
      appearance: none;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: #fff;
      padding: .9rem 1rem;
      border-radius: 999px;
      outline: none;
    }

    button {
      flex: 0 0 auto;
      border: 0;
      padding: .9rem 1.25rem;
      border-radius: 999px;
      font-weight: 600;
      background: var(--accent);
      color: #111;
      cursor: pointer;
    }
  

    .meta { margin-top: 1rem; font-size: .9rem; opacity: .85; }

    @media (prefers-reduced-motion: no-preference) { 
      .card { animation: floatIn .7s ease-out both; }
      @keyframes floatIn { from { opacity: 0; transform: translateY(8px) scale(.98);} to { opacity: 1; transform: translateY(0) scale(1);} }
    }
    
@media (max-width: 768px) {
  .card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    transform: none;
    width: min(90%, 400px);
    margin: 0;
  }
  .brand img{
      width: 160px;
  }
   .hero {
    display: flex;
    justify-content: center;
    align-items: center;
  }
    }
    .slideshow {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
  z-index: -1;
}
@media (max-width: 768px) {
  .slideshow {
    background-size: contain;
    background-position: center;
    background-color: #000;
  }
}
/* Modal background */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  z-index: 3000;
  justify-content: center;
  align-items: center;
}

/* Modal content */
.modal-content {
  background: rgba(0,0,0,0.5);
  padding: 3rem;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  color: #fff;
  font-family: 'BASKRV_L', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
  text-align: center;
  animation: scaleIn 0.5s ease forwards;
}

/* Close button */
.modal .close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  -webkit-tap-highlight-color: transparent;
  z-index: 9999;
  transition: background 0.3s, color 0.3s;
}
.modal .close:hover {
  background: var(--accent);
  color: #fff;
}

/* Animation */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* Responsive text */
@media (max-width: 600px) {
  .modal-content {
    font-size: 1rem;
    padding: 1.5rem;
  }
}

/* about  */

  :root {
      --overlay: rgba(0, 0, 0, 0.65);
      --fg: #ffffff;
      --accent: #ebc384;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    @font-face {
      font-family: "BASKRV_L";
      src: url("font/BASKRV_L.woff2") format("woff2"),
           url("font/BASKRV_L.woff") format("woff");
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
    h2, p { font-family: 'BASKRV_L', serif; }

    body {
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--fg);
      background: #000;
      line-height: 1.6;
    }

    /* --- Navigation --- */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
      z-index: 1000;
    }

    nav .logo img { height: 100px; }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav ul li { position: relative; }

    nav ul li a {
      text-decoration: none;
      color: var(--fg);
      font-weight: 500;
      transition: color 0.3s ease;
      font-family: 'BASKRV_L', serif;
      font-size: 1.2rem;
    }

    nav ul li a:hover { color: var(--accent); }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--fg);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* --- Dropdown Menu --- */
    nav ul li .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(0,0,0,0.9);
      min-width: 200px;
      display: flex;
      flex-direction: column;
      border-radius: 6px;
      padding: .5rem 0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);

      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(10px);
      transition: all 0.35s ease;
      z-index: 999;
    }

    nav ul li .submenu li a {
      padding: .6rem 1rem;
      display: block;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    nav ul li .submenu li a:hover {
      background: rgba(255,255,255,0.08);
      color: var(--accent);
    }

    nav ul li:hover > .submenu {
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
    }

    /* Mobile */
    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: flex-start;
        width: 200px;
        padding: 1rem;
        gap: 1rem;
        display: none;
      }
      nav ul.active { display: flex; }
      .hamburger { display: flex; }

      nav ul li .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
      }
      nav ul li.open > .submenu {
        max-height: 300px;
        opacity: 1;
      }
    }
   

    /* --- About Section --- */
    .about-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
      padding: 10rem 2rem 2rem; /* add space for navbar */
      gap: 2rem;
    }
    h3{
      font-family: 'BASKRV_L', serif;
    }
    .about-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem;
    }

    .about-text h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
      color: var(--accent);
    }

    .about-text p {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .about-slider {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
    }

    .about-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0; left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .about-slider img.active {
      opacity: 1;
    }

    @media (max-width: 900px) {
      .about-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .about-slider { min-height: 300px; }
    }
    .features-section {
      background: #111;
      color: var(--fg);
      padding: 6rem 2rem;
    }

    .features-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .features-list h2 {
      color: var(--accent);
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .features-list ul {
      list-style: none;
      padding: 0;
    }

    .features-list ul li {
      position: relative;
      padding-left: 2.2rem;
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
      font-family: 'Inter', sans-serif;
    }

    .features-list ul li::before {
      content: "◆";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-size: 1.2rem;
      line-height: 1;
    }

    .features-image img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 1rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .features-image img:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    .features-image p {
      font-size: 1rem;
      opacity: 0.9;
      text-align: center;
      font-family: 'BASKRV_L', serif;
    }

    @media (max-width: 900px) {
      .features-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .features-list ul li {
        padding-left: 1.5rem;
        text-align: left;
      }
    }

    /* amenites */
    :root {
      --overlay: rgba(0, 0, 0, 0.65);
      --fg: #ffffff;
      --accent: #ebc384;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    @font-face {
      font-family: "BASKRV_L";
      src: url("font/BASKRV_L.woff2") format("woff2"),
           url("font/BASKRV_L.woff") format("woff");
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
    h2, p { font-family: 'BASKRV_L', serif; }

    body {
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--fg);
      background: #000;
      line-height: 1.6;
    }

    /* --- Navigation --- */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
      z-index: 1000;
    }

    nav .logo img { height: 100px; }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav ul li { position: relative; }

    nav ul li a {
      text-decoration: none;
      color: var(--fg);
      font-weight: 500;
      transition: color 0.3s ease;
      font-family: 'BASKRV_L', serif;
      font-size: 1.2rem;
    }

    nav ul li a:hover { color: var(--accent); }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--fg);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* --- Dropdown Menu --- */
    nav ul li .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(0,0,0,0.9);
      min-width: 200px;
      display: flex;
      flex-direction: column;
      border-radius: 6px;
      padding: .5rem 0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);

      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(10px);
      transition: all 0.35s ease;
      z-index: 999;
    }

    nav ul li .submenu li a {
      padding: .6rem 1rem;
      display: block;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    nav ul li .submenu li a:hover {
      background: rgba(255,255,255,0.08);
      color: var(--accent);
    }

    nav ul li:hover > .submenu {
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
    }

    /* Mobile */
    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: flex-start;
        width: 200px;
        padding: 1rem;
        gap: 1rem;
        display: none;
      }
      nav ul.active { display: flex; }
      .hamburger { display: flex; }

      nav ul li .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
      }
      nav ul li.open > .submenu {
        max-height: 300px;
        opacity: 1;
      }
    }
    /* --- Amenities Section --- */
    .amenities-container {
      padding: 12rem 2rem 3rem; /* offset navbar */
      max-width: 1200px;
      margin: auto;
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .amenity-card {
      background: rgba(255,255,255,0.05);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .amenity-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.6);
    }

    .amenity-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .amenity-card h2 {
      font-size: 1.3rem;
      margin: 1rem 0 0.5rem;
      color: var(--accent);
    }

    .amenity-card p {
      font-size: 1rem;
      opacity: 0.85;
      padding: 0 1rem 1.5rem;
    }

    @media (max-width: 1024px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .amenities-grid {
        grid-template-columns: 1fr;
      }
    }
    /* contact */
    