: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;
}

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

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

/* Header */
.site-header {
    background: var(--main-color);
    display: flex;
    align-items: stretch;
    min-height: 120px;
    height: auto;
    color: var(--header-text-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.3rem;
}

.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 {
	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;
}

.header-reservation:hover {
  	opacity: 0.85;
}

.header-reservation:active {
 	opacity: 0.7;
}

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

/* Small. hide everything 
@media (max-width: 768px) {
    .site-header {
        display: none;
    }
}
*/

/* Footer */
.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;
}

@media (max-width: 768px) {
	.footer-sections {
		flex-direction: column;
	}
}

.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;
    }
}

/* Main content */
main {
	padding: 3rem;
	flex: 1;
}

/* Hero / Carousel */
.carousel {
    position: relative;
    display: flex;
    align-items: center;
    width: 80%;
    margin: 2rem auto;
}

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

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

.carousel-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
	font-size: 1.4rem;
}
.carousel-content h2,
.carousel-content .hero-description {
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-description {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 400px;
}

.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;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow img {
    width: 24px;
    height: 24px;
    filter: brightness(0);
}

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

.carousel-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Introduction */
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;
}

.introduction-img {
    max-width: 1000;
    max-height: 667;
    object-fit: cover;
    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 */
.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;
}

/* Errors */
.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;
}