/* =========================
   FONTS
========================= */

@import url('https://fonts.cdnfonts.com/css/bohemian-typewriter');

	
/* =========================
   GLOBAL
========================= */
html {
   scroll-padding-top: 100px;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* =========================
   NAVBAR
========================= */
.navbar .container {
  position: relative;
}

.navbar-custom {
  background: rgba(10, 112, 112, 0.85);
  backdrop-filter: blur(6px);
  padding: 18px 0;
}

.navbar-brand {
  max-width: 250px;
}
.navbar-brand img {
  width: 100%;
}



/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: .2s; 
}

@media (max-height: 1000px) {
  .hero {
    min-height: 100vh; transition: .2s; 
  }
}

.hero-bg,
.bg-slide {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.bg-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 2.5s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

.bg-slide.animate {
  animation: kenburns 12s linear forwards;
}

@keyframes kenburns {
  0% { transform: scale(1.15) translate(0,0); }
  100% { transform: scale(1.25) translate(-2%, -2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,72,72,0.9) 25%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 200px;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
font-family: 'Bohemian Typewriter', monospace;  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.hero-buttons {
  margin-top: 20px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-gradient {
  /* background: linear-gradient(135deg, #ff8a5c, #ff5e3a);*/
  background: linear-gradient(135deg, #ff8a5c, #ff5e3a);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
	font-size: 18px;
  transition: all 0.3s ease;
  background-size: 200% 200%;
}

.btn-gradient:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 94, 58, 0.35);
}

.btn-soft {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-soft:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.btn-gradient:active,
.btn-soft:active {
  transform: scale(0.98);
  box-shadow: none;
}

.btn-green {
  background: #0a7070;
  color: #fff;
  border-radius: 10px;
  padding: 12px 22px;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background: #255a4c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* =========================
   CARDS
========================= */
.cards-wrapper {
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 3;
}

.card-custom {
  border: 3px solid rgba(255,255,255,0.4);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.card-custom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s ease;
}

.card-custom:hover img {
  transform: scale(1.08);
}

.card-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-weight: 600;
  background: rgba(10,112,112,0.9);
  padding: 6px 12px;
  border-radius: 6px;
	font-size: 20px;
	color: #fff;
  transition: 0.4s ease;	
}

.card-custom:hover .card-label {
  background: #ff8a5c;
  color: #fff;
  transition: 0.4s ease;	
}

/* =========================
   ABOUT
========================= */
.about-section {
  background: #f3efe9;
  padding: 100px 0;
}

.about-image img {
  width: 100%;
  object-fit: cover;
}

.subtitle,
.title {
font-family: 'Bohemian Typewriter', monospace;
	color: #0a7070;
}

.subtitle {
  font-size: 26px;
  margin-bottom: 0px;
}

.title {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-content p {
  color: #4a6b5d;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

/* =========================
   CONTACT
========================= */
.contact-section {
  background: #e9e2d6;
  padding: 100px 0;
}

.section-title {
font-family: 'Bohemian Typewriter', monospace;
	color: #0f3d2e;
  font-size: 28px;
}

.map-wrapper {
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
  color: #6b7f75;
  font-size: 14px;
}

@media (max-width: 768px) {
  .contact-info {
     align-items: center;
	  text-align: center;
	}
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  color: #e56b3f;
}

.opening-box {
  background: #f5f2ec;
  padding: 30px;
	color: #0f3d2e;
	
}

.opening-box h4 {
font-family: 'Bohemian Typewriter', monospace;
	color: #0f3d2e;
  font-size: 26px;
  margin-bottom: 15px;
}

.opening-times {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.opening-times li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.opening-times span {
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0a7070;
}
	
/* WRAPPER */
.footer-slider {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.slider-track {
  display: flex;
  gap: 0px; /* 👈 spacing netjes */

  animation: scroll 40s linear infinite;
}

/* IMAGES */
.slider-track img {
  width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex-shrink: 0;
}

/* PERFECT LOOP */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
	

.footer-main {
  padding: 60px 20px;
  text-align: center;
}

.footer-logo {
	width: 100%;
	text-align: center;
}

.footer-logo img {
	width: 100%;
	max-width: 300px;
	display: inline-block;
}

.footer p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer p a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer-links a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 120px 0 40px;
    text-align: center;
  }

  .hero h1 { font-size: 36px; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cards-wrapper {
    position: static;
    margin-top: 30px;
  }

  .card-custom img {
    height: 180px;
  }

  .about-section,
  .contact-section {
    padding: 60px 0;
    text-align: center;
  }

  .title { font-size: 34px; }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .opening-box {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .slider-track img {
    width: 180px;
  }
	
.navbar-brand {
  max-width: 175px;
}

  .footer-main {
    padding: 40px 20px;
  }
}

/* =========================
   MODAL
========================= */
.modal-left {
  background: #0a7070;
  color: #fff;
}

.modal-left h3 {
  font-family: 'Bohemian Typewriter', monospace;
  color: #fff;
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 10px;
}

.form-info {
  padding-left: 18px;
  color: #6b7f75;
}

.form-info li {
  margin-bottom: 5px;
}
#reserveForm label {   color: #6b7f75; }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* =========================
   PAGE
========================= */

#page {   
  background: #e9e2d6;
  padding: 140px 0; 
  color: #333;
  min-height: 80vh;
 line-height: 28px;
}

#page h1 { 
  font-family: 'Bohemian Typewriter', monospace;
	font-size: 48px;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 1px; 
	color: #0a7070;
}

@media (max-width: 768px) {

	#page h1 { 
	font-size: 38px;
    }
}


#page h2 { 
  font-family: 'Bohemian Typewriter', monospace;
	font-size: 35px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 1px; 
	color: #0a7070;
}

#page a { transition: .2s; color: #0a7070; }

.arr1 { background: #fff; padding: 30px; margin: 40px 0; }
.arr2 { background: #fff; padding: 30px; margin: 40px 0; }

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a5c, #ff5e3a);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

#page .btn { margin-bottom: 10px; }