body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #fff;
}

/* ============================================================
   ENTERTAINMENT CARDS
   ============================================================ */
.ent-review-box {
	background: #e6f7ff;
	color: #222;
	border-radius: 14px;
	margin: 8px 12px 0 12px;
	padding: 4px 8px;
	font-size: 0.85rem;
	box-shadow: 0 2px 8px rgba(0,207,232,0.07);
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 24px;
}
@media (max-width: 900px) {
	.ent-review-box {
		margin: 6px 4px 0 4px;
		padding: 2px 4px;
		font-size: 0.75rem;
	}
}

.ent-slideshow-container {
	position: relative;
	width: 320px;
	height: 260px;
	flex-shrink: 0;
	background: #eafaff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.ent-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: opacity 0.3s;
}
.ent-slide-prev,
.ent-slide-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 207, 232, 0.85);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	font-size: 1.7rem;
	cursor: pointer;
	z-index: 2;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.ent-slide-prev { left: 12px; }
.ent-slide-next { right: 12px; }
.ent-slide-prev:hover,
.ent-slide-next:hover {
	background: #00bfff;
}
@media (max-width: 900px) {
	.ent-slideshow-container {
		width: 100%;
		height: 200px;
		min-width: unset;
	}
}

.ent-cards {
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
	align-items: center;
	margin: 40px auto 48px auto;
	max-width: 1200px;
}
.ent-card {
	display: flex;
	flex-direction: row;
	background: #f4faff;
	border-radius: 24px;
	box-shadow: 0 6px 24px rgba(0,207,232,0.13);
	overflow: hidden;
	width: 700px;
	min-height: 260px;
	transition: transform 0.18s, box-shadow 0.18s;
}
.ent-card:hover {
	transform: translateY(-8px) scale(1.03);
	border: 4px solid #00bfff;
	box-shadow: 0 0 0 6px #00e0ff33, 0 12px 36px rgba(0,207,232,0.18);
}
.ent-card-img {
	width: 320px;
	height: 260px;
	object-fit: cover;
	border-radius: 0;
}
.ent-card-content {
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}
.ent-card-content h2 {
	margin: 0 0 14px 0;
	font-size: 2.1rem;
	color: #00cfe8;
}
.ent-card-content p {
	margin: 0 0 18px 0;
	color: #222;
	font-size: 1.18rem;
}
.ent-btn {
	margin-top: auto;
	background: #00cfe8;
	color: #fff;
	text-decoration: none;
	padding: 14px 0;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1.15rem;
	text-align: center;
	transition: background 0.18s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	display: block;
	width: 180px;
}
.ent-btn:hover {
	background: #009db3;
}
@media (max-width: 900px) {
	.ent-card {
		flex-direction: column;
		width: 95%;
		min-height: unset;
		max-width: 420px;
	}
	.ent-card-img {
		width: 100%;
		height: 200px;
	}
	.ent-card-content {
		padding: 24px 16px;
	}
}

/* ============================================================
   ACCOMMODATION
   ============================================================ */
