body{
    background-color: #f4f9fd;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
    background-color: #231709;
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    height: 75px;
}

#header a img{
    width: 275px;
    height: 60px;
}

/* NAVBAR */
#navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    gap: 5px;
    position: relative;
}

#navbar li {
    list-style: none;
    position: relative;
    padding: 0; 
}

#navbar li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 200;
    color: #ffffff;
    transition: 0.3s ease;
    padding: 12px 20px;
    display: block;
}

/* Hover & Active Styles */
#navbar li a:hover,
#navbar li a.active {
    color: #000000 !important;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: '';
    width: 30%;
    height: 2px;
    background-color: #ffffff !important;
    position: absolute;
    bottom: 6px;
    left: 20px;
}

/* Mobile nav + spacing classes */
#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

footer{
    background-color: #f4f9fd;
    color: #000000;
    display: flex;
    flex-direction: column; /* Change from row to column to stack items */
    align-items: center; /* Center everything horizontally */
    height: 100px;
}

footer .columns {
    display: flex; /* Display the columns in a row */
    justify-content: space-between; /* Space between columns */
    width: 100%; /* Full width or keep it as needed */
    max-width: 960px;
    text-align: center;
}

footer .columns > div {
    flex: 1; /* Equal width for all columns */
}

footer .col{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

footer .follow{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

footer .col h4{
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 7px;
    text-transform: uppercase;
}

footer .follow h4{
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 7px;
    text-transform: uppercase;
}

footer .col p{
    font-size: 13px;
    padding-bottom: 10px;
    margin: 0 0 0 0;
}

footer .col a{
    font-size: 13px;
    color: #000000;
    text-decoration: none;
    padding-bottom: 10px;
}


footer .col a:hover{
    color: #1827f3;
    cursor: pointer;
    text-decoration: underline;
}

footer .copyright{
    text-align: center;
    font-size: 0.8rem;
    color: #000;
}

footer .follow a{
     font-size: 15px;
    color: #000000;
    text-decoration: none;
    padding-bottom: 10px;
}

footer .follow a:hover{
    color: #1827f3;
    cursor: pointer;
    text-decoration: underline;
}

/* Main content section */
/* Banner Section */
.banner {
  position: relative;
  height: 70vh; /* tall hero section */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center content */
  align-items: center;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* Video background */
.banner video.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 0 0 30px 30px;
  z-index: 0;
}

/* Dark overlay for readability */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(37, 37, 37, 0.5); /* semi-transparent dark overlay */
  border-radius: 0 0 30px 30px;
  z-index: 1;
}

/* Text and button above overlay */
.banner h1,
.banner h2,
.banner button {
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Main heading */
.banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Subheading */
.banner h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.4;
}

.banner-content {
  position: relative;
  z-index: 10; /* higher than overlay & video */
}

/* Call-to-action button */
.banner-content .btn {
  display: inline-block;
  background: #65350f;
  color: #fff; /* ensure text is visible */
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3); /* subtle shadow to pop */
  transition: all 0.3s ease;
  z-index: 2;
}

.banner-content .btn:hover {
  background: #0d6eff; /* slightly darker orange */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}


/* Intro Section */
.intro {
  max-width: 1000px;
  margin: 20px auto;
  padding: 30px;
  text-align: center;
  line-height: 1.7;
  font-size: 1.1rem;
  color: #8C6A34;
}

.intro p {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 425;
}

.intro p:last-child {
  margin-bottom: 0;
}

.features {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  padding: 20px 20px;
  background: #ffffff;
  text-align: center;
  color: #333;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #2e1503;
}

.features-swiper {
  max-width: 850px;
  height: 200px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  padding: 20px;
}

.features-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 0 !important;
}

.features-swiper h3 {
  margin-bottom: 3px; 
  color: #65350f;
  font-size: 1.25rem;
}

.features-swiper p {
  color: #8C6A34;
  font-size: 1.18rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 450;
}

.features-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;       /* center text inside slide */
  box-sizing: border-box;   /* ensure padding is included */
  width: auto;              /* prevents full stretch */
}


/* Swiper controls */
.swiper-button-next,
.swiper-button-prev {
  color: #65350f !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #000;
}

.swiper-pagination-bullet {
  background: #333;
}

.swiper-pagination-bullet-active {
  background: #65350f !important;
}

/* Available Spaces Section */
.spaces {
  font-family: "Segoe UI", Arial, sans-serif;
  padding: 20px 20px;
  background: #f8f9fa;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
}

.spaces h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #2e1503;
}

.spaces p {
  font-size: 1.5rem;
  text-align: center;
  color: #65350f;
  margin-bottom: 25px;
}

