@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 100;
    src: url('/fonts/Poppins-Thin.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 100;
    src: url('/fonts/Poppins-ThinItalic.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src: url('/fonts/Poppins-ExtraLight.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 200;
    src: url('/fonts/Poppins-ExtraLightItalic.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/Poppins-Light.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 300;
    src: url('/fonts/Poppins-LightItalic.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Poppins-Regular.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/Poppins-Medium.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    src: url('/fonts/Poppins-MediumItalic.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/Poppins-SemiBold.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    src: url('/fonts/Poppins-SemiBoldItalic.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/Poppins-Bold.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 700;
    src: url('/fonts/Poppins-BoldItalic.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('/fonts/Poppins-ExtraBold.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 800;
    src: url('/fonts/Poppins-ExtraBoldItalic.ttf') format('.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    src: url('/fonts/Poppins-Black.ttf') format('.ttf');
} @font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 900;
    src: url('/fonts/Poppins-BlackItalic.ttf') format('.ttf');
}

:root {
    --highlite-white: #FFFFFF;
    --darkmode-black: #3C4042;
    --void-black: #000000;

    --gold: #FFD700;

    --gray1: #F0EAEA;
    --gray2: #E0D3D3;
    --gray3: #BAAFAF;
    --gray4: #6d6464;

    --950: #430C0C;
    --900: #7B2121;
    --800: #942020;
    --700: #B22323;
    --600: #D42E2E;
    --500: #E63D3D;
    --400: #F27777;
    --300: #F8A9A9;
    --200: #FCCCCC;
    --100: #FDE3E3;
    --50: #FDF3F3;

    --default-white-gradient: linear-gradient(to left top, #f27777, #f06a69, #ed5c5b, #ea4d4c, #e63d3d);
    --hover-white-gradient: linear-gradient(to left top, #e63d3d, #d93736, #cc3030, #bf2a29, #b22323);
    --active-white-gradient: linear-gradient(to left top, #d42e2e, #c42a2b, #b42727, #a42324, #942020);
    --disabled-white-gradient: linear-gradient(to left top, #fde3e3, #fdd5d4, #fcc6c6, #fab8b7, #f8a9a9);
    --whatsapp-gradient: linear-gradient(to right top, #1ebea5, #00c9a0, #00d396, #00dd88, #00e676);

    --orange-gradient: linear-gradient(to left top, #b22323, #d0511b, #e83e0a, #f29277, #f8b6a9);
    --red-gradient: linear-gradient(to right, #b22323, #c33a38, #d34f4c, #e36362, #f27777);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background-color: var(--50);
    overflow-x: hidden;
    color: var(--950);
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.App {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 10vw;
    align-self: center;
}

.btn {
    color: var(--50);
    border: none;
    cursor: pointer;
}

.gradient-btn {
    background-image: var(--default-white-gradient);
}

.gradient-btn:hover {
    background-image: var(--hover-white-gradient);
}

.gradient-btn:active {
    background-image: var(--active-white-gradient);
}

.gradient-btn:disabled {
    background-image: var(--disabled-white-gradient);
    color: var(--50);
}

.flat-btn{
    background-color: var(--500);
}

.flat-btn:hover {
    background-color: var(--600);
}

.flat-btn:active {
    background-color: var(--700);
}

.flat-btn:disabled {
    background-color: var(--200);
    color: var(--700);
}

.outline-btn {
    background-color: var(--highlite-white);
    border: solid .1vw var(--500);
    color: var(--500);
}

.outline-btn:hover {
    background-color: var(--highlite-white);
    border: solid .1vw var(--600);
    color: var(--600);
}

.outline-btn:active {
    background-color: var(--highlite-white);
    border: solid .1vw var(--700);
    color: var(--700);
}

.outline-btn:disabled {
    background-color: var(--highlite-white);
    border: solid .1vw var(--200);
    color: var(--200);
}

.card {
    background-color: var(--highlite-white);
    border-radius: 15px;
    padding: clamp(10px, 3vw, 40px);
    font-size: clamp(7px, 1.5vw, 20px);
    box-shadow: 5px 5px 10px 0px rgba(123, 86, 86, 0.05);
    transition: transform 0.5s ease;
}

.card:hover {
    transform: scale(1.02);
}

#voucher-card {
    filter: drop-shadow(5px 5px 10px rgba(123, 86, 86, 0.2));
    transition: transform 0.5s ease;
}

#voucher-card:hover {
    transform: scale(1.02);
}

section {
    padding-block: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: clamp(9px, 3vw, 40px);
}

h2 {
    color: var(--700);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: clamp(10px, 5vw, 100px);
    margin-bottom: 0;
}

h3 {
    color: var(--700);
}

h5{
    color: var(--700);
    font-size: clamp(7px, 1.5vw, 20px);
    margin-bottom: 1vw;
}

h6 {
    margin: 0;
    font-weight: bold;
}

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

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

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

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    padding-block: .5vw;
}

input, textarea {
    color: var(--950);
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray1);
    font-size: clamp(5px, 2vmin, 15px);
}

textarea {
    font-size: clamp(5px, 2vmin, 15px);
    font-family: 'Poppins', sans-serif;
    padding-top: clamp(5px, 1vw, 15px);
    padding-left: clamp(10px, 2vw, 30px);
}

input::placeholder, textarea::placeholder {
    color: var(--gray3);
    font-size: clamp(5px, 2vmin, 15px);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: var(--gray3);
}

/* Chrome, Safari und Edge */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--gray1) inset !important;
    -webkit-text-fill-color: var(--950) !important;
}

/* Chrome, Safari und Edge */
#newsletter-input:-webkit-autofill,
#newsletter-input:-webkit-autofill:hover, 
#newsletter-input:-webkit-autofill:focus, 
#newsletter-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--highlite-white) inset !important;
    -webkit-text-fill-color: var(--950) !important;
}

/* Firefox */
input:-moz-ui-invalid {
    box-shadow: none !important;
}

input:-moz-ui-valid {
    background-color: var(--highlite-white) !important;
    color: var(--950) !important;
}

.unselectable {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard: Chrome und andere */
}  

.hidden {
    display: none !important; 
}

footer{
    font-size: clamp(7px, 1.5vw, 20px);
    display: flex;
    flex-direction: row;
    column-gap: 1vw;
}

.app-nav {
    /**position: sticky;
    top: 0;**/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 5vmin;
    padding-bottom: 2vw;
    padding-inline: 2vw;
    border-radius: 0 0 15px 15px;
    width: 90vw;
    font-size: clamp(7px, 1.5vw, 20px);
    /**padding-top: 2vw;
    background-color: var(--highlite-white);
    filter: drop-shadow(5px 5px 10px rgba(123, 86, 86, 0.2));
    z-index: 1001;**/
}

.app-nav > * {
    display: flex;
    width: 20vw;
    align-items: center;
}

.app-nav-img {
    width: 20vw;
}

.app-nav-links {
    display: flex;
    justify-content: space-evenly;
    column-gap: 2vw;
    width: fit-content;
}

#app-logo {
    width: 22vw;
    max-width: 350px;
}

.logo {
    width: 25vw;
    max-width: 450px;
}

.App-header {
    display: flex;
    align-items: center;
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding-top: 10%;
}

.App-title {
    color: var(--highlite-white);
    font-weight: bold;
    z-index: 1;
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
    margin-left: 5vw;
}

#start-btn {
    text-align: center;
    display: inline-block;
    border-radius: 15px;
    position: relative;
    margin-top: 2vw;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--50);
    background: linear-gradient(45deg, var(--500), var(--700));
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

#start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    box-shadow: 0 0 30px 10px rgba(255, 0, 0, 0.2); /* Weicherer Schatten */
    z-index: -1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.7;
}

#start-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 0, 123, 0.2);
}

#start-btn:hover::before {
    opacity: 1;
    box-shadow: 0 0 40px 20px rgba(255, 128, 128, 0.4); /* Weicher und stärker bei Hover */
}

.App-title-special-word {
    position: relative;
    top: -2vw;
    color: var(--600);
}
.slider-container {
    position: absolute;
    width: 100vw;
    height: 100%;
    background: var(--default-white-gradient);
}

.slider-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 100%; /* Start außerhalb des Sichtbereichs */
    object-fit: cover;
    opacity: 0;
    transition: left 1.5s ease-in-out, opacity 1.5s ease-in-out; /* Sanfter Übergang */

}

