/*---------------------------------------
  BASE SETTINGS & IMPORTS
-----------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  background-color: #000;
  color: white;
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: normal;
}

h1 { font-size: 4em; }
h2 { font-size: 3em; color: #f0f0f0; }

p, .about-text {
  font-size: 1.4rem;
  line-height: 2;
  color: white;
  max-width: 90%;
  margin: 0 auto;
  text-align: left;
  word-wrap: break-word;
}

/*---------------------------------------
  GLOBAL ELEMENTS
-----------------------------------------*/
a {
  color: #202020;
  text-decoration: none !important;
  transition: 0.5s;
}
a:hover, a:focus {
  color: #29ca8e;
  outline: none;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  padding-bottom: 40px;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #202020;
  cursor: pointer;
}

/*---------------------------------------
  BACKGROUND VIDEO & OVERLAY
-----------------------------------------*/
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: -1;
  pointer-events: none;
}

.main-content {
  position: relative;
  z-index: 1;
}

/*---------------------------------------
  NAVBAR
-----------------------------------------*/
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar .navbar-brand,
.custom-navbar .nav li a {
  color: white !important;
}

.custom-navbar .nav li a:hover {
  color: #29ca8e !important;
}

/*---------------------------------------
  HERO SECTION
-----------------------------------------*/
#home {
  background: rgba(0, 0, 0, 0.6);
}

#home h1 {
  color: #fff;
  margin: 10px 0 40px 0;
}

/*---------------------------------------
  CARD SECTIONS (ABOUT + BOOKING)
-----------------------------------------*/
.about-section,
.booking-section {
  background-color: rgba(50, 50, 50, 0.85);
  width: 80%;
  margin: 60px auto;
  border-radius: 12px;
  padding: 60px 30px;
  text-align: center;
}

.about-heading {
  font-weight: bold;
  text-decoration: underline;
}

.about-profile,
#about img {
  border-radius: 50%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1em;
}

/*---------------------------------------
  SERVICES SECTION
-----------------------------------------*/
.services-section,
#services {
  background-color: rgba(40, 40, 40, 0.9);
  padding: 80px 0;
  width: 80%;
  margin: auto;
  border-radius: 12px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-card img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.service-card ul {
  text-align: left;
  margin: 0 auto;
  padding: 0;
  list-style-position: inside;
}

/*---------------------------------------
  BOOKING FORM
-----------------------------------------*/
.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.booking-form input,
.booking-form textarea,
.booking-form button {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid white;
  margin-bottom: 15px;
  border-radius: 8px;
  padding: 15px 20px;
}

/*---------------------------------------
  BUTTONS (LARGE + RESPONSIVE)
-----------------------------------------*/
.btn,
.section-btn,
form button[type="submit"] {
  background: #29ca8e;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 2rem;          /* Base size: larger text */
  padding: 25px 60px;       /* Taller and wider buttons */
  font-weight: bold;
  transition: background 0.5s ease;
}

.btn:hover,
.section-btn:hover,
form button[type="submit"]:hover {
  background: #202020;
}

/* Responsive button scaling */
@media screen and (max-width: 1024px) {
  .btn,
  .section-btn,
  form button[type="submit"] {
    font-size: 1.5rem;
    padding: 20px 40px;
  }
}

@media screen and (max-width: 767px) {
  .btn,
  .section-btn,
  form button[type="submit"] {
    font-size: 1.25rem;
    padding: 15px 30px;
  }
}

