/*!
 * Start Bootstrap - Stylish Portfolio Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* Global Styles */

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.text-vertical-center {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.text-vertical-center h1 {
  margin: 0;
  padding: 0;
  font-size: 4.5em;
  font-weight: 700;
}

/* Custom Button Styles */

.btn {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-dark {
  border-radius: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

.btn-light {
  border-radius: 0;
  color: #333;
  background-color: rgb(255, 255, 255);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
}

/* Custom Horizontal Rule */

hr.small {
  max-width: 100px;
}

/* Side Menu */

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  right: 0;
  width: 250px;
  height: 100%;
  margin-right: -250px;
  overflow-y: auto;
  background: #222;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  text-indent: 20px;
  line-height: 40px;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  font-weight: bold;   
  color: #999;
}

.sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
  height: 55px;
  font-size: 18px;
  line-height: 55px;
}

.sidebar-nav > .sidebar-brand a {
  color: #999;
}

.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}

#menu-toggle {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
}

#sidebar-wrapper.active {
  right: 250px;
  width: 250px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.toggle {
  margin: 5px 5px 0 0;
}

/* Header */
/*
.header {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden; 
}

.header::before {
  content: "";
  position: absolute;
  z-index: -1; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(https://images.unsplash.com/photo-1581090122087-bdc8968e525f?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D)
    no-repeat center center;
  background-size: cover;
  animation: zoomIn 10s ease-in-out infinite alternate;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 0;
}

.header .text-vertical-center {
  position: relative;
  z-index: 1; 
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
*/

/* Header wrapper */

.header {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000; /* darker text for cream background */
  overflow: hidden;
}

.header-container {
  display: flex;
  width: 100%;
  height: 100%;
}


/* Left side: text with cream background + image */
.header-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  padding: 60px;
  text-align: center;        /* center text alignment */
  position: relative;        /* allow ::before overlay */
  z-index: 1;                /* keep text above background */
}

/* Background image with transparency */
.header-text::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("../img/bg.jpg") no-repeat center center;
  background-size: cover;     /* or contain if you want smaller */
  opacity: 0.3;               /* transparency level (adjust 0.2–0.5 as needed) */
  z-index: -1;                /* keep image behind text */
}

/* Make brand/title larger */
.header-text h1 {
  font-size: 4.5rem;   /* increase size */
  font-weight: 700;    /* bold for emphasis */
  margin-bottom: 25px;
}

/* Subtitle spacing */
.header-text .subtitle {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Description spacing */
.header-text .site-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 600px;    /* keep text nicely contained */
}

/* Book Now button centered and compact */
.btn-custom {
  display: inline-block;
  padding: 8px 18px;   /* normal size */
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  background-color: #337ab7; /* coral orange */
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.btn-custom:hover {
  background-color: #fc7c05; /* deeper orange on hover */
}


/* Right side: image reduced and centered */
.header-image {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.header-image::before {
  content: "";
  display: block;
  width: 80%;   /* reduce size */
  height: 80%;
  background: url("../img/front bg.jpg")no-repeat center center;
  background-size: contain;
  animation: zoomIn 10s ease-in-out infinite alternate;
}

/* Zoom animation */
@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  .header-text, .header-image {
    flex: none;
    width: 100%;
    height: auto;
  }
  .header-image::before {
    width: 100%;
    height: 250px;
  }
  .header-text {
    text-align: center;
    padding: 30px;
  }
}



.site-description {
  color: #000000;;   /* dark font */
}

/* About */

.about {
  padding: 50px 0;
  scroll-margin-top: 30px;
}

/* Services */

.services {
  padding: 50px 0;
  scroll-margin-top: 30px;
}

.service-item {
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  height: -webkit-fill-available;
}

.service-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Callout */

.callout {
  display: table;
  width: 100%;
  height: 400px;
  color: #fff;
  background: url(https://images.unsplash.com/photo-1581090122087-bdc8968e525f?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D)
    no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

/* Portfolio */

.portfolio {
  padding: 50px 0;
  scroll-margin-top: 30px;
}

.portfolio-item {
  margin-bottom: 30px;
}

.img-portfolio {
  margin: 0 auto;
}

.img-portfolio:hover {
  opacity: 0.8;
}

/* Call to Action */

.call-to-action {
  padding: 50px 0;
  scroll-margin-top: 100px;
}

.call-to-action .btn {
  margin: 10px;
  scroll-margin-top: 30px;
}

/* Map */

.map {
  height: 500px;
}

@media (max-width: 768px) {
  .map {
    height: 75%;
  }
}

/*disable custom maps scrolling behaviour*/
.scrolloff {
  pointer-events: none;
}
/* Contact section */
.contact {
  padding: 50px 0;
  scroll-margin-top: 80px;
}





/* Footer */
/*

footer {
  padding: 100px 0;
  background-color: #000;   
  color: #fff;              
  text-align: center;      
}


footer h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

footer a {
  color:#337ab7;          
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #337ab7;           
}

footer i {
  margin-right: 8px;
  color: #ff7f50;           
}


footer hr.small {
  border-color: #ff7f50;    
  max-width: 80px;
  margin: 20px auto;
}


footer p.text-muted {
  font-size: 0.9rem;
  color: #ccc;              
  margin-top: 20px;
}

*/

footer {
  padding: 100px 0;
}

:root {
  --bs-primary-rgb: 51, 122, 183; 
  --bs-body-bg: #f8f9fa;
}

.bg-primary {
  color: #fff !important;
  background-color: #337ab7 !important;
}

.div-center {
  margin-left: auto;
  margin-right: auto;
}*/

/* Custom styles for content pages */
#page-content p {
  line-height: 1.7;
}

#page-content h2,
#page-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/* #mainNav {
  display: none;
}

#mainNav.navbar-scrolled {
  display: block;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: background-color 200ms linear;
}

#mainNav.page-nav {
  display: block;
} */

#mainNav {
  display: block;              /* always visible */
  background-color: #000;       /* solid black background */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: background-color 200ms linear;
}

#mainNav .nav-link {
  color:#fff !important;       /* white text for contrast */
  font-weight: 600;
}

#mainNav .nav-link:hover {
  color: #ff7f50!important;    /* orange hover to match your button */
}