.slider-container img.active {
    left: 0; /* Bild wird sichtbar */
    opacity: 1;
}

.slider-container img.exiting {
    left: -100%; /* Bild verlässt den Sichtbereich */
    opacity: 0;
}

#search-form {
    background-color: var(--highlite-white);
    border-radius: 50px;
    box-shadow: 5px 5px 10px 0px rgba(123, 86, 86, 0.05);
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    padding-inline: 50px;
    padding-block: 30px;
    width: clamp(10px, 80vw, 900px);
}

.input {
    font-size: clamp(7px, 1.5vw, 20px);
    border: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-color: var(--highlite-white);
}

label {
    color: var(--gray3);
}

select {
color: var(--950);
-webkit-appearance: none;
appearance: none;
font-size: 1.15rem;
border: 1px solid #caced1;
border-radius: 0.25rem;
cursor: pointer;
}

#search-btn {
    width: 50px;
    height: 50px;
    background-image: url('images/vuesax_linear_search-normal.svg');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    justify-self: end;
    margin-left: 60px;
}

.header-title {
    font-size: clamp(10px, 2.2vmin, 25px);
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
    padding-inline: 1.5rem;
    font-weight: lighter;
}

.divider {
    width: clamp(5px, 15vw, 200px);
    height: 0.1rem;
    background-color: var(--gray2);
}

