

.logo {grid-column:1/3;}
 .nav { grid-column: 3/9;}
.signin { grid-column: 9/11;}
.search { grid-column: 1/11;}
.secondnav {grid-column: 1/11}
    .banner { grid-row:4/6;
      grid-column: 1/6; }
        .banner1 { grid-column: 6/9; }
        .banner2 { grid-column: 9/11; }
        .banner3 { grid-column: 6/8; }
        .banner4 { grid-column: 8/11; }
    .main { grid-column:1/11;}
    .footer { grid-column:1/11;}
    
    body {
      margin: 0px;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;color: white;
    }
     
    .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 1px;
        background-color: rgb(0, 0, 0);
      }
      .wrapper > div { 
        text-align: center;
        font-size: 20px;
        background-color: rgb(0, 0, 0);
      }
    
    
      @media screen and (max-width: 600px) {
      


@media screen and (max-width: 600px) {

  
  .logo     { grid-column: 1 / 11; grid-row: 1; }
  .nav      { grid-column: 1 / 11; grid-row: 2; }
  .signin   { grid-column: 1 / 11; grid-row: 3; }
  .search   { grid-column: 1 / 11; grid-row: 4; }
  .secondnav{ grid-column: 1 / 11; grid-row: 5; }

  .banner   { grid-column: 1 / 11; grid-row: 6; }
  .banner1  { grid-column: 1 / 11; grid-row: 7; }
  .banner2  { grid-column: 1 / 11; grid-row: 8; }
  .banner3  { grid-column: 1 / 11; grid-row: 9; }
  .banner4  { grid-column: 1 / 11; grid-row: 10; }

  .main     { grid-column: 1 / 11; grid-row: 11; }
  .footer   { grid-column: 1 / 11; grid-row: 12; }

}

    
    
    
    body {
      margin: 0px;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
     
    .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 1px;
        background-color: rgb(2, 2, 2);
      }
      .wrapper > div { 
        text-align: center;
        font-size: 20px;
        background-color: rgb(255, 255, 255);
      }

    
   @media (max-width: 600px) {
  .topnav a {
    display: block;
  }
}


@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }    
    }
  }

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}
      




.container {
    padding: 20px 30px;  /* more space around the form */
}

input[type=text], input[type=password] {
    width: 100%;           /* full width */
    padding: 12px 15px;    /* smaller, cleaner padding */
    margin: 10px 0;        /* space between fields */
    display: block;         /* ensure vertical stacking */
    border: 1px solid #444; /* optional border for visibility */
    background-color: #111; /* dark black background */
    color: white;           /* text visible on dark */
    border-radius: 5px;     /* rounded corners */
}

.cancelbtn, .signupbtn {
    float: left;           /* desktop: side by side */
    width: 50%;
    padding: 14px 20px;
    margin: 8px 0;
    border-radius: 5px;
}

/* Mobile override inside media query */
@media screen and (max-width: 600px) {
    .cancelbtn, .signupbtn {
        width: 100%;
        float: none;
        margin: 5px 0;
    }
}


/* Add a background color when the inputs get focus */
input[type=text]:focus, input[type=password]:focus {
  background-color: #000000;
  outline: none;
}

