:root {
  --bs-primary: #005f73;
  --bs-secondary: #94d2bd;
  --bs-accent: #626a6f;
  --bs-light: #f8f9fa;
  --bs-dark: #001219;
  --navbar-bg: rgba(255, 255, 255, 0.95);
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

h1, h2, h3, h4, .navbar-brand {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

/* Navbar */

.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
  --bs-navbar-nav-link-padding-x: 3em;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.navbar-brand .subtext {
  font-size: 0.8rem;
  display: block;
  text-transform: uppercase;
}

.nav-link {
  font-size: 1em;
  font-weight: bolder;
}

.nav-button {
  font-size: 1.5em;
  font-weight: bolder;
}

/* buttons */

.btn-accent {
  background-color: var(--bs-secondary);
}

.btn-accent:hover {
  background-color: var(--bs-secondary);
  filter: brightness(1.1);
}

.btn-sm-nav {
  background-color: var(--bs-cyan);
}

.btn-sm-nav:hover {
  background-color: var(--bs-cyan);
  filter: brightness(1.1);
}

/* Hero Section */

.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../../assets/img/house/main.jpg') no-repeat bottom center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.owners-section {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../../assets/img/beach/walk_over_3.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.reservation-hero {
  position: relative;
  justify-content: center;
  text-align: left;
  padding: 40px 80px 40px 40px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Features Cards */

.card-feature {
  border: none;
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 15px;
}

.card-feature:hover {
  transform: translateY(-10px);
}

.card-feature .card-img-top {
  height: 250px;
  object-fit: cover;
}

/* Amenities */

.amenity-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

/* About Owner Section */

.owner-container {
  vertical-align: top;
  height: auto;
}

/* Gallery Section */

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* Policy Section */

.policy-section {
  background-color: var(--bs-light);
  border-left: 5px solid var(--bs-primary);
}

/* Footer */

footer {
  background-color: var(--bs-dark);
  color: white;
  padding: 4rem 0 2rem;
}

footer a {
  color: var(--bs-secondary);
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/* Custom spacing */

.section-padding {
  padding: 80px 0;
  scroll-margin-top: 75px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