.accom-hero {
	text-align: center;
	padding: 48px 20px 24px 20px;
	background: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.01));
}
.accom-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #222;
	letter-spacing: 1px;
}
.accom-subtitle {
	font-size: 1.3rem;
	color: #00cfe8;
	margin-bottom: 12px;
	font-weight: 600;
}
.accom-desc {
	font-size: 1.1rem;
	color: #444;
	max-width: 600px;
	margin: 0 auto 24px auto;
}
.accom-cards {
	display: flex;
	gap: 32px;
	justify-content: center;
	align-items: stretch;
	margin: 0 auto 48px auto;
	max-width: 1100px;
	flex-wrap: wrap;
}
.accom-card {
	background: #f9f9f9;
	border-radius: 18px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.10);
	overflow: hidden;
	width: 350px;
	display: flex;
	flex-direction: column;
	transition: transform 0.18s, box-shadow 0.18s;
}
.accom-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px rgba(0,207,232,0.13);
}
.accom-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}
.accom-card-content {
	padding: 24px 20px 28px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.accom-card-content h2 {
	margin: 0 0 8px 0;
	font-size: 1.5rem;
	color: #00cfe8;
}
.accom-card-content p {
	margin: 0 0 12px 0;
	color: #333;
	font-size: 1.05rem;
}
.accom-btn {
	margin-top: auto;
	background: #00cfe8;
	color: #fff;
	text-decoration: none;
	padding: 12px 0;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	transition: background 0.18s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	display: block;
}
.accom-btn:hover {
	background: #009db3;
}
@media (max-width: 900px) {
	.accom-cards {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	.accom-card {
		width: 95%;
		max-width: 400px;
	}
}

/* ============================================================
   CONTAINER & HEADER
   ============================================================ */
.container {
	background: #fff;
	max-width: 1500px;
	margin: 20px auto;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
	position: relative;
	border: 8px solid #00cfe8;
}
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px 40px 16px 40px;
	background: transparent;
}
.header .logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bold;
	font-size: 2rem;
	color: #00cfe8;
}
.header .logo img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.lang-toggle {
	background: linear-gradient(135deg, #00cfe8, #009db3);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 207, 232, 0.25);
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	margin: 0;
	z-index: 3;
}

.lang-toggle:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 207, 232, 0.32);
	background: linear-gradient(135deg, #00ddf7, #008ea3);
}

.lang-toggle:active {
	transform: translateY(0);
}
.header .nav {
	display: flex;
	gap: 40px;
	align-items: center;
	position: relative;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	width: 30px;
	height: 30px;
	justify-content: space-between;
	position: relative;
}

.nav-toggle span {
	width: 100%;
	height: 3px;
	background: #222;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
	display: flex;
	gap: 40px;
}

.header .nav a {
	text-decoration: none;
	color: #222;
	font-weight: 500;
	font-size: 1.2rem;
	transition: color 0.2s;
}

.header .nav a.active,
.header .nav a:hover {
	color: #00ffea;
	font-weight: 700;
}

@media (max-width: 900px) {
	.header {
		flex-direction: row;
		justify-content: space-between;
		padding: 16px 20px;
	}

	.lang-toggle {
		order: 1;
		padding: 8px 14px;
		font-size: 0.95rem;
	}
	
	.nav-toggle {
		order: 2;
		display: flex;
	}
	
	.nav-menu {
		order: 3;
		display: none;
		position: fixed;
		top: 72px;
		right: 16px;
		background: #fff;
		border-radius: 12px;
		box-shadow: 0 4px 20px rgba(0,0,0,0.15);
		padding: 20px;
		flex-direction: column;
		gap: 16px;
		min-width: 200px;
		z-index: 99999;
		border: 2px solid #00cfe8;
	}
	
	.nav-menu.active {
		display: flex !important;
		opacity: 1 !important;
		visibility: visible !important;
	}
	
	.header .nav a {
		font-size: 1.1rem;
		padding: 8px 12px;
		border-radius: 8px;
		transition: all 0.2s;
	}
	
	.header .nav a:hover {
		background: #f4faff;
		color: #00cfe8;
	}
}

@media (max-width: 600px) {
	.header {
		padding: 12px 16px;
	}

	.lang-toggle {
		padding: 7px 12px;
		font-size: 0.88rem;
	}
	
	.nav-menu {
		right: 16px;
		left: 16px;
		top: 64px;
		min-width: auto;
	}
	
	.header .logo {
		font-size: 1.5rem;
	}
}

/* ============================================================
   HERO / MAIN CONTENT
   ============================================================ */
.main-content {
	display: flex;
	flex-direction: row;
	position: relative;
	min-height: 600px;
	background: #000;
	border-radius: 0 0 16px 16px;
	overflow: hidden;
}

