/*
Theme Name: GreetzClone 
Theme URI: http://www.example.com/theme-uri/
Author: Michael Tocaci
Author URI: http://www.michaeltocaci.com
Description: Greetz clone for testing.
Version: 1.1
Requires at least: 5.0
Tested up to: 5.5
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: GreetzClone
*/
@import url('https://fonts.cdnfonts.com/css/galano-grotesque-alt');

h1, h2, h3, h4, h5, h6, p {
    font-family: 'Galano Grotesque', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

a:hover {
    text-decoration: underline;
}

html body .container {
    max-width: 1200px;
    overflow: hidden;
    margin: 0 auto;
}

.button {
    padding: 12px 44px;
    margin-bottom: 8px;
    border-radius: 10px;

    box-shadow: rgba(0, 3, 77, 0.15) 0px 3px 8px 0px;
}

.button-primary,
#button-0 {
    color: rgb(255, 255, 255);
    background-color: rgb(25, 26, 81);
    border: 2px solid rgb(25, 26, 81);
    transition: ease-in 0.2s;
}

.button-primary a p,
#button-0 a p {
    color: white;
}



.button-primary:hover,
#button-0:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(25, 26, 81);
    border: 2px solid rgb(25, 26, 81);
    text-decoration: none;
}

.button-primary-outline,
#button-1 {
    background-color: rgb(255, 255, 255);
    color: rgb(25, 26, 81);
    border: 2px solid rgb(25, 26, 81);
    transition: ease-in 0.2s;
}

.button-primary-outline:hover,
#button-1:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(25, 26, 81);
    border: 2px solid rgb(25, 26, 81);
    text-decoration: none;
}

.btnContainer {
    width: fit-content;
}

.left {
    background-color: rgb(250, 218, 215);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.leftContainer {
    max-width: 480px;
    padding: 24px;
}

.leftContainer p {
    font-size: 1rem;
    font-weight: 300;
}


.left h2 {
    letter-spacing: 0px;
    font-weight: 600;
    line-height: 2.7rem;
    font-size: 2.5rem;
    color: rgb(71, 9, 58);
    margin-bottom: 20px;
}

.right img {
    max-height: 465px;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.btnContainer a {
    text-align: center;
}

.btnContainer a p {
    font-size: 16px;
    font-weight: 600;
}

.search-bar,
.searchForm,
.search-bar input {
    width: 100%;
}

.search-bar {
    padding: 0 16px;
    max-width: 725px;
}

.search-bar input {
    font-weight: bold;
    align-self: center;
    border: 2px solid rgb(71, 9, 58);
    border-radius: 24px;
    color: rgb(26, 26, 26);
    padding: 8px 2px 8px 16px;
    height: fit-content;
}

.zoom { 
    position: relative;
    right: 2rem;
}

.menu {
    display: flex;
}

.menu .menu-item {
    padding: 16px;
}

.menu li a {
    font-size: 12px;
    font-weight: bold;
}

.devider { 
    display: flex;
    width: 100%;
    height: fit-content;
    background-color: rgb(253, 209, 122);
    margin-bottom: 20px;
    padding: 8px 0;
}

.devider p {
    font-size: 18px;
    font-weight: 500;
    margin-left: auto;
    padding-right: 16px;
    color: rgb(71, 9, 58);
}

.devider a {
    font-size: 18px;
    font-weight: 600;
    margin-right: auto;
    color: rgb(71, 9, 58);
}

.devider a:hover {
    text-decoration: underline;
}

.swiper-wrapper {
    gap: 16px;
}

.mySwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-height: 55px;
    height: 100vh;
    border: 2px solid rgb(25, 26, 81);
    border-radius: 8px;
    white-space: nowrap;
    flex-direction: column;
    color: rgb(25, 26, 81);
    background-color: rgb(255, 255, 255);
    min-height: 10px;
    padding: 8px 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.mySwiper .swiper-slide a {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: block;
    white-space: break-spaces;
}

.button-next {
    position: relative;
    left: 81%;
    bottom: 52px;
    z-index: 1000;
    width: 32px;
    aspect-ratio: 1 / 1;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: rgb(71, 9, 58);
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 32, 77, 0.15) 0px 8px 18px 0px;
}


.button-prev {
    position: relative;
    left: 17.7%;
    bottom: 83px;
    z-index: 1000;
    width: 32px;
    aspect-ratio: 1 / 1;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: rgb(71, 9, 58);
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 32, 77, 0.15) 0px 8px 18px 0px;
}

.spotlightSection {
    background-color: rgb(253, 242, 244);
}

.spotlightContainer h4 {
    font-family: "Galano Grotesque", Arial, sans-serif;
    font-weight: 700;
    line-height: 2rem;
    font-size: 1.25rem;
    letter-spacing: 0px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 20px;
}

.spotlightContainer .itemRow {
    max-height: 210px;
}

.spotlightContainer .leftContent {
    z-index: 100;
    max-width: 211px;
    max-height: 185px;
    width: 100%;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    left: 0px;
    box-shadow: rgba(0, 32, 77, 0.15) 0px 1px 4px 0px;
    padding: 16px;
    position: relative;
    top: 32px;
    bottom: 32px;
    height: auto;
    margin-top: 0px;
}
.spotlightContainer #leftContent-2 {
    top: 32px;
}

.spotlightContainer .leftContent p {
    font-family: "Galano Grotesque", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.75rem;
    font-size: 1.2rem;
    letter-spacing: 0px;
    text-decoration: none;
}

.spotlightContainer #item-1 .leftContent p {
    margin-bottom: 4.5rem;
}

.spotlightContainer #item-2 .leftContent p {
    margin-bottom: 1rem;
}

.spotlightContainer .leftContent a {
    color: rgb(25, 26, 81);
    font-family: "Galano Grotesque", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0px;
}

.spotlightContainer .item {
    margin-right: 14rem;
}

.spotlightContainer img {
    position: relative;
    left: 6rem;
    max-width: 441px;
}

.spotlightContainer .item img {
    top: -11.5rem;
}

.spotlightContainer #item-2 img {
    top: -11.5rem;
}

.KaartenFilter h4 {
    font-family: "Galano Grotesque", Arial, sans-serif;
    font-weight: 700;
    line-height: 2rem;
    font-size: 1.25rem;
    letter-spacing: 0px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(71, 9, 58);
}

.KaartenFilter .swiper {
    overflow: visible;
}

.KaartenFilter .swiper .swiper-wrapper {
    gap: unset;
    max-width: 760px;
    overflow: hidden;
    height: 50px;
    margin: 0 auto;
}
.KaartenFilter .button-primary-outline {
    width: fit-content;
    display: block;
    margin: 0 auto;
}

.KaartenFilter .swiper-slide {
    width: fit-content !important;
    position: unset;
    height: unset;
    align-self: center;
}

.KaartenFilter .filters .filterBtn {
    transition: background-color 150ms linear 0s, box-shadow 150ms linear 0s;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    border: 2px solid rgb(25, 26, 81);
    border-radius: 24px;
    color: rgb(71, 9, 58);
    background-color: rgb(255, 255, 255);
    padding: 8px 13px; /* Original padding */
    font-family: "Galano Grotesque", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0px;
    text-decoration: none;
    margin-right: 1rem;
}

.KaartenFilter .filters .filterBtn:hover {
    text-decoration: none;
    outline: none;
    border: 4px solid rgb(94, 95, 133); /* Thicker border */
    color: rgb(94, 95, 133);
    background-color: rgb(253, 242, 244);
    padding: 5px 11px; /* Reduced padding to compensate for the thicker border */
}


.herobanner-section .container {
    max-height: 335px;
}