

/* --- GENERAL STYLING --- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  scroll-behavior: smooth;
  background-color: rgb(32, 32, 32);
  overflow-x: hidden;
}

section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff3131;
}

/* --- NAVBAR --- */
.navbar-wrapper {
  display: flex;
  align-items: flex-end; /* ensures navbar stays at bottom */
  height: 130px; /* or whatever your navbar height is */
  background-color: #ffffffa4;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.4s;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* keep items at bottom */
  padding: 0 30px; /* optional: reduce top/bottom padding */
  height: 100%; /* make navbar fill the wrapper */
  margin-bottom: 1%;
  
}

.logo{
  display: flex;
  gap: 20px;
}
.logo h1{
  font-size: 18px;
  margin-left: 0%;
  color: #111;
  white-space: nowrap;
}

.logo img {
  height: 100px;
  margin-top: 2%
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: right; /* ensures the links align perfectly with the logo */
  gap: 50px;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff3131;
}

/* --- FLOATING BOOK NOW BUTTON --- */
.btn-Book{
  position: fixed;
  right:5%;
  background-color: #ff3131;
  color: white;
  padding: 25px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transition: background 0.3s, transform 0.3s;
  animation: pulse 2s infinite;

}
.floating-btn{
  display: none;
}

.btnBook:hover {
  background-color: #ff5050;
  transform: scale(1.1);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('Pictures/backpic2.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 6rem;
  margin-bottom: 10px;
}
.hero-content h2 {
  font-size: 2rem;
  color: aliceblue;
  margin-bottom: 10px;
}

.hero-content h3{
  display: none;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}



/* --- ABOUT --- */


.container p{
  text-align: center;
  
}

.container img{
  margin-top: 10%;
  max-width: 80%;
  max-height: auto;
}
.container p{
  font-style: italic;
  font-size: Large;
  font-family: Arial, sans-serif;
  text-align: center;
  text-align: justify;
  margin-left: 10%;
  margin-right: 10%;
}

.container p1{
  font-style: italic;
  font-size: medium;
  font-family: Arial, sans-serif;
  text-align: justify;
  
  
}
.container2 img{
  
  max-width: 30%;
  max-height: auto;
}

.container2 {
  text-align: center;
  width: 100%;
  background-color: #dddddd;
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container2 h2 {
  color: #ff3131;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.container2 p {
  display: block;
  max-width: 900px; /* limit text width for readability */
  margin: 3px auto;
  text-align: left;
  font-size: 25px;
  line-height: 1.6;
  color: rgb(46, 44, 44);
  
}

.container p,
.container2 p {
  text-align: justify;
  text-justify: inter-word; /* use more natural spacing */
  word-spacing: 0.05em; /* tighten word gaps slightly */
  hyphens: auto; /* allows line breaks inside long words */
}

/* --- CIRCLE LIST STYLING --- */
.circle-list-container {
  max-height: 400px; /* adjust the height as needed */
  overflow-y: auto; /* allows vertical scrolling */
  padding: 0 10px;
  margin: 20px 0;
  border-left: 3px solid #570c0c; /* optional visual accent */
  color: #111;
  text-align: left;
  margin-left: 27%;
 
 
}

.circle-list {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin: 0;
}

.circle-list li {
  position: relative;
  padding-left: 25px; /* space for the circle */
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.5;
}

/* create the small circle */
.circle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px; /* center circle vertically */
  width: 10px;
  height: 10px;
  background-color: #580a0a; /* circle color */
  border-radius: 50%;
}

/* optional: scrollbar styling */
.circle-list-container::-webkit-scrollbar {
  width: 8px;
}

.circle-list-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.circle-list-container::-webkit-scrollbar-thumb {
  background: #ff3131;
  border-radius: 4px;
}



/* --- SERVICES --- */

#rates .container p{
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background-color: #111;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 15px rgba(255, 49, 49, 0.4);
}


/* --- Contact --- */
#contact .container h2{
  text-align: left;
  margin-left: 10%
}

/* --- FEEDBACK FORM --- */


.feedback-form {
  
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
  gap: 15px;
}

.feedback-form input,
.feedback-form textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  
}

.feedback-form button {
  align-self: center;
}

/* --- FOOTER --- */
.footer {
  background-color: #111;
  text-align: center;
  padding: 20px 10px;
  color: #ccc;
  font-size: 0.9rem;
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.loader {
  border: 6px solid #222;
  border-top: 6px solid #ff3131;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- FADE IN --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .container img{
    margin-top: 10%;
    max-width: 100%;
    max-height: auto;
  }

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 60px 15px;
  }
}


/* --- RATES & LOCATIONS --- */
/* --- ZONE BUTTONS --- */


.zone-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.zone-btn {
  padding: 20px;        /* reduce padding to give more room for image */
  width: 360px;
  height: auto;         /* let height adjust based on content */
  background-color: #ff3131;
  color: #dddddd;
  border-radius: 10px;
}