.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero {
	flex: 1 1 60%;
	padding: 80px 0 80px 80px;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.18);
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
	position: relative;
}
.hero h1 {
	font-size: 4rem;
	font-weight: 700;
	margin: 0 0 18px 0;
	line-height: 1.1;
}
.hero h1 span {
	color: #00cfe8;
	font-size: 2.5rem;
	font-weight: 600;
}
.hero p {
	font-size: 1.3rem;
	margin-bottom: 32px;
	max-width: 520px;
}
.find-btn {
	background: #00cfe8;
	color: #fff;
	border: none;
	border-radius: 40px;
	padding: 24px 0;
	font-size: 1.4rem;
	font-weight: 600;
	width: 80%;
	margin: 40px 0 0 0;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: background 0.2s;
	display: block;
	text-align: center;
}
.find-btn:hover {
	background: #009db3;
}
.gallery {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 60px 40px 0 0;
	align-items: flex-end;
	z-index: 2;
}
.gallery img {
	width: 220px;
	height: 140px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
	border: 4px solid #fff;
	transition: transform 0.2s, box-shadow 0.2s;
}
.gallery img:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
	.main-content {
		flex-direction: column;
		min-height: 700px;
	}
	.hero {
		padding: 40px 20px;
	}
	.gallery {
		flex-direction: row;
		margin: 20px auto 0 auto;
		justify-content: center;
	}
}
@media (max-width: 600px) {
	.main-content { min-height: 500px; }
	.hero h1 { font-size: 2rem; }
	.gallery img { width: 100px; height: 70px; }
	.find-btn { width: 100%; padding: 16px 0; font-size: 1rem; }
}

/* ============================================================
   RESTAURANT CARDS
   ============================================================ */