h4 {
    font-weight: 400;
    font-size: clamp(8px, 1.5vmin, 18px);
    padding-top: 1rem;
    padding-bottom: 2rem;
}

#discount-aside {
    margin-top: 3vw;
    border-radius: 15px;
    border: .1em solid var(--400);
    background-color: var(--100);
    padding-block: 1vw;
    padding-inline: 2vw;
    width: 100%;
}

#discount-ic {
    width: clamp(7px, 3vw, 20px);
}

#discount-h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1em;
    font-size: clamp(7px, 1vw, 20px);
}

#discount-article-p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 2vw;
}

#discount-article-p, #discount-article details {
    padding-left: clamp(10px, calc(3vw), 40px);
    font-size: clamp(7px, 1vw, 20px);
}

#discount-countdown-p {
    color: var(--400);
    font-size: clamp(10px, .7vw, 60px);
    font-weight: bold;
    text-align: right;
}

#inventory {
    padding-top: 2vw;
    width: calc(100% + 20vw);
    column-gap: 5vw;
    overflow-x: scroll;
    justify-content: flex-start;
    overflow-y: hidden;
}

#inventory {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#inventory::-webkit-scrollbar {
    display: none;
}

#inventory > :first-child {
    margin-left: 9vw;
}

#inventory > :last-child {
    margin-right: 9vw;
}

.inventory-thumbnail {
    width: 30%;
    max-width: 400px;
    border-radius: 15px;
    z-index: 1;
    margin-right: -9.5vw;
    margin-top: 5vw;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

#inventory-header {
    margin-top: 0;
    margin-bottom: clamp(0, 4vw, 10px);
    font-weight: 400;
    font-size: clamp(7px, 3vw, 30px);
    white-space: nowrap;
}

.inventory-aside {
    display: flex;
    flex-direction: column;
    width: 20vw;
    max-width: 300px;
    margin-left: 5vw;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 1vmin;
}

.detail-titel {
    flex-basis: 0;
}

.detail-value, .detail-value * {
    flex-basis: 20;
    color: var(--700);
}

#detail-cost .detail-title {
    color: var(--700);
    font-size: clamp(7px, 3vw, 30px);
}

#detail-cost .detail-value {
    color: var(--950);
}

.inventory-btn {
    cursor: pointer;
    border-radius: 50px;
    font-size: clamp(5px, 1.7vw, 23px);
    width: 81%;
    height: clamp(10px,3.5vw,60px);
    margin-left: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: clamp(10px, 2vw, 30px);
}

.inventory-btn .detail-value {
    color: var(--50);
}

#services {
    column-gap: 2vw;
    width: 100%;
}

.services-icon {
    width: clamp(10px, 3vw, 40px);
}

#services-card {
    width: 20rem;
}

#special {
    width: calc(100% + 20vw);
    padding-top: clamp(10px, 10vw, 190px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-img {
    flex-basis: 0;
    z-index: 1;
    width: 60vw;
    max-width: 1200px;
    margin-right: -40px;
    border-radius: 0 15px 15px 0;
}

#special-card {
    flex-basis: 100;
    border-radius: 15px 0 0 15px;
    max-height: 550px;
    height: 20vw;
    width: 40vw;
    padding-block: clamp(20px, 5vw, 60px);
    padding-inline: clamp(60px, 6vw, 80px);
}

.special-header {
    color: var(-700);
    font-size: clamp(10px, 2.1vw, 30px);

}

#special-btn {
    cursor: pointer;
    border-radius: 50px;
    font-size: clamp(5px, 1.8vw, 20px);
    width: clamp(10px, 60%, 300px);
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
    height: clamp(10px,4vw,60px);
    margin-top: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: clamp(10px, 2vw, 30px);
}

#special-btn .detail-titel {
    flex-basis: 0;
}

#special-btn .detail-value {
    color: var(--50);
    flex-basis: 20;
}

#feedback {
    /*column-gap: 2vw;*/
    width: 90vw;
    margin-top: -2rem;
}

#feedback-h4 {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

#feedback-h3 {
    margin: 0;
}

#feedback-card {
    min-width: none;
    max-width: 500px;
}

#feedback-figure {
    display: flex;
    flex-direction: row;
    column-gap: 2vw;
    margin: 0;
    padding-bottom: clamp(5px, 3vw, 40px);
}

#feedback-figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#feedback-blockquote {
    margin: 0;
}

