/* BBG Hotel Showcase - public styles
 *
 * Modern, mobil öncelikli grid ve detay layout'u.
 */

.bbg-hotels-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}

.bbg-hotel-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bbg-hotel-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.bbg-hotel-card__image-wrap {
	display: block;
	position: relative;
	overflow: hidden;
}

.bbg-hotel-card__image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.bbg-hotel-card:hover .bbg-hotel-card__image {
	transform: scale(1.05);
}

.bbg-hotel-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bbg-hotel-card__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #0f172a;
	margin: 0;
}

.bbg-hotel-card__location {
	font-size: 0.9rem;
	color: #64748b;
}

.bbg-hotel-card__excerpt {
	font-size: 0.9rem;
	color: #475569;
	margin-top: 0.25rem;
}

/* Detay sayfası: konum alanı */
.bbg-detail-intro-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-start;
}
.bbg-detail-intro-content {
	flex: 1;
	min-width: 0;
}

.bbg-hotel-card__footer {
	margin-top: 0.75rem;
}

.bbg-hotel-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #0ea5e9, #6366f1);
	color: #ffffff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	box-shadow: 0 10px 20px rgba(56, 189, 248, 0.25);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bbg-hotel-card__button:hover {
	box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
	transform: translateY(-1px);
}

.bbg-hotel-detail {
	max-width: 1120px;
	margin: 0 auto;
	padding: 1.5rem 1rem 2.5rem;
}

@media (min-width: 768px) {
	.bbg-hotel-detail {
		padding: 2rem 1rem 3rem;
	}
}

/* Hero: tek kapak görseli */
.bbg-hotel-detail__hero {
	margin-bottom: 1.5rem;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}
.bbg-hotel-detail__hero-image {
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

@media (min-width: 768px) {
	.bbg-hotel-detail__hero-image {
		max-height: 520px;
	}
}

/* Otel galerisi slider */
.bbg-hotel-detail__gallery {
	margin-top: 2.5rem;
}

.bbg-gallery-wrap {
	position: relative;
}

.bbg-hotel-detail__slider {
	position: relative;
	margin-bottom: 0.75rem;
	border-radius: 18px;
	overflow: visible;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}
.bbg-hotel-detail__slider .bbg-hotel-swiper {
	border-radius: 18px;
	overflow: hidden;
}

.bbg-hotel-swiper {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}

.bbg-hotel-swiper__slide {
	min-width: 100%;
	scroll-snap-align: start;
	cursor: pointer;
}

.bbg-hotel-swiper__image {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

/* Pagination: küçük yuvarlaklar, temaya uygun soft mavi */
.bbg-hotel-detail .bbg-gallery-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	flex-wrap: wrap;
}
/* Tema/Elementor buton stillerini ezip kesin yuvarlak yapıyoruz */
.bbg-hotel-detail .bbg-gallery-pagination .bbg-gallery-dot,
button.bbg-gallery-dot {
	width: 8px !important;
	height: 8px !important;
	min-width: 8px !important;
	min-height: 8px !important;
	max-width: 8px !important;
	max-height: 8px !important;
	border-radius: 50% !important;
	border: none !important;
	background: rgba(125, 211, 252, 0.5) !important;
	cursor: pointer;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box;
	appearance: none;
	transition: background 0.2s, transform 0.2s;
}
.bbg-hotel-detail .bbg-gallery-pagination .bbg-gallery-dot:hover,
button.bbg-gallery-dot:hover {
	background: rgba(56, 189, 248, 0.7) !important;
	transform: scale(1.2);
}
.bbg-hotel-detail .bbg-gallery-pagination .bbg-gallery-dot.is-active,
button.bbg-gallery-dot.is-active {
	background: #38bdf8 !important;
	transform: scale(1.25);
}

@media (min-width: 768px) {
	.bbg-gallery-wrap {
		max-width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
	.bbg-hotel-swiper__image {
		height: 320px;
	}
}

/* Lightbox modal */
.bbg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3rem 1rem 5rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
}
.bbg-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}
.bbg-lightbox__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1.5rem;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
	transition: background 0.2s;
}
.bbg-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.25);
}
.bbg-lightbox__img-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	cursor: grab;
	user-select: none;
	touch-action: pan-y;
}
.bbg-lightbox__img-wrap:active {
	cursor: grabbing;
}
.bbg-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 120px);
	width: auto;
	height: auto;
	object-fit: contain;
}
.bbg-lightbox__counter {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 500;
}

/* Oda galerisi (yatay kaydırma) */
.bbg-hotel-room__gallery {
	margin: 0.75rem 0;
	border-radius: 12px;
	overflow: hidden;
	background: #f8fafc;
}
.bbg-room-swiper {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 0.5rem;
	padding: 0.5rem;
	-webkit-overflow-scrolling: touch;
}
.bbg-room-swiper__slide {
	flex-shrink: 0;
	scroll-snap-align: start;
	cursor: pointer;
	transition: opacity 0.2s;
}
.bbg-room-swiper__slide:hover {
	opacity: 0.9;
}
.bbg-room-swiper__slide .bbg-room-swiper__image {
	pointer-events: none;
}
.bbg-room-swiper__image {
	width: 180px;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
}

@media (min-width: 768px) {
	.bbg-room-swiper__image {
		width: 220px;
		height: 150px;
	}
}

.bbg-hotel-detail__title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
	.bbg-hotel-detail__title {
		font-size: 2rem;
	}
}

.bbg-hotel-detail__location-line {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}
.bbg-hotel-detail__summary {
	color: #475569;
	font-size: 0.98rem;
}

.bbg-hotel-detail__section {
	margin-top: 2rem;
}

.bbg-hotel-detail__heading {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: #0f172a;
}

.bbg-hotel-detail__address {
	font-size: 0.95rem;
	color: #475569;
}

.bbg-hotel-detail__map iframe {
	width: 100%;
	min-height: 260px;
	border: 0;
	border-radius: 16px;
}

@media (min-width: 768px) {
	.bbg-hotel-detail__map iframe {
		min-height: 360px;
	}
}

.bbg-hotel-boards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.25rem;
}

.bbg-hotel-board {
	background: #ffffff;
	border-radius: 14px;
	padding: 1rem 1.25rem;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.bbg-hotel-board__title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.4rem;
}

.bbg-hotel-board__details,
.bbg-hotel-board__alcohol {
	font-size: 0.9rem;
	color: #475569;
}

.bbg-hotel-rooms {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.bbg-hotel-rooms {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.bbg-hotel-room {
	background: #ffffff;
	border-radius: 14px;
	padding: 1rem 1.25rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.bbg-hotel-room__title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
}

.bbg-hotel-room__meta {
	font-size: 0.85rem;
	color: #64748b;
	margin-bottom: 0.35rem;
}

.bbg-hotel-room__desc,
.bbg-hotel-room__features {
	font-size: 0.9rem;
	color: #475569;
}

.bbg-hotel-amenities {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.bbg-hotel-amenities__item {
	font-size: 0.85rem;
	color: #0f172a;
	background: #e0f2fe;
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
}

.bbg-hotel-video,
.bbg-hotel-video-embed iframe {
	width: 100%;
	max-height: 420px;
	border-radius: 16px;
	border: 0;
}

