/* =====================================================
   ROOT / VARIABLES
===================================================== */


:root {

    --primary: #24483b;
    --primary-light: #3e705b;

    --secondary: #968777;

    --dark: #1d1d1d;
    --text: #555;

    --light: #f3f1eb; 
    --white: #ffffff;

    --border: rgba(0,0,0,.08);

    --radius:18px;

    --shadow:
        0 15px 40px rgba(0,0,0,.12);

    --button: #b77b42;
    --button-hov: #91643a;

}




/* =====================================================
   RESET
===================================================== */

html {
    scroll-behavior:smooth;
}

body {
    font-family:  "Lato",  Arial,
    sans-serif;
    color:var(--text);
    line-height:1.6;
}


img {
    max-width:100%;
    display:block;
}

h1,
h2,
h3,
h4 {
   font-family: "EB Garamond", serif;
    color:var(--secondary);
    font-weight:400;
    line-height:1.2;
}

/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background:var(--light);
    color:var(--dark);
    width:100%;
    font-size:14px;
}


.top-bar-inner {
    min-height:42px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-bar-contact {
    display:flex;
    gap:25px;
}

.top-bar a,
.top-bar span {
    color:var(--dark);
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
}

.top-bar i {
    color:var(--secondary);
    font-size:17px;
}

.top-bar a:hover {
    color:var(--secondary);
}


/* =====================================================
   LANGUAGE SWITCHER
===================================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    position: relative;
}

.language-switcher .mdi-earth {
    font-size: 18px;
}

.language-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    color:var(--dark);
    font-size: 14px;
    
    cursor: pointer;
    padding-right: 18px;
}

.language-switcher select:focus {
    outline: none;
}

.language-switcher option {
    color: #222;
}

.language-switcher .mdi-chevron-down {
    font-size: 16px;
    pointer-events: none;
    margin-left: -18px;
}

@media (max-width: 768px) {
    .language-switcher {
        justify-content: center;
    }
}

/* =====================================================
   NAVBAR
===================================================== */


.header {
    position:relative;
    width:100%;
    z-index:10;
    padding:18px 0;
    background:white;
}


.logo {

    display:flex;

    align-items:center;

}



.logo img {

    width:100px;

    height:auto;

}




.navbar {

    padding:0;
    position:relative;
}



.navbar-nav {

    align-items:center;

}


.nav-link {

    color:var(--dark)!important;

    font-size:16px;

    font-weight:500;

    padding:10px 15px!important;

}



.nav-link:hover {

    color:var(--secondary)!important;

}




/* przycisk rezerwacji */


.reserve-btn {

    background:var(--secondary);

    padding:12px 28px!important;

    color:white!important;

    border-radius:50px;

    font-weight:600;

    display:inline-flex;

    align-items:center;

}



.reserve-btn:hover {

    background:var(--primary)!important;

    color:white;

}




.navbar-toggler {


 color:var(--dark);

    border:1px solid rgba(0,0,0,.15);

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;


}


.navbar-toggler .mdi {

    font-size:24px;

}


.navbar-toggler:focus {

    box-shadow:none;

}


/* =====================================================
   STICKY HEADER (TOP BAR + NAVBAR)
===================================================== */

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    z-index: 1050;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .35s ease;
}