.feedback-icon{
    width: clamp(10px, 5vw, 60px);
    height: clamp(10px, 5vw, 60px);
    border-radius: 50%;
}

.app-footer{
    width: 100%;
}

.footer-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 10vh;
    column-gap: 10vw;
    width: 100%;
}

.footer-div > ul:first-of-type {
    flex-basis: 0;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 2vw;
    flex-basis: 100;
}

#newsletter-form {
    display: flex;
    flex-direction: row;
    background-color: var(--highlite-white);
    border-radius: 50px;
    box-shadow: 5px 5px 10px 0px rgba(123, 86, 86, 0.05);
    padding-right: clamp(2px, 1vw, 10px);
    padding-left: clamp(2px, 2vw, 40px);
    padding-block: clamp(2px, 1vw, 10px);
    column-gap: clamp(2px, 3vw, 40px);
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
}

#newsletter-h5{
    padding-left: 1vw;
}

#newsletter-btn {
    width: clamp(2px, 5vw, 60px);
    height: clamp(2px, 5vw, 60px);
    background-image: url('images/open_arrow_right.svg');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

#newsletter-input {
    background-color: var(--highlite-white);
    border: none;
    outline: none;
    font-size: clamp(7px, 1.5vw, 20px);
}

#socialmedia {
    display: flex;
    flex-direction: row;
    column-gap: clamp(1px, 2vw, 20px);
    padding-left: 0px;
}

#socialmedia-image-li{
    padding-top: 1vw;
    padding-left: 1vw;
}

.socialmedia-img {
    width: clamp(3px, 3vw, 40px);
    transition: transform 0.5s ease;
}

.socialmedia-img:hover {
    transform: scale(1.5);
}

.legal-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-block: 3vw;
    column-gap: 5vw;
    color: var(--gray4);
    width: 100%;
    justify-content: space-between;
}

.guide {
    padding: 10vw;
    padding-top: 5vw;
}

#contact {
    width: 90vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2vw;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-article {
    display: flex;
    flex-direction: column;
    width: 30vw;
    max-width: 350px;
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
}

#contact-form, #rent-form, #voucher-form {
    width: 40vw;
    max-width: 500px;
    height: -moz-fit-content;
    height: -webkit-fill-available;
    height: fit-content;
    margin-top: .5vw;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
}

#contact-ul {
    padding: 0;
    margin: 0;
    max-width: calc(350px + clamp(10px, 5vw, 80px));
}

#contact-label {
    padding: 0;
}

.contact-input {
    width: 100%;
    padding-block: clamp(5px, 1vw, 10px);
    border: none;
    border-radius: 15px;
    padding-inline: clamp(10px, 2vw, 30px);
    box-sizing: border-box;
}

.date-input {
    cursor: pointer;
}

#calendar::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding-left: 40%;
    padding-right: 10%;
}

.contact-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding-left: 30%;
}

.nachricht {
    width: inherit;
    max-width: 95%;
    padding-top: clamp(5px, 1vw, 20px);
    font-size: clamp(5px, 2vmin, 15px);
    height: 10vw;
    max-height: 80px;
    border: none;
    border-radius: 15px;
}

#contact-btn, #rent-btn, #rent-btn-whatsapp {
    cursor: pointer;
    border-radius: 50px;
    font-size: clamp(5px, 1.7vw, 23px);
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
    width: 50%;
    max-width: 200px;
    height: clamp(10px,3.5vw,50px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: clamp(10px, 2vw, 30px);
}

#rent-btn-whatsapp {
    background-image: var(--whatsapp-gradient);
}

#contact-btn .detail-value , #rent-btn .detail-value {
    color: var(--50);
}

#rent-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2vw;
}

#rent-main {
    display: flex;
    flex-direction: row;
    column-gap: 2vw;
}

.rent-dates {
    column-count: 2;
}

.test {
    column-count: 1;
    padding-bottom: 0.8vw;
}

#rent-dates-birthdate {
    display: flex;
    flex-direction: row;
    column-gap: 2vw;
    align-items: center;
}

.rent-agree {
    display: flex;
    flex-direction: column;
}

.rent-agree p {
    display: flex;
    flex-direction: row;
}

.rent_advertising{
    width: 100%;
    border-radius: 15px;
    cursor: pointer;
}

#rent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: green;
}

.faq-h3 {
    margin-top: 0;
}

#about-us-main {
    display: flex;
    flex-direction: column;
    row-gap: 3vw;
}

.about-us-section {
    display: flex;
    flex-direction: row;
    column-gap: 2vw;
    width: 100%;
    align-items: center;
}

.about-us-img {
    width: 30vw;
    border-radius: 15px;
}

#about-us-img-logo {
    border-radius: 0;
}

