@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --color-primary: #C51605;
    --color-primary-hover: #E23C2D;
    --color-secondary: #EBB25E;
    --color-dark: #131313;
    --color-white: #FFFFFF;
    --color-light-gray: #B7B7B7;
    --color-shadow-gray: #81818140;
    --color-form-border: #585858;
    --color-footer-bg: #FFF4F3;
    --color-calendar-shadow: #00000040;
    --color-calendar-grupy: #EBB25E;
    --color-calendar-18: #C2DDB5;
    --color-calendar-17: #727EBD;
    --color-calendar-16: #3C5AA8;
    --color-calendar-closed: #888;
    --color-transparent: transparent;
}

body {
    font-family: 'Roboto Slab', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-dark) !important;
}

.container, .long-container {
    margin: auto;
    width: 100%;
}
.container { max-width: 1230px; }
.long-container { max-width: 1440px; }

.icon {
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    margin-right: 10px;
    vertical-align: sub;
}
.location-dot { background-image: url(../img/icons/location-dot.svg); }
.phone        { background-image: url(../img/icons/phone.svg); }
.email        { background-image: url(../img/icons/email.svg); }

h1.main-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 60px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}
h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 40px;
    font-weight: 500;
}

hr {
    border: 1px solid var(--color-primary);
    opacity: 1;
}

a {
    color: var(--color-dark);
    text-decoration: none;
}

.text-spacing-10 {
    letter-spacing: 1.8px;
}

.underline {
    border-bottom: 2px solid var(--color-primary);
}

.header .logo {
    width: 150px;
    height: 150px;
}
.header nav ul li {
    background-color: var(--color-primary);
    border-radius: 15px;
    width: 113px;
    height: 35px;
    text-align: center;
}
.header nav ul li a {
    font-family: 'Roboto', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    padding: 3px 0;
}
.header nav ul li:hover {
    background-color: var(--color-primary-hover);
    transition: background-color 0.2s ease-in-out;
}
.header nav ul li a:hover,
.header nav ul li a:focus {
    color: var(--color-white);
}

.footer {
    background-color: var(--color-footer-bg);
    padding: 55px 0;
}
.footer .footer-nav {
    column-count: 2;
}
.footer .footer-nav li { margin: 0 0 15px 0; }
.footer .footer-nav li:hover a {
    text-decoration: underline;
}
.footer .menu-title {
    font-size: 18px;
}

.hero-section {  height: 960px; }
.hero-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
}
.hero-content p {
    font-size: 70px;
    font-weight: 400;
    line-height: 100%;
}
.hero-content p:last-child {
    font-size: 80px;
}

.download-section .buttons {
    gap: 10px;
}

.btn,
.hero-content .btn,
.slider-section .btn,
.download-section .btn,
.atrakcje-section .btn,
.group-section .btn,
.form .btn {
    padding: 0;
    margin: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn:active, .btn:hover,
.hero-content .btn:active, .hero-content .btn:hover,
.slider-section .btn:active, .slider-section .btn:hover,
.download-section .btn:active, .download-section .btn:hover,
.atrakcje-section .btn:active, .atrakcje-section .btn:hover,
.group-section .btn:active, .group-section .btn:hover,
.form .btn:active, .form .btn:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    transition: background-color 0.2s ease-in-out;
}

.hero-content .btn      { width: 298px; height: 80px; }
.slider-section .btn    { width: 400px; height: 80px; margin-top: 50px; }
.download-section .btn  { width: 200px; height: 50px; font-size: 16px; }
.group-section .btn,
.atrakcje-section .btn  { width: 309px; height: 80px; font-size: 20px; }
.form .btn              { padding: 27px 116px; font-size: 20px; text-transform: uppercase; }

.about-section img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.slider-section .carousel-inner {
    max-width: 1230px;
    margin: 0 auto;
}
.slider-section img {
    aspect-ratio: 75 / 64;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.slider-section .card-content {
    box-shadow: 4px 4px 20px var(--color-shadow-gray);
    border-radius: 10px;
}
.slider-section .carousel-control-prev {
    width: auto;
    left: 0;
}
.slider-section  .carousel-control-prev-icon {
    background-image: url(../img/icons/arrow-left.png);
}
.slider-section .carousel-control-next {
    width: auto;
    right: 0;
}
.slider-section .carousel-control-next-icon {
    background-image: url(../img/icons/arrow-right.png);
}

.video-section .icon {
    width: 60px; height: 60px;
}

.how-to-buy p {
    font-size: 30px;
    font-weight: 400;
    line-height: 100%;
}
.how-to-buy a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
}
.how-to-buy a:hover { text-decoration: underline; }

.conctact-section img { height: 150px;}