body.restaurants-page {
	font-family: 'Arial', sans-serif;
	background-color: #f2f2f5;
	color: #1c1c1c;
}
.subtitle {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #007bff;
	margin-bottom: 0.5rem;
}
.description {
	max-width: 600px;
	margin: 0 auto;
	color: #555;
}
#restaurant-container {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}
.card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	border-radius: 24px;
	overflow: hidden;
	background: white;
	transition: all 0.4s ease;
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
	min-height: 420px;
}
.card.reverse { flex-direction: row-reverse; }
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}
.card-images {
	flex: 1;
	position: relative;
	overflow: hidden;
	min-height: 100%;
}
.card-images img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.card-images img.active {
	opacity: 1;
	transform: scale(1.05);
}
.dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}
.dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,0.6);
	backdrop-filter: blur(6px);
	transition: all 0.3s ease;
}
.dot.active {
	background: #00cfe8;
	transform: scale(1.3);
}
.card-text {
	flex: 1;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.card-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.card-text p { margin-bottom: 1.2rem; color: #555; line-height: 1.6; }
.card-text span {
	display: inline-block;
	margin-bottom: 0.7rem;
	color: #00cfe8;
	font-weight: bold;
	padding: 6px 14px;
	border-radius: 20px;
	background: rgba(0, 207, 232, 0.08);
	transition: 0.3s ease;
}
.card-text span:hover { background: #00cfe8; color: white; }
.card-text p.phone { font-weight: 600; color: #222; margin-bottom: 1rem; }
.rating-container { display: flex; align-items: center; gap: 16px; }
.rating-container .rest-btn {
	margin-top: 0;
	padding: 8px 16px;
	font-size: 1rem;
	display: inline-block;
}
@media (max-width: 900px) {
	.card, .card.reverse {
		flex-direction: column;
		min-height: auto;
	}
	.card-images {
		height: 300px;
		border-radius: 24px 24px 0 0;
	}
	.card.reverse .card-images { border-radius: 24px 24px 0 0; }
	.rating-container { flex-direction: row; justify-content: flex-start; }
}
footer { text-align: center; padding: 2rem 1rem; color: #555; }

.rest-btn {
	margin-top: auto;
	background: #00cfe8;
	color: #fff;
	text-decoration: none;
	padding: 12px 0;
	border-radius: 30px;
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	transition: background 0.18s;
	box-shadow: 0 2px 8px rgba(109,83,83,0.07);
	display: block;
	cursor: pointer;
}
.rest-btn:hover { background: #009db3; }

.rest-hero {
	text-align: center;
	padding: 48px 20px 24px 20px;
	background: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.01));
}
.rest-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #222;
	letter-spacing: 1px;
}
.rest-desc {
	font-size: 1.1rem;
	color: #444;
	max-width: 600px;
	margin: 0 auto 24px auto;
}

/* ============================================================
   SLIDESHOW CONTAINER (accom / shared)
   ============================================================ */
.slideshow-container {
	position: relative;
	width: 100%;
	height: 180px;
}
.slideshow-container .slide-img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 0;
}
.slideshow-container .slide-prev,
.slideshow-container .slide-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 207, 232, 0.8);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 2;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.slideshow-container .slide-prev { left: 10px; }
.slideshow-container .slide-next { right: 10px; }
.slideshow-container .slide-prev:hover,
.slideshow-container .slide-next:hover {
	background: #009db3;
}

/* ============================================================
   STADIUMS
   ============================================================ */
.stadium-hero,
.stadium-hero-img {
	background: linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.5)), url('assets/stadium.photos/stadiumphotos1.webp') center/cover no-repeat;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
}
.stadium-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 40px 0 40px;
	background: transparent;
}
.stadium-logo { font-weight: bold; font-size: 2rem; letter-spacing: 1px; }
.stadium-nav { display: flex; gap: 40px; }
.stadium-nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.2rem;
	transition: color 0.2s;
}
.stadium-nav a.active,
.stadium-nav a:hover { color: #00ffea; font-weight: 700; }
.stadium-hero-content { margin-top: 60px; }
.stadium-hero-content h1 { font-size: 4rem; font-weight: 700; margin-bottom: 18px; }
.stadium-hero-content p {
	font-size: 1.4rem;
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.stadium-hero-btns { display: flex; gap: 24px; justify-content: center; margin-bottom: 40px; }
.stadium-btn {
	border-radius: 30px;
	padding: 18px 40px;
	font-weight: 600;
	font-size: 1.2rem;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
	transition: background 0.18s, color 0.18s;
	display: inline-block;
}
.stadium-btn-primary { background: #00cfe8; color: #fff; }
.stadium-btn-primary:hover { background: #009db3; }
.stadium-btn-secondary { background: #fff; color: #00cfe8; }
.stadium-btn-secondary:hover { background: #e6f7ff; color: #009db3; }
.stadium-features {
	display: flex;
	justify-content: center;
	gap: 60px;
	background: #fff;
	padding: 48px 0 32px 0;
	max-width: 1200px;
	margin: -60px auto 0 auto;
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
	position: relative;
	z-index: 2;
}
.stadium-feature { text-align: center; max-width: 220px; }
.stadium-feature-icon { font-size: 2.5rem; color: #00cfe8; margin-bottom: 12px; }
.stadium-feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.stadium-feature p { color: #444; font-size: 1rem; }
.stadium-venue-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	background: #fff;
	max-width: 1200px;
	margin: 48px auto 0 auto;
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
	padding: 40px 32px;
}
.stadium-venue-img { flex: 1 1 350px; min-width: 320px; max-width: 500px; }
.stadium-venue-img img {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.10);
	object-fit: cover;
}
.stadium-venue-content { flex: 2 1 400px; min-width: 320px; max-width: 600px; }
.stadium-venue-content h2 { font-size: 2.2rem; color: #00cfe8; margin-bottom: 18px; }
.stadium-venue-content p { color: #222; font-size: 1.15rem; margin-bottom: 18px; }
@media (max-width: 900px) {
	.stadium-hero-content h1 { font-size: 2.2rem; }
	.stadium-hero-content p { font-size: 1rem; }
	.stadium-features { flex-direction: column; gap: 24px; }
	.stadium-venue-section { flex-direction: column; padding: 24px 8px; }
	.stadium-venue-img, .stadium-venue-content { min-width: 0; max-width: 100%; }
}

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.about-hero {
	text-align: center;
	padding: 48px 20px 24px 20px;
	background: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.01));
}
.about-title { font-size: 3rem; font-weight: 700; margin-bottom: 8px; color: #222; letter-spacing: 1px; }
.about-title span { color: #00cfe8; }
.about-desc { font-size: 1.2rem; color: #555; max-width: 700px; margin: 0 auto 24px auto; }
.team-cards {
	display: flex;
	gap: 32px;
	justify-content: center;
	align-items: stretch;
	margin: 0 auto 48px auto;
	max-width: 1200px;
	flex-wrap: wrap;
}
.team-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.10);
	overflow: hidden;
	width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 16px 28px 16px;
	transition: transform 0.18s, box-shadow 0.18s;
	border-bottom: 4px solid #00cfe8;
}
.team-card-featured { border-bottom: 4px solid #222; box-shadow: 0 8px 32px rgba(0,207,232,0.13); }
.team-card img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 18px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.team-card h2 { margin: 0 0 8px 0; font-size: 1.3rem; color: #00cfe8; }
.team-card p { margin: 0; color: #333; font-size: 1.05rem; text-align: center; }
.about-process {
	background: #f4faff;
	border-radius: 18px;
	box-shadow: 0 4px 18px rgba(0,207,232,0.07);
	max-width: 700px;
	margin: 0 auto 48px auto;
	padding: 32px 32px 24px 32px;
	text-align: center;
}
.about-process h2 { color: #00cfe8; font-size: 2rem; margin-bottom: 18px; }
.about-process ol { text-align: left; margin: 0 auto 18px auto; max-width: 400px; color: #444; font-size: 1.1rem; }
.about-fun { color: #222; font-size: 1.15rem; margin-top: 18px; }
@media (max-width: 900px) {
	.team-cards { flex-direction: column; align-items: center; gap: 24px; }
	.team-card { width: 95%; max-width: 340px; }
}
.local-section {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.local-title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.local-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: black;
  display: block;
  margin: 10px auto 0;
}
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-section p {
  margin-bottom: 30px;
  color: #555;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-form {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-btn {
  padding: 12px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #555;
}

.contact-info {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  margin: 5px 0;
}

.social-links a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
}

.social-links a:hover {
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  padding: 24px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #00cfe8;
  text-decoration: underline;
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  color: #00cfe8;
}

.footer-copy {
  color: #666;
  font-size: 13px;
  margin: 0;
}

.scroll-to-top {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  color: #666;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top:hover {
  border-color: #00cfe8;
  color: #00cfe8;
  box-shadow: 0 2px 8px rgba(0,207,232,0.2);
}

@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
  }
  
  .footer-links {
    gap: 16px;
    text-align: center;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .scroll-to-top {
    position: static;
    transform: none;
    margin-top: 10px;
  }
}

/* ============================================================
   VORA DESCRIPTION SECTION
   ============================================================ */
.vora-description {
  background: #f4faff;
  padding: 60px 40px;
  margin: 0;
}

.vora-desc-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.vora-desc-text {
  flex: 1;
  min-width: 0;
}

.vora-desc-text h2 {
  font-size: 2.5rem;
  color: #00cfe8;
  margin-bottom: 24px;
  font-weight: 700;
}

.vora-desc-text p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vora-desc-image {
  flex: 1;
  min-width: 0;
}

.vora-desc-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 207, 232, 0.18);
  object-fit: cover;
}

@media (max-width: 900px) {
  .vora-description {
    padding: 40px 20px;
  }
  
  .vora-desc-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .vora-desc-text h2 {
    font-size: 2rem;
  }
  
  .vora-desc-text p {
    font-size: 1.1rem;
  }
}

.day-in-vora {
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  padding: 60px 40px 70px 40px;
}

.day-in-vora-header {
  max-width: 900px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.day-in-vora-header h2 {
  font-size: 2.4rem;
  color: #00cfe8;
  margin-bottom: 16px;
  font-weight: 700;
}

.day-in-vora-header p {
  font-size: 1.12rem;
  color: #333;
  line-height: 1.7;
}

.day-in-vora-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.day-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #00cfe8;
}

.day-time {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 207, 232, 0.12);
  color: #009db3;
  font-weight: 700;
  font-size: 0.95rem;
}

.day-card h3 {
  font-size: 1.35rem;
  color: #222;
  margin-bottom: 12px;
}

.day-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

@media (max-width: 900px) {
  .vora-description {
    padding: 40px 20px;
  }
  
  .vora-desc-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .vora-desc-text h2 {
    font-size: 2rem;
  }
  
  .vora-desc-text p {
    font-size: 1.1rem;
  }

  .day-in-vora {
    padding: 40px 20px 50px 20px;
  }

  .day-in-vora-header h2 {
    font-size: 2rem;
  }

  .day-in-vora-grid {
    grid-template-columns: 1fr;
  }
}