#price-plan {
    padding-top: 5vw;
    padding-inline: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4vw;
}

#price-plan-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    column-gap: 4vw;
    row-gap: 4vw;
    margin-bottom: 5vw;
}

.plan {
    display: flex;
    flex-direction: row;
    column-gap: 1vw;
    row-gap: 3vw;
}

.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 15vw;
    color: var(--gray4);
    font-weight: 600;
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
}

#price-plan h1 {
    margin-block: 0;
}

.price-plan-h2 {
    color: var(--600);
    padding-top: 0vw;
    margin-block: 0;
    font-weight: 400;
    font-size: 1.4vw;
}

.price-plan-h3 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    color: var(--950);
    font-size: 2.4vw;
    font-weight: 400;
    margin-block: 2vw;
}

.price-plan-h3-currency {
    color: var(--gray3);
    font-size: 1vw;
    padding-top: .4vw;
    padding-right: .7vw;
}

.price-plan-h3-amount {
    font-weight: bold;
    transform: scaleY(1.1);
}

.price-plan-h3-job {
    color: var(--gray3);
    font-size: 1vw;
    align-self: flex-end;
    padding-bottom: .6vw;
    padding-left: .2vw;
}

.price-plan-free-km {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    color: var(--950);
    font-size: 1.4vw;
    font-weight: bold;
    margin-top: 2.5vw;
    margin-bottom: .8vw;
}

.price-plan-p-km {
    color: var(--gray3);
    font-size: .7vw;
    align-self: flex-end;
    padding-bottom: .3vw;
    padding-left: .2vw;
    font-weight: 500;
}

.price-plan-p {
    text-align: center;
    font-size: .9vw;
    color: var(--gray3);
}

.price-plan-wochentage {
    color: var(--950);
}

.plan-card.special .price-plan-wochentage  {
    font-weight: bold;
}

.plan-card.special .price-plan-wochentage {
    font-weight: 900;
}

.price-plan-btn {
    cursor: pointer;
    border-radius: 10px;
    font-size: clamp(5px, 1vw, 23px);
    height: clamp(10px,3.5vw,60px);
    display: flex;
    align-items: center;
    padding-inline: clamp(10px, 2vw, 30px);
    box-shadow: 0px .2vw .5vw .2vw rgba(123, 86, 86, .2);
    transition: box-shadow 0.5s ease;
}

.price-plan-btn:hover {
    box-shadow: none;
}

.price-plan-details-p {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
}

.price-plan-details-currency {
    color: var(--gray3);
    font-size: .6vw;
    padding-right: .4vw;
}

.price-plan-details-amount {
    color: var(--950);
    font-weight: bold;
    transform: scaleY(1.1);
}

.price-plan-details-job {
    color: var(--gray3);
    font-size: .6vw;
    align-self: flex-end;
    padding-left: .2vw;
}

.elite-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid .2vw var(--200);
    border-radius: 15px;
    padding: 1vw;
    /*margin-bottom: 5vw;*/
    top: 1.2vw;
    row-gap: .5vw;
}

.elite-plan-h1{
    font-size: clamp(7px, 1.3vw, 40px);
    border-radius: 15px 15px 0 0;
    width: 100%;
    text-align: center;
    margin-block: 0vw;
    padding-bottom: 1vw;
    padding-top: .4vw;
    color: var(--400);
}

#elite-plans {
    column-gap: 0;
}

#elite-plans > .card:first-child {
    border-radius:  15px 0 0 15px;
}

#elite-plans >  .card:nth-child(2) {
    border-radius:  0 15px 15px 0;
}

.plan-card.elite {
    background-color: var(--100);
    color: var(--950);
}

.plan-card.special {
    border-radius: 0;
    background-color: var(--200);
    color: var(--gray4);
    font-weight: bold;
}

.plan-card.special .price-plan-h3 {
    color: var(--gray4);
    font-weight: bold;
}

.plan-card.elite p,
.plan-card.elite span,
.plan-card.elite summary {
    border-radius: 0;
    color: var(--950);
}

.plan-card.special .price-plan-h3-amount,
.plan-card.special .price-plan-p-free,
.plan-card.special .price-plan-details-amount {
    border-radius: 0;
    color: var(--950);
}


.plan-card.special p, 
.plan-card.special span, 
.plan-card.special summary,
.plan-card.special footer > * {
    color: var(--gray4);
    font-weight: bold;
}

#whatsapp-instructions {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
    font-size: clamp(7px, 3vw, 20px);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--highlite-white);
    border: 1px solid greenyellow;
    padding: 20px;
    box-shadow: 0px 0px 10px var(--gray3);
    z-index: 1000;
    border-radius: 15px;
}

#whatsapp-instructions {
    border: 1px solid var(--600);
}

