body {
	background: #fcfcf7;
	font-family: 'PT Serif', serif;
	color: #333;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

a {
	color: #333;
	text-decoration: underline;
}

a:hover {
	color: #666;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'PT Sans', Arial, sans-serif;
}

h1 {
	margin-top: 0;
}

.container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
	width: 100%;
}

/* Gallery styles */
.gallery-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slideshow-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slideshow-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
	opacity: 1;
}

/* Content styles */
.content-section {
	padding: 3rem;
	overflow-y: auto;
	height: 100vh;
	box-sizing: border-box;
}

.logo-container {
	margin-bottom: 1rem;
}

.logo-container img {
	max-width: 364px;
	height: auto;
}

.accommodation-title {
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-bottom: 2rem;
	color: #333;
}

/* Modal styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.7);
}

.modal-content {
	background-color: #fefefe;
	margin: 2em auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 600px;
	position: relative;
}

.close {
	color: #aaa;
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
}

.enquiry-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
}

.enquiry-form .full-width {
	grid-column: 1 / span 2;
}

.enquiry-form input,
.enquiry-form textarea {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
}

.enquiry-form textarea {
	height: 150px;
}

.form-info {
	font-size: 0.9em;
	margin: 0 0 8px 0;
	color: #666;
}

.enquiry-form .radio-group {
	display: flex;
	align-items: center;
}

.enquiry-form .radio-group input {
	width: auto;
	margin-right: 5px;
}

.enquiry-form button {
	padding: 10px 20px;
	background-color: #333;
	color: white;
	border: none;
	cursor: pointer;
}

.booking-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #333;
	color: white;
	text-decoration: none;
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: 400;
	letter-spacing: 2px;
}

.social-icon {
	display: inline-block;
	padding: 10px;
	background-color: transparent;
	color: #333;
	text-decoration: none;
	text-align: center;
	margin-top: 24px;
	margin-left: 5px;
	cursor: pointer;
	font-size: 24px;
}

.instagram-icon:hover {
	color: #C13584;
}

/* Thank you popup styles */
.thank-you-modal {
	z-index: 1100; /* Higher than the booking modal */
}

.thank-you-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 400px;
	position: relative;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.thank-you-message {
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.5;
	color: #333;
	margin: 20px 0;
}

.thank-you-close {
	color: #aaa;
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
}

.thank-you-close:hover,
.thank-you-close:focus {
	color: black;
	text-decoration: none;
}

/* Responsive styles */
/* Large screens - improve readability by limiting content width */
@media (min-width: 1280px) {
	/* Ensure paragraphs have optimal line length for readability */
	p, b {
		max-width: 70ch; /* approximately 70 characters per line */
	}
	
	/* Keep content section at a reasonable width */
	.content-section {
		max-width: 1000px;
	}
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1279px) {
	/* Ensure paragraphs have optimal line length for readability */
	p, b {
		max-width: 65ch; /* slightly shorter than large screens */
	}
}

/* Small screens */
@media (max-width: 768px) {
	.container {
		grid-template-columns: 1fr;
	}
	
	.gallery-section {
		height: 50vh;
	}
	
	.content-section {
		height: auto;
		padding: 2rem;
	}
	
	.thank-you-content {
		width: 90%;
		margin: 30% auto;
	}
}