.site-header.scrolled{
    background: rgba(255,255,255,0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.top-bar{
    padding: 0px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    height: 42px;
    overflow: hidden;
    transition: height .35s ease, padding .35s ease, opacity .35s ease;
}

.header{
    position: relative;
    padding: 18px 0;
    transition: all .35s ease;
}

.site-header.scrolled .top-bar{
    height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    border: 0;
}

.site-header.scrolled .header{
    padding: 10px 0;
}

.logo img{
    width: 100px;
    transition: width .35s ease;
}

.site-header.scrolled .logo img{
    width: 86px;
}

/* odsunięcie treści */
body{
    padding-top: 126px; /* top-bar + header */
}

section{
    scroll-margin-top: 140px;
}


/* =====================================================
   HERO
===================================================== */


.hero {
    min-height:calc(100vh - 120px);
    background: url("/uploads/hero.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
}



.hero-content {

    max-width:700px;

    color:white;

}



.hero h1 {

    color:white;

    font-size:
    clamp(42px,5vw,72px);

    margin-bottom:25px;

}



.hero p {

    font-size:20px;

    color:white;

    max-width:600px;

    margin-bottom:35px;

}



.btn {
    background:var(--button);
    border:none;
    color:white;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}



.btn:hover {
    background:var(--button-hov);
    color:white;
}

.btn-outline{
  border:1px solid var(--secondary);
  background:transparent;
}

.btn-outline:hover{
  border-color:transparent;

}




/* =====================================================
   SECTIONS
===================================================== */


.section {

    padding:100px 0;

}



.section-header {

    text-align:center;

    max-width:700px;

    margin:
    0 auto 60px;

}



.section-header h2 {
    margin-bottom:15px;
}


/* =====================================================
   AMENITIES / UDOGODNIENIA
===================================================== */

.amenities {
    background: var(--light);
    padding:55px 0;
    
}

.amenity-item {
    text-align:center;
    height:100%;
}

.amenity-item img {
    width:70px;
    height:70px;
    object-fit:contain;
    margin:0 auto 20px;
}
.amenity-item h3 {
    font-size:17px;
    font-weight:600;
    margin:0;
    color:var(--dark);
}

@media(max-width:576px){
  .amenities {
      padding:40px 0;
  }

  .amenity-item img {
      width:55px;
      height:55px;
  }

  .amenity-item h3 {
      font-size:15px;
  }
}



/* =====================================================
   INTRO TWO COLUMNS
===================================================== */

.intro {
    padding:90px 0;
}

.intro-title {
    padding-right:60px;
}

.section-subtitle {
    display:block;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:10px;
}

.intro-title h2 {

}

.intro-text {
    position:relative;
    padding-left:70px;
}

/* pionowa kreska */

.intro-text:before {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:1px;
    height:100%;
    background:
    rgba(0,0,0,.15);
}

.intro-text p {
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

@media(max-width:991px){

    .intro-title {
        padding-right:0;
        margin-bottom:40px;
    }

    .intro-title h2 {
        font-size:38px;
    }

    .intro-text {
        padding-left:0;
    }

    .intro-text:before {
        display:none;
    }

}


/* =====================================================
   COTTAGE GRID
===================================================== */

.section.cottages{
  padding-top:0px;
}

.cottage-item {

    text-align:center;

}



.cottage-photo {

    position:relative;
    border-radius:15px;
    overflow:hidden;

    cursor:pointer;

}



.cottage-photo img {

    width:100%;
    border-radius:15px;
    aspect-ratio:4/3;

    object-fit:cover;

    transition:.5s;

}


.cottage-overlay {

    position:absolute;

    inset:0;

    background:
    rgba(0,0,0,.45);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.3s;

}




.cottage-overlay i {

    width:60px;

    height:60px;

    border-radius:50%;

    background:white;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

}




.cottage-photo:hover img {
    transform:scale(1.05);
}


.cottage-photo:hover 
.cottage-overlay {
    opacity:1;
}

.cottage-item h3 {
    margin-top:25px;
    font-size:26px;
    color: var(--text);
}





/* ukryte galerie */

.cottage-gallery {

    display:none;

}


/* =====================================================
   COTTAGE INFO DARK BOX
===================================================== */

/* =====================================================
   ABOUT COTTAGES
===================================================== */


.about-cottages {
    background:var(--light);
    padding:100px 0;
}

.about-header {
    max-width:900px;
    margin:0 0 0px;
    text-align:left;

}
.about-header h2 {
    margin-bottom:30px;
}

.about-header p {
font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;


}

.about-header .section-subtitle {
}


/* UKŁAD DOMKU */


.layout-box {
    padding:45px 0px 15px 0px;
    height:100%;
}

.layout-box h3,
.equipment-box h3 {
    font-size:32px;
    margin-bottom:0px;
}

.floor-box {
    padding:0px 25px 0px 0px;
}



.floor-box h4 {

    font-size:22px;
    margin-bottom:20px;

}

.floor-box ul {
    list-style:none;
    padding-left:0;
    font-size: 18px;

}

.floor-box ul li {
    position:relative;
    padding-left:28px;
    margin-bottom:10px;
}

.floor-box ul li::before {
    content:"\F05A";
    font-family:"Material Design Icons";
    position:absolute;
    left:0;
    top:0;
    font-size:18px;
    color:var(--secondary);

}

.layout-note {
    margin-top:35px;
    font-size: 18px;
  line-height: 1.8;
}





/* WYPOSAŻENIE */


.equipment-box {
    border-radius: 15px;
    background:#2a2622;
    padding:45px;
    height:100%;
    color:white;


}

.equipment-box h3 {
    color:white;
    margin-bottom: 15px;
}

.equipment-box p {
     color:white;
font-size: 18px;
  line-height: 1.8;
}



.equipment-grid {


    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    gap:30px;

    margin-top:40px;


}



.equipment-item {
    text-align:center;
}



.equipment-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 5px;
}



.equipment-item span {
    font-size:14px;
    line-height: 1.2;
    display:block;


}

@media(max-width:991px){


.about-header h2 {

    font-size:38px;

}



.equipment-grid {

    grid-template-columns:
    repeat(3,1fr);

}


}



@media(max-width:576px){


.about-cottages {

    padding:70px 0;

}



.layout-box,
.equipment-box {

    padding:30px;

}



.equipment-grid {

    grid-template-columns:
    repeat(2,1fr);

}


}

/* =====================================================
   OFFER SECTION
===================================================== */


.offer-section {
    padding:100px 0;
    background:white;
}

.offer-content {
    max-width:600px;
}

.offer-content h2, .area-section .section-header h2 {
    font-size:38px;
    line-height:1.15;
    margin-bottom:30px;
}

.offer-content p {
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

/* IKONY DOMKÓW */
.cottage-themes {
    display:flex;
    gap:40px;
    margin:35px 0;
}

.theme-item {
    text-align:center;
    width:30%;
}

.theme-item img {
    width:80%;
    height:80%;
    object-fit:contain;
    margin:auto;


}

.theme-item span {
    display:block;
    font-size:15px;
    font-weight:600;
}

/* ZDJĘCIE */
.offer-image {
    height:700px;
    overflow:hidden;
}

.offer-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 15px;
}



/* =====================================================
   RELAX PARALLAX
===================================================== */


.relax-section {
    position:relative;
    min-height:450px;
    background-image: url("/uploads/05_01.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
}

.relax-overlay {
    position:absolute;
    inset:0;
    background:
    rgba(0,0,0,.1);
}

.relax-content {
    position:relative;
    z-index:2;
    max-width:960px;
    text-align:center;
    color:white;
    margin:auto;
}

.relax-content .section-subtitle {
    color:var(--secondary);
}

.relax-content h2 {
    color:white;
    font-size:56px;
    margin-bottom:35px;
}

.relax-content p {
    color:white;
    font-size:24px;
    line-height:1.4;
    margin-bottom:20px;
}

@media(max-width:768px){

    .relax-section {
        min-height:550px;
        background-attachment:scroll;
    }

    .relax-content {
        padding:0 20px;
    }

    .relax-content h2 {
        font-size:38px;
    }

    .relax-content p {
        font-size:18px;
    }
}


/* =====================================================
   AREA SECTION
===================================================== */

.area-section {
    padding:100px 0;
    background:white;
}
.area-section .section-header {
    max-width:800px;
    text-align: left;
    margin-left: 0;
}

.area-section .section-header p {
    font-size:18px;
    line-height:1.8;
}
/* ZDJĘCIA */
.area-card {
    height:280px;
    position:relative;
    overflow:hidden;
}

.area-card img {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
}

.area-card:after {
    content:"";
    border-radius:15px;
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.0)
    );
}
.area-text{line-height:1.2; padding:10px 10px;}
.area-text strong{
  display:block;
  font-size:18px;
}

.area-card h3 {
    position:absolute;
    bottom:25px;
    left:25px;
    color:white;
    z-index:2;
    font-size:22px;
}

/* CIEMNY BLOK */

.area-info-box {
    margin-top:80px;
    background:#2a2622;
    padding:60px;
    color:white;
    border-radius: 15px;
}
.area-info-box h3 {
    color:white;
    
}

/* LISTA */
.family-list {
    list-style:none;
    padding:0;
    margin:0;
}

.family-list li {
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
    color:white;
}
.family-list li:before {
    content:"\F05A";
    font-family:"Material Design Icons";
    position:absolute;
    left:0;
    color:var(--secondary);
}

/* GDAŃSK */
.gdansk-title {
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.gdansk-title img {
    width:55px;
    height:55px;
    object-fit:contain;
}

.gdansk-title p {
    margin:0;
    color:white;
    font-size:18px;
}

.gdansk-info ul {
    margin-top:30px;
    padding-left:25px;

}

.gdansk-info li {
    margin-bottom:10px;
    color:rgba(255,255,255,.8);
}
.gdansk-info li:before {
    content:"\F05A";
    font-family:"Material Design Icons";
    position:absolute;
    left:0;
    color:var(--secondary);
}
.lg-h-line{
  border-left: 1px solid #60574d;
}


@media(max-width:991px){

.area-info-box {
    padding:40px 30px;
}
.area-card {
    height:240px;
}
.lg-h-line{
    border-left: none;
    border-top: 1px solid #60574d;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}
}


/* =====================================================
   GALLERY SWIPER
===================================================== */

.gallery-section {
    padding: 0px 0 100px 0;
    background: #fff;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.gallery-header h2 {
    font-size: 48px;
    max-width: 720px;
    margin: 15px 0 0;
}

.gallery-prev,
.gallery-next {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(0,0,0,.12);
    background: white;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
    z-index:2;
    top:50%;
    transform: translateY(-50%);
}

.gallery-prev i,
.gallery-next i {
    font-size: 28px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery-swiper {
    padding: 0 8%;
    overflow: visible;
    height:500px;
    padding-bottom:50px!important;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 14px;
    --swiper-pagination-bullet-width: 14px;
    --swiper-pagination-bullet-height: 14px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-inactive-opacity: 0.15;
    --swiper-pagination-bullet-inactive-color: #000;
    --swiper-pagination-color: var(--secondary);
}

.gallery-swiper .swiper-slide {
    width: 420px;
}

.gallery-image {
    height:100%;
    position:relative;
    overflow:hidden;
}

.gallery-swiper img {
    width: 100%;
    height:100%;
    object-fit: cover;
    display: block;
}



@media (max-width: 991px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-header h2 {
        font-size: 36px;
    }

    .gallery-swiper {
        padding: 0 20px;
    }

    .gallery-swiper .swiper-slide {
        width: 340px;
    }

    .gallery-swiper img {
        height: 440px;
    }
    .gallery-section {
    padding: 0px 0 50px 0;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 70px 0;
    }

    .gallery-header h2 {
        font-size: 32px;
    }

    .gallery-swiper .swiper-slide {
        width: 280px;
    }

    .gallery-swiper img {
        height: 360px;
    }
    .gallery-section {
    padding: 0px 0 50px 0;
    }
}
.gallery-swiper {
    overflow:visible;

}

.gallery-wrapper {
    overflow:hidden;
}

/* =====================================================
   GALERIA HOVER Z LUPKĄ
===================================================== */


.gallery-image {
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    cursor:pointer;
    border-radius:15px;
}

.gallery-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
    border-radius:15px;
}

.gallery-overlay {
    position:absolute;
    inset:0;
    background:
    rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.3s;
}

.gallery-overlay i {
    width:65px;
    height:65px;
    background:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:var(--primary);
}

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



.gallery-image:hover .gallery-overlay {
    opacity:1;
}


/* =====================
   PAGINATION
===================== */

.gallery-swiper .swiper-pagination {
    position: absolute;
    bottom: var(--swiper-pagination-bottom);
    margin-top: 35px;
}

/* =====================================================
   REZERWACJA
===================================================== */


.reservation-section{


padding:0px 0 120px 0;

}

.reservation-content{

  background-color: var(--light);
  padding: 45px;
  border-radius: 24px;
}


.reservation-content h2{

margin-bottom:30px;

max-width:600px;

}

.reservation-content ul{
list-style: none;
  padding-left: 0;
  font-size: 18px;
}
.reservation-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.reservation-content  ul li::before {
  content: "\F05A";
  font-family: "Material Design Icons";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: var(--secondary);
}


.reservation-content p{

font-size:18px;

line-height:1.7;

max-width:520px;

}





/* FORMULARZ */


.reservation-form{




}



.reservation-form h3{

font-size:32px;

margin-bottom:35px;

}



.reservation-form label{

font-size:13px;

margin-bottom:5px;

opacity:.8;

}



.reservation-form .form-control{

height:52px;

border-radius:8px;

border-color:var(--secondary);

padding:0 18px;

background:#fff;

}

.reservation-form input[type="date"].form-control{
    position: relative;
    cursor: pointer;
    height: auto;
    min-height: 52px;
    padding-top: 14px;
    padding-bottom: 14px;
    color-scheme: light;
}

/* Fix Chrome: konflikt height .form-control z regułą Bootstrapa — picker miga i znika */
.reservation-form input[type="date"].form-control::-webkit-date-and-time-value{
    min-height: 1.5em;
    height: auto;
    margin: 0;
}

.reservation-form input[type="date"].form-control::-webkit-calendar-picker-indicator{
    cursor: pointer;
    padding: 4px;
    opacity: 1;
}

.reservation-form .form-control:invalid:not(:focus):not(:placeholder-shown),
.reservation-form.was-validated .form-control:invalid,
.reservation-form.was-validated .form-check-input:invalid{
    border-color: #c45c5c;
}

.reservation-form .invalid-feedback{
    display: none;
    font-size: 13px;
    color: #c45c5c;
    margin-top: 6px;
}

.reservation-form.was-validated .form-control:invalid ~ .invalid-feedback,
.reservation-form.was-validated .form-check-input:invalid ~ .invalid-feedback{
    display: block;
}

.reservation-form .form-check .invalid-feedback{
    margin-left: 0;
}

.reservation-success{
    padding: 40px 0;
}

.reservation-success-message{
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    font-family: "EB Garamond", serif;
    color: var(--secondary);
    line-height: 1.3;
}



.reservation-form textarea.form-control{

height:auto;

padding:18px;

}



.reservation-form .form-check{

margin-top:10px;

}



.reservation-form .form-check-label{

font-size:13px;

}




 .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(150, 135, 119, 0.25);
}


.reservation-form .btn:hover{

opacity:.85;

}



/* =====================================================
   GALERIA GŁÓWNA
===================================================== */


.gallery img {

    width:100%;

    height:260px;

    object-fit:cover;

}





/* =====================================================
   MODAL GALERII
===================================================== */


.gallery-modal {

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.85);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

}



.gallery-modal.active {

    display:flex;

}



.modal-content {
    background:transparent;
    position:relative;
    width:90%;
    max-width:900px;
    display:flex;
    justify-content:center;
    align-items:center;
}



.modal-image img {

    max-height:80vh;

    border-radius:15px;

}



.modal-close,
.gallery-prev,
.gallery-next, .modal-prev,
.modal-next {

    position:absolute;

    width:45px;

    height:45px;

    border-radius:50%;

    border:none;

    background:white;

    cursor:pointer;

    font-size:22px;

}



.modal-close {

    top:-60px;

    right:0;

}



.gallery-prev, .modal-prev {

    left:20px;

}



.gallery-next, .modal-next {

    right:20px;

}





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

.footer {
    background: #c3b39c;
    padding: 70px 0 30px;
    font-size:12px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.footer-social a,
.footer-social .footer-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.08);
    color: var(--dark);
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--dark);
    color: #fff;
}