.footer-img-section {
    background-image: url('../img/Foto.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
  }

.atrakcje-section .atrakcje-container {
    height: 343px;
    position: relative;
    box-shadow: 4px 4px 20px var(--color-shadow-gray);
    border-radius: 8px;
}
.atrakcje-section .buttons {
    display: flex;
    justify-content: center;
    gap: 111px;
    margin-top: 50px;
}

.atrakcje-container.center-image picture {
    position: relative;
    z-index: 100;
}
.atrakcje-container.center-image .atrakcje-img {
    left: 50%;
    transform: translate(-50%, -50%);
}

.atrakcje-img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 305px;
    border-radius: 20px;
    margin: 0 15px 0 9px;
    float: left;
    aspect-ratio: 305 / 289;
    object-fit: cover;
}

.atrakcje-content {
    background-color: var(--color-secondary);
    border-radius: 10px;
    min-height: 177px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 20px 15px;
}
.atrakcje-content .title { font-size: 25px; font-weight: 500; }
.atrakcje-content .description { font-size: 18px; font-weight: 400; }

@media screen and (min-width: 991px) {
    .center-title .atrakcje-content .title {
        display: flex;
        min-height: 137px;
        flex-direction: column;
        justify-content: center;
        margin: 0;
    }
}

.action-block {
    margin-top: 50px;
}
.action-block .title {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
}

.group-section .buttons {
    display: flex;
    justify-content: center;
    gap: 111px;
    margin-top: 50px;
}
.group-section input[type="number"]::-webkit-inner-spin-button,
.group-section input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.group-section input[type="number"],
.group-section .arrow {
    appearance: textfield;
    -moz-appearance: textfield;
}

.gallery-section .img-fluid,
.gallery-section video {
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 284 / 196;
    max-height: 196px;
    height: 100%;
    width: 100%;
}

.form {
    padding: 30px 54px;
    box-shadow: 4px 4px 20px 0 var(--color-shadow-gray);
    border-radius: 20px;
}
.form .form-title {
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    max-width: 387px;
    margin: 0 auto 25px;
}
.form input,
.form select,
.form textarea {
    border-radius: 10px;
    border: 1px solid var(--color-form-border);
    padding: 13px 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
}
.form input,
.form select { height: 55px; }
.form textarea {
    height: 195px;
    resize: none;
    margin-bottom: 25px;
}
.form ::placeholder,
.form #default-option {
    color: var(--color-light-gray);
}

.calendar-section .buttons {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-bottom: 50px;
}
.calendar-section .buttons .btn {
    height: 63px;
    width: 271px;
    cursor: default;
}
.calendar-section .month {
    border-radius: 25px;
    box-shadow: 4px 4px 20px 0 var(--color-calendar-shadow);
    overflow: hidden;
    height: 100%;
    padding: 11px;
}
.calendar-section .month-name { font-size: 24px; }
.calendar-section .weekdays th {
    font-size: 15px;
    font-weight: 400;
    border: 1px solid var(--color-dark);
    border-radius: 5px;
    cursor: default;
}
.calendar-section .prev-month,
.calendar-section .next-month {
    color: var(--color-light-gray);
    border: 1px solid var(--color-light-gray);
}
.calendar-section .day { border-radius: 5px; cursor: default; }
.calendar-section .calendar { text-align: center; }
.calendar-section table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
}
.calendar-section tbody:before {
    content: "@";
    display: block;
    line-height: 4px;
    text-indent: -99999px;
}
.calendar-section td {
    width: 14%;
    height: 30px;
    text-align: center;
}
.calendar-section .closed      { background-color: var(--color-calendar-closed); color: var(--color-white); }
.calendar-section .empty       { background-color: var(--color-transparent); }
.calendar-section .grupy,      .calendar-section .grupy:active      { background-color: var(--color-calendar-grupy); color: var(--color-white); }
.calendar-section .open_to_18, .calendar-section .open_to_18:active { background-color: var(--color-calendar-18); color: var(--color-white); }
.calendar-section .open_to_17, .calendar-section .open_to_17:active { background-color: var(--color-calendar-17); color: var(--color-white); }
.calendar-section .open_to_16, .calendar-section .open_to_16:active { background-color: var(--color-calendar-16); color: var(--color-white); }

.filter-shadow{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(44, 98, 221, 0.5);
}
.pdf-section .pdf-inner{
    padding-left: 2.5vw;
}
.pdf-section .title-stroke {
   text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
    position: relative;
    margin-top: 10.1vw;
    width: 28vw;
    left: 15.5vw;
    font-size: 2vw;
}
.pdf-section .text-stroke{
     text-shadow:
    0 0 0 #3a3a3a,
     0 0 0 #3a3a3a,
    -1px  1px 5px #3a3a3a,
     1px  1px 5px #3a3a3a;
    font-size: 1.65vw;
    margin: 1.5vw 0 0 0.9vw;
}

.pdf-section p.text-stroke{
    font-size: 1.3vw;
    line-height: 121%;
    margin: 1.5vw 0 0 0.3vw;
}
   