/********** Template CSS **********/
:root {
  --primary: #9a7f57;
  --light: #f1f8ff;
  --dark: #544d42;
  --bg-color: #ffffff;
  --accent-color: #9a7f57;
  --accent-light: #544d42;
  --accent-dark: #78643d;
  --text-dark: #503e2c;
  --text-muted: #6c757d;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}
.container {
  margin: 0 auto;
  padding: 20px;
}
.header {
  background: url('../img/header.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  text-align: center;
  padding: 240px 0 240px;
}


.title {
  font-size: 48px;
  margin: 0;
}

.subtitle {
  font-size: 24px;
  margin: 10px 0;
}

.btn-primary {
  background-color: #9a7f57;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.footer {
  background-color: #333;
  color: white;
  /* text-align: center; */
  padding: 20px 0;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #1b2f43;
  color: #fff;
  transition: background-color 0.3s ease;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Footer ***/

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}
@media (max-width: 600px) {
  .contact-img {
    display: none;
  }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 40%;
    background: #fff;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #9a7f57;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #9a7f57;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #9a7f57;
    text-decoration: none;
    text-align: center !important;
}
.data p a:hover {
    text-decoration: underline;
}
.buttons {
    padding: 20px 0px;
    text-align: center;
}
.buttons .cookie-button {
    border: 2px solid #9a7f57;
    color: #fff;
    padding: 8px 0;
    background: #9a7f57;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}
.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #9a7f57;
}
#declineBtn {
    background-color: #fff;
    color: #9a7f57;
}
#declineBtn:hover {
    background-color: #9a7f57;
    color: #fff;
}
/* Footer Style */
section.reasons {
    padding: 50px 0 0 0 ;
    text-align: center;
    background-color: white;
    margin-bottom: 20px;
}
section.reasons h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section.reasons ul, section.reasons li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

section.reasons ul {
  margin-top: 40px;
    list-style: none;
    padding: 0;
}

section.reasons li {
    margin-bottom: 20px;
    border: 1px solid #9a7f57;
    padding: 10px 20px;
}
section.reasons li:hover {
  background: #dad2ef;
}

.why_choose_item {
  text-align: center;
  background-color: #fff2d4;
  padding: 30px 20px;
  border-radius: 10px;
  min-height: 370px;
}
.review_item {
  border: 1px solid #fff;
  background-color: #fffdf1;
  padding: 20px 10px;
  border-radius: 10px;
  min-height: 300px;
}
/* new styles  */

/* Стилі для футера */
.footer {
  background-color: #50442c !important;
  color: #ffffff;
  padding-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.footer .brand-container {
  margin-bottom: 1.5rem;
}

.footer .brand {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
}

.footer .brand::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.footer .footer-links h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.footer .footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer .footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.footer .footer-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer .footer-link:hover::before {
  width: 20px;
}

.footer .contact-info {
  color: rgba(255, 255, 255, 0.8);
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer .contact-item .material-icons {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.footer .disclaimer {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer .disclaimer-title {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer .disclaimer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer .copyright {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 1.25rem 0;
  text-align: center;
}

.footer .copyright-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .footer {
    padding-top: 3rem;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* new styles  */
/* Стилі для головного екрану */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--dark);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bg-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light);
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(84, 77, 66, 0.9), rgba(84, 77, 66, 0.6));
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}
/* Загальні стилі */
.section-title {
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.card-custom {
  border-radius: 8px;
  overflow: hidden;
  border: none;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img-top-custom {
  height: 200px;
  object-fit: cover;
}

.bg-light-custom {
  background-color: var(--light);
}

.text-primary-custom {
  color: var(--primary);
}

.btn-primary-custom {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-primary-custom:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.quote-card {
  background-color: var(--light);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
}