#whatsapp-allert-button {
    border-radius: 15px;
    text-align: center;
    font-size: clamp(7px, 2vw, 20px);
    padding-block: clamp(5px, 2vw, 10px);
    padding-inline: clamp(10px, 5vw, 40px);
}

#whatsapp-allert-img {
    width: clamp(3px, 8vw, 60px);
}

#shipping-p {
    font-size: clamp(5px, 1.4vw, 18px);
}

.invalid {
    border: 2px solid red;
    background-color: #ffe6e6;
    border-radius: 15px;
}

#voucher-glassmorphism {
    position: relative;
}

#voucher-glassmorphism::before,
#voucher-glassmorphism::after {
    content: '';
    position: absolute;
    background-image: var(--orange-gradient);
    border-radius: 50%;
    z-index: -2;
    filter: blur(7px); /* Weicher Rand */
    opacity: 0.8; /* Für einen sanften Effekt */
}

#voucher-glassmorphism::after {
    background-image: var(--red-gradient);

}

#voucher-glassmorphism::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

#voucher-glassmorphism::after {
    width: 450px;
    height: 450px;
    bottom: -100px;
    right: -85px;
}

#voucher {
    cursor: pointer;
    max-width: 1700px;
    position: relative;
    padding-inline: 5%;
    padding-block: 2%;
    background: rgba(238, 11, 11, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(6.7px);
    backdrop-filter: blur(29.7px);
    transition: transform 0.5s ease;
    z-index: 1;
}

#voucher:hover {
    transform: scale(1.02);
}

#voucher-article {
    display: flex;
    flex-direction: column;
    padding: 5%;
}

#voucher-card-img {
    width: clamp(100px, 40%, 900px);
}

#fullscreen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

#fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Beibehaltung der Aspect Ratio */
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    -webkit-user-select: none; /* Safari, iOS */
    user-select: none; /* Standard */
}

#fullscreen-prev {
    color: var(--500);
    left: 25px;
}

#fullscreen-next {
    color: var(--500);
    right: 40px;
}

#fullscreen-prev:hover, #fullscreen-next:hover {
    color: var(--800);
}

#fullscreen-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--50);
    cursor: pointer;
    -webkit-user-select: none; /* Safari, iOS */
    user-select: none; /* Standard */
    background: var(--500);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: -1;
    z-index: 1001; /* Über den Pfeilen */
}

#fullscreen-close:hover {
    background: var(--700);
    color: var(--void-black)
}

@media (min-width: 1200px) {
    .App-title {
        font-size: clamp(50px, 4vmax, 90px);
        top: clamp(80px, 5vmax, 100px);
    }

    .App-title-special-word {
        font-size: clamp(90px, 6vw, 120px);
    }

    #start-btn {
        padding-inline: clamp(20px, 1vw, 60px);
        padding-block: clamp(20px, 2vh, 30px);
        font-size: 2vmin;
        /*margin-left:30px;*/
        bottom: clamp(0px, 2vmax, 30px);
    }

    .car-bg-txt {
        font-size: clamp(300px, 20vw, 400px);
        bottom: 10px;
        padding-top: 0;
    }

    .car-logo {
        width: clamp(530px, 40vw, 800px);
        right: clamp(400px , 400vw, 650px);
        top: clamp(100px, 8vw, 140px);
    }
    
    .inventory-thumbnail {
        margin-top: 1vw;
    }

    .inventory-btn {
        margin-top: 2vw;
        margin-left: 4vw;
        max-width: 65%;
    }

    #special-card {
        width: 60vw;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .App-title {
        font-size: clamp(30px, 5vw, 50px);
    }

    .App-title-special-word {
        font-size: clamp(40px, 6vw, 70px);
    }

    #start-btn {
        padding: 15px 32px;
        font-size: 1.5vmin;
        /*margin-left:20px;*/
        bottom: 19px;
    }

    .car-bg-txt {
        font-size: clamp(200px, 25vw, 250px);
        bottom: 50px;
        margin-top: 60px;
    }

    .car-logo {
        width: 45vw;
        right: clamp(500px , 55vw, 600px);
    }
}

