/* 
 * Pastorie Bootstrap 5 Theme
 * A green Bootstrap 5 theme for Hugo
 */

:root {
  /* Green color palette */
  --green-100: #e8f5e9;
  --green-200: #c8e6c9;
  --green-300: #a5d6a7;
  --green-400: #81c784;
  --green-500: #66bb6a;
  --green-600: #4caf50;
  --green-700: #43a047;
  --green-800: #388e3c;
  --green-900: #2e7d32;

  /* Theme colors */
  --primary: var(--green-600);
  /*--primary-dark: var(--green-800);*/
  --primary-dark: #2b732e;
  --primary-light: var(--green-400);
  --primary-bg: var(--green-100);

  /* Font settings */
  --font-family-sans-serif: "Roboto", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-family-heading: var(--font-family-serif);
  --font-family-base: var(--font-family-sans-serif);

  --accent-old-red: #8F2100;
  --accent-old-yellow: #edac41;
  --bs-body-bg: #f4f4eb;
}

/* General Styles */
body {
  font-family: var(--font-family-base);
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Utility Classes */
.bg-green {
  background-color: var(--primary-dark) !important;
  color: white;
}

.bg-green-dark {
  background-color: var(--primary-dark) !important;
  color: white;
}

.bg-green-light {
  background-color: var(--primary-light) !important;
}

.text-green {
  color: var(--primary-dark) !important;
}

.btn-green {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-green:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.btn-outline-green {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-green:hover {
  background-color: var(--primary);
  color: white;
}

/* Header Styles */
.top-bar {
  font-size: 1rem;
}

/* On large screens and up, reduce the top-bar font size */
@media (min-width: 992px) {
  .top-bar {
    font-size: 0.9rem;
  }
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
  color: white;
  text-decoration: none;
}

.main-header {
  padding: 1.5rem 0;
}

.main-header .logo img {
  max-height: 80px;
}

.main-header .tagline {
  font-family: var(--font-family-serif);
  font-style: italic;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-item.active .nav-link {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section-heading span {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.section-heading h2 {
  position: relative;
  padding-bottom: 0.5rem;
}

.section-heading h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

/* Carousel Styles */
.carousel-item {
  /*height: 500px;*/
  height: calc(100vh - 177px);
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
  /*transform: translateY(50%);*/
  top: 15%;
  bottom: auto;
  height: auto;
  left: 1em !important;
  right: auto !important;
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-family: var(--font-family-heading);
  font-weight: 600;
}

/* Gallery Styles */
.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  transition: transform 0.5s ease;
  height: 250px;
  object-fit: cover;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Room Card Styles */
.room-card img {
  height: 200px;
  object-fit: cover;
}

.room-features li {
  margin-bottom: 0.5rem;
}

/* Number/Stats Section */
.number-item {
  padding: 1.5rem;
}

.number-value {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.number-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Footer Styles */
#footer {
  padding-top: 3rem;
}

#footer h4 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

#footer h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: white;
}

#footer a {
  color: rgba(255, 255, 255, 0.8);
}

#footer a:hover {
  color: white;
  text-decoration: none;
}

.copyright {
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-caption {
    top: 10%;
    bottom: 10%;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .number-value {
    font-size: 2rem;
  }
}

a.btn#button_header_reservering {
    background-color: #ffffff;
    border: 1px solid #2b732e;
    color: #2b732e;
    font-size: 20px;
    font-weight: bold;
    padding: 7px 23px;
    letter-spacing: 3px;
    border-radius: 12px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

}

a.btn#button_header_reservering:hover {
    background-color: var(--green-600);
    color: #ffffff;
    border: 1px solid #ffffff;
}

a.btn#button_over_ons {
    padding: 10px 25px;
    font-size: 20px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

}

a.btn#button_over_ons:hover {
    color: #2b732e;
    border: 1px solid #2b732e;
    background-color: #f4f4eb;
}

#button_koffers {
    background-color: var(--green-600);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 25px;
    letter-spacing: 3px;
    border-radius: 12px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

#button_koffers:hover {
    background-color: #ffffff;
    color: #2b732e;
}

#button_faciliteiten {
    padding: 12px 28px;
    font-size: 20px;
    background-color: var(--green-600);
    color: #ffffff;
    border: 1px solid var(--green-600);
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

#button_faciliteiten:hover {
    color: #2b732e;
    border: 1px solid #2b732e;
    background-color: #f4f4eb;
}

#mc-embedded-subscribe{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

#mc-embedded-subscribe:hover {
    color: #8F2100;
    border: 1px solid #8F2100;
    background-color: #F3D69EFF;
}

a.btn#button_beschikbaarheid_fotocarousel {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5), 0 6px 20px 0 rgba(0,0,0,0.20);
}