/* Set a style for all buttons */
button {
  background-color: #8a8a8a;
  color: rgb(0, 0, 0);
  padding: 20px 30px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

/* Extra styles for the cancel button */
.cancelbtn {
  padding: 14px 20px;
  background-color: #474747;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
  float: left;
  width: 50%;
}

/* Add padding to container elements */
.container {
  padding: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #474e5d;
  padding-top: 50px;
}

@media screen and (max-width: 600px) {

  /* Ensure all form inputs stack full width */
  .modal-content input[type=text],
  .modal-content input[type=password] {
    width: 100% !important;     /* force full width */
    display: block;             /* stack vertically */
    margin: 8px 0;              /* consistent spacing */
    padding: 12px 10px;         /* adjust padding for mobile */
    box-sizing: border-box;     /* ensure padding doesn't push width */
  }

  /* Make sure modal container stacks content */
  .modal-content .container {
    display: block;             /* stop any flex issues */
    padding: 10px 15px;         /* comfortable padding */
  }

  /* Buttons stacked vertically */
  .cancelbtn, .signupbtn {
    width: 100%;
    float: none;
    margin: 5px 0;
  }

  .clearfix {
    display: block;             /* vertical stacking */
  }
}

/* Ensure all inputs in modal take full width and stack vertically */
.modal-content input[type=text],
.modal-content input[type=password] {
  width: 100%;             /* full width of container */
  display: block;          /* stack vertically */
  margin: 10px 0;          /* spacing between inputs */
  padding: 12px 15px;      /* comfortable padding */
  box-sizing: border-box;  /* include padding in width */
  background-color: #111;  /* dark background for black box */
  color: white;            /* text visible */
  border: 1px solid #444;  /* subtle border */
  border-radius: 5px;
}

/* Container padding for desktop */
.modal-content .container {
  padding: 20px 30px;
  display: block;          /* ensures stacking of children */
}

.cancelbtn, .signupbtn {
  float: left;
  width: 50%;              /* side by side */
  padding: 14px 20px;
  margin: 8px 0;
  border-radius: 5px;
}


/* Style the horizontal ruler */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
 
/* The Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
}

.close:hover,
.close:focus {
  color: #ffffff;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Modal (background) */
.modal {
  display: none;       /* hidden by default */
  position: fixed;     
  z-index: 10000;          
  left: 0;
  top: 0;
  width: 100%;         
  height: 100%;        
  overflow: auto;      
  background-color: rgba(0, 0, 0, 0.8);  /* dark black overlay */
  padding-top: 50px;
}

/* Modal content box */
.modal-content {
  background-color: #000000;   /* black box */
  margin: 5% auto 15% auto;   
  border: 1px solid #888;
  width: 80%;                  /* desktop width */
  padding: 20px;               /* make it neat */
  color: white;                /* text color white */
  box-shadow: 0 0 10px #333;  /* optional subtle shadow */
  border-radius: 10px;         /* optional rounded corners */
}


/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .signupbtn {
     width: 100%;
  }
}



.footer{
background:#000;
padding:30px 0px;
font-family: 'Play', sans-serif;
text-align:center;
}

.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:gray;
font-size:0.8em;
}

.footer .row a{
text-decoration:none;
color:gray;
transition:0.5s;
}

.footer .row a:hover{
color:#fff;
}

.footer .row ul{
width:100%;
}

.footer .row ul li{
display:inline-block;
margin:0px 30px;
}

.footer .row a i{
font-size:2em;
margin:0% 1%;
}


@media (max-width: 720px) {

  .footer {
    text-align: center;
    padding: 20px;
  }

  .footer .row ul {
    padding: 0;
  }

  .footer .row ul li {
    display: block;
    margin: 10px 0;
    text-align: center;
  }

  .footer .row a i {
    margin: 0 10px;
  }
}




.container {
    display: flex;
    gap: 12px;        /* space between boxes */
    flex-wrap: wrap;  /* optional: lets boxes wrap if screen is small */
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    background: #111;
    color: white;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s;
}

.box:hover {
    background: white;
    color: black;
    cursor: pointer;
}

.banner {
    display: flex;
    flex-direction: row;   /* ensure left → right */
    flex-wrap: wrap;       /* allow wrapping */
    gap: 10px;             /* spacing between boxes */
    padding: 10px 20px;
    background: #000000;
}

.cc-item {
    display: inline-flex;  /* makes each item act like an individual box */
    align-items: center;
    padding: 10px 20px;
    background: #000000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    font-weight: bold;
    white-space: nowrap;   /* keeps text in one line inside the box */
}

.cc-item:hover {
    background: #000;
    color: #000000;
}

* {box-sizing: border-box}

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: relative;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 100 300px 300px 100;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}



.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 60px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #000000;
  color: white;
}

/* ===== MOBILE FIX (NON-DESTRUCTIVE) ===== */
@media (max-width: 600px) {

  /* collapse grid without changing desktop */
  .wrapper {
    grid-template-columns: repeat(10, 1fr);
  }

  /* stack everything full width */
  .logo,
  .nav,
  .signin,
  .search,
  .secondnav,
  .banner,
  .banner1,
  .banner2,
  .banner3,
  .banner4,
  .main,
  .footer {
    grid-column: 1 / 11 !important;
  }

  /* fix huge nav spacing */
  .topnav a {
    padding: 12px 14px;
    font-size: 16px;
  }

  /* images stop breaking layout */
  img {
    max-width: 100%;
    height: auto;
  }

 .secondnav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}


}

