:root {
	--main-color: #294138;
    --main-color-dark: #122223;
	--secondary-color: #d3b298;
	--header-text-color: white;
	--footer-title-color: #212C64;
	--footer-text-color: #84858b;
	--text-main-color: black;
	--text-link-color: #0056b3;
    --bck-main-color: #fbf6f3;
    --bck-surface-color2: #fcf9f9;
    --header-height: 120px;
    --header-height-mobile: 90px;
}

html, body {
    margin: 0;
    height: 100%;
    min-height: 100vh;
    background-color: var(--bck-main-color);
    color: var(--text-main-color);
	overflow-x: hidden;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

a {
	color: var(--text-link-color);
}
a:hover {
	color: var(--text-link2-color);
}

main {
	padding: 3rem;
	flex: 1;
}

@media (max-width: 450px) {
    main {
        padding: 1rem;
    }
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    gap: 1.2rem;
}

.not-found h1 {
    font-size: 5rem;
    color: var(--main-color);
    margin: 0;
}

.not-found p {
    font-size: 1.2rem;
    max-width: 400px;
}

.not-found-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.not-found-btn:hover {
    opacity: 0.85;
}

.site-footer {
	display: flex;
	flex-direction: column;
    background: white;
	color: var(--footer-text-color);
	margin-top: 5rem;
	padding-top: 5rem;
	padding-left: 15rem;
	padding-right: 15rem;
}

.footer-sections {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section {
  	flex: 1;
}

.footer-section h4 {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-copyright {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 1rem;
	font-size: 0.85rem;
	opacity: 0.6;
	text-align: center;
}

.site-footer {
    background: var(--main-color);
    color: var(--header-text-color);
    margin-top: auto;
}

.footer-sections {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding: 3rem 0;
    gap: 3rem;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col-title {
    color: var(--secondary-color);
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.footer-col a {
    color: var(--header-text-color);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-col a:hover {
    opacity: 1;
}

@media (max-width: 1000px) {
    .footer-sections {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }
	.footer-sections {
		flex-direction: column;
	}
}

.site-header {
    background: var(--main-color);
    display: flex;
    align-items: stretch;
    min-height: var(--header-height);
    height: auto;
    color: var(--text-main-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-email {
    flex: 0 0 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    padding-left: 1.5rem;
    background-color: var(--main-color-dark);
	padding-right: 2rem;
	padding-bottom: 2rem;
	padding-top: 0.9rem;
}

.header-email-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 1.4rem;
    color: white;
}

.header-email span {
    color: var(--secondary-color);
}

.header-nav {
	align-self: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.header-nav a {
	color: var(--secondary-color);
	text-decoration: none;
	font-size: 1.1rem;
}
.header-nav a:hover,
.header-nav:active {
	color: var(--header-text-color);
}

.header-logo {
  	flex: 0 0 auto;
}
.header-logo a,
.header-logo-mobile a {
	color: var(--header-text-color);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.2rem;
}
.header-logo img {
	background: white;
	border-radius: 4px;
	padding: 4px 8px;
    display: block;
    margin: 0.5rem 0;
    height: 80px;
    width: auto;
}

.header-reservation-wrap {
	align-self: stretch;
    flex: 0 0 250px;
    display: flex;
    align-self: stretch;
    margin-left: auto;
}

.header-reservation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
	color: var(--header-text-color);
    text-decoration: none;
    font-weight: 600;
}
.header-reservation {
	color: black;
}
.header-reservation:hover {
	color: black;
  	opacity: 0.85;
}
.header-reservation:active {
 	opacity: 0.7;
}


.header-logo-mobile {
    display: none;
    align-items: center;
    justify-content: left;
    padding-left: 2rem;
}
.header-logo-mobile img {
	background: white;
	border-radius: 4px;
	padding: 3px 6px;
    display: block;
    margin: 0.5rem 0;
    height: 50px;
    width: auto;
}

.mobile-button {
    display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 4px;
	transition: background-color 0.2s;
}
.mobile-button:hover {
  	background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
    position: fixed; 
    inset: 0; 
    z-index: 8800; 
    display: none; 
    background-color: rgb(0,0,0,0.3);
}
.mobile-menu-overlay.active {
    display: block;
}

.menu-icon,
.icon-button {
	width: 48px;
	height: 48px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 66%;
    height: 100%;
    background-color: var(--main-color);
    border-left: 1px solid #333;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9000;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: start;
    overflow-y: scroll;
    min-width: 120px;
}
.sidebar.active {
    transform: translateX(0);
    margin-right: 0.4rem;
}
.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav li {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.sidebar nav li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-redirect {
    display: block;
    padding: 1.5rem 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; 
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    display: block;
    text-decoration: none;
}
.header-redirect:hover {
    text-decoration: underline;
    color: rgb(25,89,5); 
    background-color: rgb(243,244,246);
}

.mobile-menu {
    display: flex;
    align-items: center;
}

@media (max-width: 1100px) {
    .header-email, .header-reservation {
        display: none;
    }
	.site-header {
		padding: 0.1rem 0;
    	min-height: var(--header-height-mobile);
	}
	.header-nav {
		gap: 1rem;
	}
	.header-logo img {
		border-radius: 2px;
		padding: 2px 4px;
		margin: 0.25rem 0;
		height: 60px;
	}
    .header-reservation-wrap {
        flex: 0 0 0;
    }
}

@media (max-width: 700px) {
    .header-nav {
        display: none;
    }
}
@media (max-width: 700px) {
    .mobile-button {
        display: flex;
    }
    .header-logo-mobile {
        display: flex;
    }
}
@media (max-width: 375px) {
    .sidebar.active {
        margin-right: 0.2rem;
    }
    .header-redirect {
        padding: 1.25rem 0.25rem;
        font-weight: 500;
    }
    .header-logo-mobile {
        padding-left: 1rem;
    }
}

.carousel {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -3rem;
}

.carousel-track {
    display: flex;
    overflow: hidden;
}

.carousel-slide {
    position: relative;
    min-width: 100vw;
    width: 100vw;
    flex-shrink: 0;
}

.carousel-img {
    width: 100vw;
    height: auto;
    display: block;
}

.carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem 2rem;
    box-sizing: border-box;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.25));
    pointer-events: none;
}

.carousel-content a,
.carousel-content button {
  pointer-events: auto;
}

.carousel-content h2 {
  font-size: clamp(1.4rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-description {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 480px;
  line-height: 1.5;
  margin: 0 0 2rem 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
}

.carousel-arrow--left { left: 1rem; }
.carousel-arrow--right { right: 1rem; }

.hero-btn {
    background: var(--secondary-color);
    color: var(--main-color-dark);
    padding: 0.6rem 1.6rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
}

@media (max-width: 750px) {
    .hero-description, .carousel-content h2 {
        margin: 0 0 0.25rem;
    }
}
@media (max-width: 450px) {
    .carousel {
        margin-top: -2rem;
    }
    .carousel-content h2 {
        font-weight: 500;
        line-height: 1;
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }
    .hero-description {
        display: none;
    }
    .hero-btn {
        padding: 0.1rem 0.4rem;
        font-weight: 400;
        border-radius: 1px;
    }
}

h1 {
	font-size: 2.6rem;
}

.introduction {
    width: 80%;
    margin: 3rem auto;
	margin-top: 5rem;
}

.introduction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

@media (max-width: 1000px) {
    .introduction-grid {
        grid-template-columns: 1fr;
    }
}

.introduction-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
}

.introduction-logo {
    width: 200px;
    height: 84px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.introduction-top-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

.introduction-top-right h2,
.introduction-top-right a {
    color: var(--main-color);
}
.introduction-top-right p,
.introduction-bottom-left p {
	max-width: 364px;
	text-align: center;
}

.introduction-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

.introduction-bottom-left h1,
.introduction-bottom-left a {
    color: var(--main-color);
}

.introduction-icon {
    width: 40px;
    height: 40px;
}

.offerings {
    width: 80%;
    margin: 3rem auto;
	margin-top: 6rem;
}

.offerings-title {
    text-align: center;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.offerings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4.5rem;
	justify-content: center;
}

.offering-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 3rem;
    min-height: 300px;
    flex: 1 1 590px;
	max-width: calc(40% - 0.75rem);
    border: 1px solid gray;
}

@media (max-width: 1000px) {
	.offerings {
		width: 100%;
		margin: 2rem auto;
	}

	.offerings-grid {
		gap: 0.5rem;
	}

	.offering-card {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.offering-icon {
    width: 80px;
    height: auto;
	margin-bottom: 2rem;
}

.offering-card h3 {
    color: var(--main-color);
    margin: 0;
}

.offering-card p {
    margin: 0;
}

/* Book */
.book-page {
    padding: 2rem;
}

.book-page h1,
.book-page span {
    text-align: center;
}

.page-intro {
    text-align: center;
    align-items: center;
}

.book-iframe {
    display: flex;
    justify-content: center;
    margin-top: 200px;
    padding-top: 20px;
    border: 0.5px dotted gray;
}

.f-h1 {
    text-align: center;
}
.sub-h1 {
    font-size: 1rem;
}

.sub-f3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 2rem;
}
.su-f3 {
    font-size: 1.2rem;
    font-weight: 550;
    margin-top: 1.5rem;
}

.information-reservation-widget {
    width: 600px;
    min-width: 50%;
    max-width: 800px;
    height: 250px;
    max-height: 300px;
}

.information-prices {
    margin-top: 5rem;
    margin-bottom: 10rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1000px) {
    .information-prices {
        width: 100%;
    }
}

.prices-list {
    list-style: circle;
    margin-bottom: 1rem;
}

.contact-intro {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.pages-about, .pages-imprint {
    width: 70%;
    margin: 5rem auto;
}

@media (max-width: 1000px) {
    .contact-intro, .pages-about, .pages-imprint {
        width: 95%;
    }
}