.zone-btn img {
  width: 100%;          /* fill the button width */
  height: 180px;        /* keep a fixed height or adjust as needed */
  border-radius: 5px;   /* optional rounded corners */
  object-fit: cover;    /* cover ensures the image fills the area without distortion */
  margin: 0;            /* remove extra negative margins */
}


.zone-btn span {
  font-weight: bold;
  font-size: 1rem;
}

.zone-btn:hover {
  background-color: #ff5050;
  transform: scale(1.05);
}

.zone-btn.active {
  background-color: #cc2828;
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff3131;
}

/* --- ZONE INFO PANELS --- */


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .zone-btn {
    width: 130px;
    padding: 8px;
    gap: 8px;
  }

  .zone-btn img {
    height: 80px;
  }

  .zone-btn span {
    font-size: 0.85rem;
  }

}




/* --- NAVBAR --- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  
}

/* Mobile navbar */
@media (max-width: 768px) {

  .btn-Book{
    display: none;
  }

  .floating-btn {
    display: block;
    position: fixed;
    bottom: 100px;
    right: 250px;
    background-color: #ff3131;
    color: white;
    padding: 25px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    transition: background 0.3s, transform 0.3s;
    animation: pulse 2s infinite;
  }

  .floating-btn:hover {
    background-color: #ff5050;
    transform: scale(1.1);
  }

  .menu-toggle {
    display: block;
    margin-left:290%;
    margin-top: -22%;
    color: #111;
  }
  
  .hero-content h3{
    display: block;
    font-size: 50px;
  }
  .hero-content h1{
    display: none;
  }
  

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(100, 100, 100, 0.95);
    text-align: center;
    gap: 10px;
    padding: 20px 0;
  }

 
  
  .nav-links li a {
    display: block;
    font-size: 1.2rem;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .container p{
    font-style: italic;
    font-size: Large;
    font-family: Arial, sans-serif;
    text-align: center;
    text-align: justify;
    
    
  }

 

  .container2 p {
    text-align: justify;
    text-justify: inter-word;
    word-spacing: 0em;
    hyphens: auto;
    font-size: 16px;
  }

}





/* --- PULSE ANIMATION --- */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 49, 49, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 49, 49, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 49, 49, 0);
  }
}

@media (max-width: 768px) {
  .floating-btn {
    padding: 16px 32px;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
  }
}


/* --- Responsive adjustments for mobile --- */
@media (max-width: 768px) {
  .container2 {
    padding: 50px 15px;
    width: 100vw;
    margin-left: -4.5vw;
    margin-right: -50vw;
  }


  .container2 h2 {
    font-size: 1.8rem;
  }

  .container2 img{
  
    max-width: 80%;
    max-height: 20%;
  }

 
  .circle-list li {
    font-size: 17px; /* consistent readable size */
    margin: 5%;

  
  }
  .circle-list-container {
    max-height: 400px; /* adjust the height as needed */
    overflow-y: auto; /* allows vertical scrolling */
    padding: 0 10px;
    margin: 20px 0;
    border-left: 3px solid #570c0c; /* optional visual accent */
    color: #111;
    text-align: left;
    
  }

}

/* --- MOBILE NAVBAR FIX --- */
@media (max-width: 768px) {

  .navbar-wrapper {
    height: auto; /* let content adjust naturally */
    justify-content: center; /* center contents vertically */
    align-items: center;
    padding: 10px 0;
    transition: 0.4s;
  }

  .navbar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 0;
    margin: 0;
  }

  .logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .logo img {
    width: 200px;
    height: auto;
    margin: 0 auto;
  }

  .logo h1 {
    position: static; /* remove absolute positioning */
    font-size: 14px;
    color: #111;
    text-align: center;
  }

  .menu-toggle {
    display: block;
    margin: 10px auto 0;
    color: #111;
    font-size: 1.8rem;
    margin-top: -7%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(100, 100, 100, 0.95);
    text-align: center;
    gap: 10px;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }
}


/* --- OWNERS SECTION --- */
.owners-section {
  padding: 80px 20px;
  text-align: center;
  background-color: rgb(40, 40, 40);
}

.owners-section h2 {
  color: #ff3131;
  font-size: 2rem;
  margin-bottom: 50px;
}

.owners-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.owner-card {
  background-color: #2a2a2a;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 49, 49, 0.4);
}

.owner-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.owner-card h3 {
  margin: 10px 0 5px;
  font-size: 1.3rem;
  color: white;
}

.owner-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* --- GALLERY SECTION --- */
#gallery {
  padding: 80px 20px;
  text-align: center;
  background-color: #1f1f1f;
}

#gallery h2 {
  color: #ff3131;
  margin-bottom: 40px;
  font-size: 2rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

