/* Property Hero */
.property-hero {
	padding: 3rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.property-title-section {
	margin-bottom: 2rem;
}

.property-hero h1 {
	font-size: 3rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.property-location {
	font-size: 1.2rem;
	color: #666;
}

.main-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 1rem;
}

/* Property Info Section */
.property-info {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	padding: 3rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.property-description {
	line-height: 1.8;
	font-size: 1.1rem;
	color: #444;
}

.property-description p {
	margin-bottom: 1.5rem;
}

.booking-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 2rem;
	height: fit-content;
}

.booking-card h3 {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.booking-details {
	margin-bottom: 1.5rem;
}

.booking-details p {
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.btn {
	width: 100%;
	padding: 1rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background: #6b5d52;
	color: white;
	margin-bottom: 1rem;
}

.btn-primary:hover {
	background: #5a4d44;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: transparent;
	color: #6b5d52;
	border: 2px solid #6b5d52;
	margin-bottom: 1rem;
}

.btn-secondary:hover {
	background: #6b5d52;
	color: white;
}

/* Photo Gallery Section */
.photo-gallery-section {
	padding: 4rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 3rem;
}

.room-category {
	margin-bottom: 4rem;
}

.category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	cursor: pointer;
	padding: 1rem 0;
	border-bottom: 2px solid #d9d3ca;
}

.category-header:hover h3 {
	color: #6b5d52;
}

.category-header h3 {
	font-size: 1.8rem;
	font-weight: 400;
	transition: color 0.3s ease;
}

.toggle-icon {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.toggle-icon.open {
	transform: rotate(180deg);
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.photo-grid.open {
	max-height: 2000px;
	margin-top: 1.5rem;
}

.photo-grid img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.photo-grid img:hover {
	transform: scale(1.05);
}

/* Amenities Section */
.amenities-section {
	padding: 4rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	margin-bottom: 4rem;
}

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 2rem;
}

.amenity-category h4 {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 1rem;
	color: #6b5d52;
}

.amenity-list {
	list-style: none;
}

.amenity-list li {
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #444;
}

.amenity-list li::before {
	content: "✓";
	color: #6b5d52;
	font-weight: bold;
}

/* Modal for full-size images */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
}

.modal.active {
	display: flex;
}

.modal-content {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.close-modal {
	position: absolute;
	top: 2rem;
	right: 3rem;
	color: white;
	font-size: 3rem;
	cursor: pointer;
	z-index: 1001;
}

.close-modal:hover {
	opacity: 0.7;
}

/* CTA Section */
.cta-section {
	background: #d9d3ca;
	padding: 4rem;
	text-align: center;
	margin-top: 4rem;
}

.cta-section h2 {
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.cta-buttons .btn {
	width: auto;
	padding: 1rem 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.property-hero,
	.property-info,
	.photo-gallery-section,
	.amenities-section {
		padding: 2rem;
	}

	.property-info {
		grid-template-columns: 1fr;
	}

	.booking-card {
		position: static;
	}

	.amenities-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.photo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.property-hero h1 {
		font-size: 2rem;
	}

	.main-image {
		height: 300px;
	}

	.amenities-grid {
		grid-template-columns: 1fr;
	}

	.photo-grid {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 100%;
		max-width: 300px;
	}
}