.spaces ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #8C6A34;
}

.spaces li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1.3rem;
}

.spaces strong {
  color: #8C6A34;
}

.spaces .btn {
  display: inline-block;
  padding: 12px 22px;
  background: #65350f;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s ease;
  text-align: center;
}

.spaces .btn:hover {
  background: #023e8a;
}

/* ===== Gallery Section ===== */
/* General Gallery Section */
.gallery {
  padding: 20px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #2e1503;
}

.gallery h3 {
  font-size: 1.25rem;
  margin: 35px 0 20px;
  color: #8C6A34;
  font-weight: 500;
}

/* View More Button */
.gallery-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #65350f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.gallery-btn:hover {
  background: #003580;
}

/* Swiper slider - universal for all sections */
.teaser-swiper {
  max-width: 500px;
  margin: 20px auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
}

.teaser-swiper img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #000;
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background: #333;
}

.swiper-pagination-bullet-active {
  background: #004aad; /* brand color */
}

/* ===== Media Queries ===== */
@media screen and (max-width: 992px) {
  /* ===== Header ===== */
  #header {
    padding: 12px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  #header a img {
    width: 180px; /* slightly smaller for mobile */
    height: auto;
    transition: transform 0.3s ease;
  }

  #header a img:hover {
    transform: scale(1.05); /* subtle hover effect */
  }

  /* ===== Mobile Navbar Styling ===== */
  #navbar {
    display: none;              /* hidden initially */
    flex-direction: column;     /* vertical stacking */
    width: 100%;                /* full width */
    background-color: #231709;
    position: absolute;         /* float below header */
    top: 100%;
    left: 0;
    margin: 0;
    padding: 15px 0;            /* larger tap area */
    border-top: 1px solid #333; /* subtle separation */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease-in-out;
  }

  #navbar.active {
    display: flex; /* show menu when active */
  }

  #navbar li a {
    font-size: 12px;
    padding: 14px 20px;
    text-align: center;
    color: #ffffff;
    width: 100%;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  #navbar li a:hover,
  #navbar li a.active {
    color: #1d71b8;
    background-color: rgba(255, 255, 255, 0.05);
  }

  /* ===== Mobile Menu Toggle ===== */
  #mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  #bar {
    font-size: 0.9rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
  }

  #close {
    font-size: 0.9rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;

    position: absolute; /* or fixed if you want it relative to viewport */
    top: 10px;          /* distance from the top */
    right: 10px;        /* distance from the right */
    z-index: 9999;      /* bring it on top of other elements */
}

  #bar:hover,
  #close:hover {
    color: #1d71b8;
    transform: scale(1.1); /* subtle feedback on hover */
  }

  #close {
    display: none; /* hidden initially */
  }

  /* Banner */
.banner {
    height: 50vh;
    padding: 10px 15px;
    border-radius: 0 0 20px 20px;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner h2 {
    font-size: 1rem;
  }

  .banner button {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  /* Intro Section */
  .intro {
    margin: 40px auto;
    padding: 15px;
    font-size: 1rem;
  }

  .intro p {
  font-size: 1.0rem;
  padding: 10px;
}

  /* Features / Swiper */

  .features h2{
    font-size: 1.3rem;
  padding: 10px;
  }
  
  .features-swiper {
    max-width: 90%;
    padding: 15px;
  }

  .features-swiper h3 {
    font-size: 1.0rem;
  }

  .features-swiper p{
    font-size: 1.0rem;
  }

  .spaces{
    padding-top: 0;
  }

  .spaces h2{
    font-size: 1.3rem;
    padding: 10px;
    margin-bottom: 10px;
  }

  .spaces p{
    font-size: 1.15rem;
  padding: 10px;
  margin-top: 5px;
  }

  .spaces li{
    font-size: 1.0rem;
  padding: 10px;
  }

  /* Teaser gallery */

  .gallery h2{
    font-size: 1.3rem;
    padding: 10px;
  }

  .teaser-swiper {
    max-width: 90%;
    height: auto;
  }

  .teaser-swiper img {
    height: 180px;
  }

  /* Footer */
  footer .columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  footer .col, footer .follow {
    flex: unset;
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  #header {
    padding: 10px;
  }

  #header a img {
    width: 130px;
  }

  .banner {
    height: 45vh;
  }

  .banner h1 {
    font-size: 1.6rem;
  }

  .banner h2 {
    font-size: 0.9rem;
  }

  .features-swiper {
    padding: 10px;
  }

  .teaser-swiper img {
    height: 150px;
  }

  .intro {
    margin: 30px 10px;
    font-size: 0.95rem;
  }
}