@media (max-width: 899px) {
    h3 {
        font-size: clamp(7px, 3vw, 60px);
    }

    h5 {
        font-size: clamp(7px, 2vw, 60px);
        margin-bottom: 1vw;
    }

    h6 {
        font-size: 2vw;
    }

    .app-nav-hidden {
        display: none;
    }

    #app-logo {
        width: 40vw;
        max-width: 250px;
    }

    .App-header {
        height: clamp(50px, 25vw, 300px);
    }

    .App-title {
        font-size: clamp(2px, 5vw, 40px);
        top: clamp(5px, 10vw, 100px);
    }

    .App-title-special-word {
        font-size: clamp(2px, 6vw, 50px);
    }

    #start-btn {
        padding-inline: clamp(10px, 2vw, 20px);
        padding-block: clamp(5px, 1vw, 10px);
        font-size: clamp(11px, 2vw, 17px);
        /*margin-left: 10px;*/
        bottom: clamp(0px, 1vw, 7px);
    }

    .car-bg-txt {
        font-size: clamp(10px, 20vw, 180px);
        bottom: 3vmin;
        margin-top: clamp(5px, 20vw, 200px);
    }

    .car-logo {
        width: 40vw;
        right: clamp(120px, 30vmin, 230px);
        top: clamp(5px, 10vw, 100px);
    }

    #search-form {
        display: none;
    }

    .header-title {
        font-size: clamp(8px, 4vw, 30px);
    }

    h4 {
        font-size: clamp(3px, 2.5vmin, 18px);
        padding-top: 0rem;
        padding-bottom: 0rem;
    }

    #discount-aside {

        padding-block: 1vw;
        padding-inline: 4vw;
    }

    #discount-h3, #discount-article-p, #discount-article details {
        font-size: clamp(4px, 2vw, 60px);
    }

    #discount-countdown-p {
        font-size: clamp(3px, 1.5vw, 60px);
        text-align: right;
    }

    #inventory-header {
        font-size: 5vw;
    }

    .inventory-aside {
        font-size: 3.5vw;
        width: 40vw;
    }

    #detail-cost .detail-title {
        color: var(--700);
        font-size: clamp(8px, 5vw, 50px);
    }
    
    .inventory-btn {
        margin-top: 2vw;
        height: clamp(10px,5vw,60px);
        font-size: clamp(3px, 3.3vw, 20px);
        padding-inline: clamp(5px, 2vw, 30px);
        width: 50%;
    }

    .inventory-thumbnail {
        width: 40%;
    }

    #services {
        display: flex;
        flex-direction: column;
        row-gap: 2vw;
    }

    #services-card {
        width: inherit;
    }

    #services-card p{
        font-size: clamp(6px, 3vw, 60px);
    }

    .services-icon{
        width: clamp(1px, 5vw, 40px);
    }

    #special-card {
        padding-block: clamp(15px, 5vw, 60px);
        padding-left: clamp(50px, 15vw, 80px);
        padding-right: 2vw;
        height: fit-content;
    }

    #special-card p {
        font-size: clamp(6px, 3vw, 60px);
    }

    .special-header {
        font-size: clamp(7px, 3vw, 60px);
    
    }

    #special-btn {
        margin-top: 2vw;
        height: clamp(10px,5vw,60px);
        font-size: clamp(3px, 3.3vw, 20px);
        padding-inline: clamp(5px, 2vw, 30px);
        width: 50%;
    }

    #special-arrow {
        padding-left: 1vw;
        height: 2vw;
    }

    #feedback {
        display: flex;
        flex-direction: column;
        row-gap: 2vw;
        width: 100%;
    }

    #feedback-card {
        width: inherit;
    }

    .footer-div  a {
        font-size: clamp(7px, 2vw, 60px);
    }

    .legal-nav a, .legal-nav  span, .app-nav a {
        font-size: clamp(7px, 2vw, 60px);
    }

    #feedback-blockquote {
        font-size: clamp(6px, 3vw, 60px);
    }

    label {
        background-size: clamp(5px, 3vmin, 15px);
        font-size: clamp(5px, 2vmin, 12px);
        padding-inline: 1vw;
    }

    .input {
        font-size: clamp(7px, 2vmin, 15px);
        padding-inline: 2vw;
    }

    #search-btn {
        background-size: 3vmin;
        width: clamp(8px, 6vmin, 60px);
        height: clamp(8px, 6vmin, 60px);
        margin-left: clamp(20px, 2vmin, 40px);;
    }

    #newsletter-input {
        width: 15vw;
        min-width: 70px;
    }

    #newsletter-btn {
        background-size: clamp(4px, 1.4vw, 20px);
        min-width: 15px;
        min-height: 15px;
    }

    .footer-div {
        padding-top: 15vw;
        column-gap: 0;
        flex-wrap: wrap;
    }
    
    input, label, input::placeholder, textarea::placeholder {
        font-size: 3vw;
    }

    .contact-input, #nachricht {
        width: 100%;
    }

    #nachricht {
        font-size: clamp(2px, 3vw, 30px);
    }

    #contact-btn, #rent-btn, #rent-btn-whatsapp {
        font-size: 3vw;
        height: 7vw;
    }

    .card:hover {
        transform: none;
    }

    .logo{
        width: 50vw;
        max-width: 450px;
    }

    h1 {
        font-size: clamp(9px, 5vw, 40px);
    }

    #rent-div {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    #rent-main {
        display: flex;
        flex-direction: column;
        row-gap: 4vw;
    }

    #contact-label-street, #contact-label-tel,
    #contact-label-email, #contact-label-car {
        display: none;
    }

    #contact {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .contact-input::-webkit-calendar-picker-indicator,
    #calendar::-webkit-calendar-picker-indicator {
        cursor: pointer;
        padding-left: 20%;
        padding-right: 0;
    }

    #newsletter-input::placeholder {
        text-align: left;
        font-size: clamp(7px, 2.1vw, 16px); /* Adjust the font size as needed */
    }
    
    /* For compatibility with Internet Explorer */
    #newsletter-input:-ms-input-placeholder {
        font-size: 2.1vw;
    }
    
    /* For compatibility with Mozilla Firefox older versions */
    #newsletter-input::-moz-placeholder {
        font-size: 2.1vw;
    }

    #price-plan-main {
        display: flex;
        flex-direction: column;
    }

    .elite-plan {
        display: flex;
        flex-direction: column;
        border: solid .2vw var(--200);
        padding-inline: 9vw;
        row-gap: .5vw;
    }

    .elite-plan-h1 {
        font-size: clamp(7px, 3.3vw, 40px);
        padding-bottom: 3vw;
        padding-top: 2.4vw;
    }

    #elite-plans {
        display: flex;
        flex-direction: column;
    }

    #elite-plans > * {
        width: 100%;
    }
    
    #elite-plans > .card:first-child {
        border-radius:  15px;
    }

    #elite-plans > .card:nth-child(2) {
        border-radius:  15px;
    }
    
    #elite-plans >  .card:nth-child(3) {
        border-radius:  15px;
    }

    .plan-card {
        min-width: 38vw;
        color: var(--gray4);
    }

    .plan-card > * {
        justify-content: center;
    }

    .price-plan-h2 {
        font-size: 4vw;
        width: 64vw;
    }
    
    .price-plan-h3 {
        font-size: 8.4vw;
        margin-block: 4vw;
    }

    .price-plan-h3-currency {
        font-size: 4vw;
        padding-top: .8vw;
        padding-right: .7vw;
    }

    .price-plan-h3-job {
        font-size: 4vw;
        padding-bottom: 1.8vw;
        padding-left: .2vw;
    }

    .price-plan-btn {
        font-size: clamp(5px, 4vw, 23px);
        height: clamp(10px, 7.5vw,60px);
        display: flex;
        align-items: center;
        padding-inline: clamp(10px, 4vw, 30px);
    }

    .price-plan-free-km {
        font-size: 5vw;
        margin-top: 3.5vw;
        margin-bottom: 2vw;
    }

    .price-plan-p-km {
        font-size: 3vw;
    }

    .price-plan-p {
        font-size: 2.9vw;
        padding-inline: 2vw;
    }

    .price-plan-details-currency {
        font-size: 1.8vw;
    }

    .price-plan-details-job {
        font-size: 1.8vw;
    }

    .about-us-section {
        column-gap: 0;
    }

    .about-us-figure {
        margin-inline: 4vw;
    }

    .about-us-img {
        width: 30vw;
    }

    .about-us-h3 {
        font-size: 3vw;
    }

    .about-us-p {
        font-size: 2.5vw;
    }

    .faq-h3 {
        font-size: 3.2vw;
    }

    .faq-footer {
        font-size: 3vw;
    }

    #contact-ul {
        width: 100%;
    }

    .contact-article {
        display: flex;
        flex-direction: column;
        width: inherit;
        max-width: none;
        font-size: 4vw;
    }

    .socialmedia-img {
        width: clamp(3px, 6vw, 40px);
    }

    #socialmedia-image-li{
        padding-top: 2vw;
        padding-bottom: 5vw;
        padding-left: 1vw;
    }

    #rent-form, #voucher-form {
        row-gap: 2vw;
    }

    #contact-form, #rent-form, #voucher-form {
        width: inherit;
        max-width: none;
        box-sizing: border-box; 
    }

    #elite-plan-btn {
        border-radius: 10px;
    }

    #voucher {
        padding-top: 5vw;
        flex-wrap: wrap;
    }

    #voucher-glassmorphism::before {
        width: 140px;
        height: 140px;
        top: -50px;
        left: -50px;
    }

    #voucher-glassmorphism::after {
        width: 30vw;
        height: 30vw;
        bottom: -20px;
        right: -65px;
    }
}

@media only screen and (orientation: landscape) and (max-width: 899px) {
    .App-title {
        left: clamp(140px, 25vmin, 230px);
    }

    h4 {
        font-size: clamp(15px, 3.5vmin, 18px);
    }
}