.wrapper > div { 
  background-color: #000;
}

html, body {
  background-color: #000;
}

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* VIDEO BANNER */
.video-banner {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* Slight tint */
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.video-content h1 {
  font-size: 3em;
  margin-bottom: 0.3em;
}

.video-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.btn-journey {
  display: inline-block;
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border: 2px solid #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-journey:hover {
  background-color: white;
  color: black;
  border-color: black;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .video-content h1 {
    font-size: 2em;
  }
  .video-content p {
    font-size: 1em;
  }
  .btn-journey {
    padding: 12px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .video-content h1 {
    font-size: 1.5em;
  }
  .video-content p {
    font-size: 0.9em;
  }
  .btn-journey {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.video-banner {
  grid-column: 1 / -1; /* span all columns */
}

/* VIDEO BANNER STYLES */
.video-banner {
  position: relative;
  width: 100%;
  height: 80vh; /* full viewport height for hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video {
  width: 100%;
  height: auto;
  position: relative; 
  z-index: 1;         
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* slightly tinted */
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 90%;
}

.video-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.video-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #000;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #222;
}


@media screen and (max-width: 768px) {
  .video-content h1 {
    font-size: 2rem;
  }
  .video-content p {
    font-size: 1rem;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {

  .banner,
  .container,
  .video-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}

.banner-video {
  width: 100%;
  max-width: 100%;
}
html, body {
  overflow-x: hidden;
}

.contact-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  color: white;
  font-family: 'Gill Sans', sans-serif;
}

/* Top section: Info + Map */
.contact-top {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info {
  flex: 1;
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
}

.map-container {
  flex: 1;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

/* Contact form styling like your sign-in fields */
.contact-form {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #111;
  color: white;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #000;
  outline: none;
}

.contact-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 5px;
  background-color: #8a8a8a;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: white;
}

/* Responsive layout */
@media screen and (max-width: 768px) {
  .contact-top {
    flex-direction: column;
  }
  .map-container {
    height: 300px;
  }
}

/* QUALITY SECTION LAYOUT */
.quality-section {
  grid-column: 1 / 11;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
}

/* Right-hand listings (2x2 grid) */
.featured-listings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Listing card */
.listing-card {
  background: #000;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.listing-card:hover {
  transform: translateY(-5px);
}

.listing-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.listing-info {
  padding: 8px;
  text-align: center;
}

.listing-info h3 {
  font-size: 16px;
  margin: 5px 0;
}

.listing-info p {
  font-size: 13px;
  color: #aaa;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .quality-section {
    grid-template-columns: 1fr;
  }
}
.featured-listings {
  grid-column: 1 / -1;        
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  width: 100%;                
  max-width: 1200px;          
  margin: 0 auto;             

  padding: 20px;
}

@media (max-width: 768px) {
  .featured-listings {
    grid-template-columns: 1fr;
  }
}


.cc-item {
    display: inline-flex;  
    align-items: center;
    padding: 10px 20px;
    background: #000000;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s; /* smooth transition */
    font-weight: bold;
    white-space: nowrap;
    text-decoration: none; 
    border-bottom: 3px solid transparent; 
}

.cc-item:hover {
    border-bottom: 3px solid red; /* red underline */
    background: #000;   /* keep background black */
    color: white;       /* text stays white */
}


.main-section {
  grid-column: 1 / 11;
  padding: 40px 20px;
  background: #000;
  text-align: center;
}

.main-section h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 30px;
}

.new-arrivals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.arrival-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.arrival-card:hover {
  transform: translateY(-6px);
}

.arrival-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.arrival-card h3 {
  margin: 15px 0 5px;
}

.arrival-card span {
  display: block;
  padding-bottom: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Coming soon badge */
.upcoming {
  position: relative;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: red;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
}

.featured-wrapper {
  width: 100%;
  background: radial-gradient(circle at top, #111, #000);
  padding: 60px 0;
}

.cc-item {
  text-decoration: none;
  color: white;
}