.footer-social .footer-social-item.is-disabled {
    opacity: .45;
    cursor: default;
}

.footer-social .mdi {
    font-size: 22px;
    line-height: 1;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.footer-block p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--dark);
}

.footer-block a {
    color: var(--dark);
    text-decoration: none;
    transition: .3s;
}

.footer-block a:hover {
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-block;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,.15);
    text-align: center;
}

.strong{font-weight: 600;}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(0,0,0,.7);
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--button);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .3s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--button-hov);
}

.scroll-top .mdi {
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 25px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 35px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}



/* =====================================================
   RESPONSIVE
===================================================== */


@media(max-width:992px){


    .navbar-collapse {

    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:white;
    padding:25px;
    border-radius:0 0 15px 15px;
    box-shadow:
    0 15px 30px rgba(0,0,0,.12);
    }


  .navbar-nav {
      align-items:flex-start;
  }

  .nav-link {
      color:var(--dark)!important;
      width:100%;
  }

  .nav-link:hover {
      color:var(--primary)!important;
  }

  .reserve-btn {
      margin-top:15px;

  }


}




@media(max-width:576px){

    .top-bar-contact > span{
      display: none;
    }


    .top-bar-contact {

        gap:15px;

    }


    .top-bar-contact a {

        font-size:13px;

    }



    .section {

        padding:70px 0;

    }



    .section-header h2 {

        font-size:32px;

    }



    .hero {

        min-height:80vh;

    }



}