
/* Rooms */

.room-number {
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #000;
}

.price-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background-color: #f35525;
	color: #fff;
	padding: 6px 12px;
	font-weight: bold;
	font-size: 14px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	z-index: 2;
}

/* Masaüstü görünümü */
.main-image .item {
	width: 100%;
	height: 100%;
	max-height: 640px;
	max-width: 850px;
}

.main-image .item img {
	width: 850px !important;
	height: 640px !important;
	object-fit: cover;
	display: block;
}

/* Tablet görünümü (768px altı) */
@media (max-width: 991.98px) {
	.main-image .item {
		max-width: 100%;
		max-height: 480px;
	}
	.main-image .item img {
		width: 100% !important;
		height: 480px !important;
	}
}

/* Mobil görünümü (576px altı) */
@media (max-width: 575.98px) {
	.main-image .item {
		max-width: 100%;
		max-height: 300px;
	}
	.main-image .item img {
		width: 100% !important;
		height: 300px !important;
	}
}



/* Blog */

 .custom-card {
	 border: none;
	 border-radius: 10px;
	 overflow: hidden;
	 transition: transform 0.3s, box-shadow 0.3s;
	 background-color: #fafafa;
 }

.custom-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.custom-card-img {
	border-radius: 10px 10px 0 0;
	height: 200px;
	object-fit: cover;
}

.custom-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.custom-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.custom-card-text {
	font-size: 14px;
	line-height: 1.6;
	color: #4a4a4a;
	flex-grow: 1;
}

.custom-text-muted {
	color: #aaa !important;
	font-size: 0.875rem;
}

.custom-btn {
	background-color: #1e1e1e;
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
	margin-top: 15px;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.custom-btn:hover {
	background-color: #f35525;
	color: #fff;
	text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 767px) {
	.custom-card-img {
		height: 150px;
	}
}

@media (max-width: 992px) {
	.custom-card-img {
		height: 180px;
	}
}


/* Blog Detail */

 .blog-detail {
	 background-color: #fafafa;
	 border-radius: 10px;
	 overflow: hidden;
	 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	 padding: 20px;
 }

 .blog-detail img{
	 width: 100% !important;
	 height: 500px !important;
 }

.blog-detail-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.blog-detail-body {
	padding: 30px;
}

.blog-detail-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.blog-detail-meta {
	color: #aaa;
	font-size: 0.9rem;
	margin-bottom: 25px;
	display: block;
}

.blog-detail-content {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #4a4a4a;
	margin-bottom: 30px;
}

.back-to-blogs {
	display: inline-block;
	background-color: #1e1e1e;
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s;
	text-decoration: none;
}

.back-to-blogs:hover {
	background-color: #f35525;
	color: #fff;
}

/* Diğer blog kartları için basit stil */
.other-blog-card {
	box-shadow: 0 6px 15px rgba(0,0,0,0.1);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
	background-color: #fff;
}

.other-blog-card:hover {
	transform: translateY(-5px);
}

.other-blog-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.other-blog-card-body {
	padding: 15px 20px;
}

.other-blog-card-title {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.other-blog-card-date {
	font-size: 0.85rem;
	color: #888;
	margin-bottom: 12px;
}

.other-blog-card-link {
	font-weight: 500;
	color: #0d6efd;
	text-decoration: none;
}

.other-blog-card-link:hover {
	text-decoration: underline;
}


/* Whatsapp start */
 .floating-social {
	 position: fixed;
	 top: 40%;
	 left: 0;
	 transform: translateY(-50%);
	 display: flex;
	 flex-direction: column;
	 z-index: 1000;
 }

.floating-social a {
	width: 50px;
	height: 50px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 22px;
}

.floating-social a.whatsapp {
	background-color: #25D366;
	border-radius: 0 8px 0 0;
}

.floating-social a.phone {
	background-color: #007BFF;
	border-radius: 0 0 8px 0;
}

.floating-social a:hover {
	transform: translateX(10px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
/* Whatsapp end */


/* Reservation */

 .reservation-box {
	 background-color: #fff;
	 border-radius: 10px;
	 max-width: 600px;
	 margin: 40px auto;
	 padding: 30px 40px;
	 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

.reservation-title {
	text-align: center;
	font-size: 24px;
	color: #333;
	margin-bottom: 25px;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #333;
}

input[type="text"],
select {
	width: 100%;
	padding: 10px 14px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

input[type="text"]:focus,
select:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 5px #007bff;
}

.submit-wrapper {
	margin-top: 30px;
}

.submit-btn {
	background-color: #f35525;
	color: white;
	text-align: center;
	padding: 14px;
	border-radius: 7px;
	font-size: 18px;
	cursor: pointer;
	font-weight: 600;
	border: none;
	width: 100%;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
	background-color: #d9441b;
	box-shadow: 0 4px 8px rgba(243, 85, 37, 0.4);
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: #333;
}

.form-control {
	width: 100%;
	padding: 10px 14px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
	background-color: #f9f9f9;
	color: #333;
}

.form-control[readonly] {
	background-color: #f1f1f1;
	cursor: not-allowed;
}

.form-control:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 5px #007bff;
}



/* Reservation Confirmation Disabled İnput*/

 input:disabled {
	 cursor: not-allowed;
	 background-color: #e9ecef;
	 color: #6c757d;
 }



.blog-error-info-text-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
}
