/* Reset ve Temel Stiller */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Preloader Stilleri */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loader {
	text-align: center;
}

.loader-circle {
	width: 50px;
	height: 50px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid #2c5aa0;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

.loader-text {
	font-size: 18px;
	font-weight: 500;
	color: #2c5aa0;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Header Stilleri */
.header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2c5aa0;
}

.logo a {
	text-decoration: none;
	color: inherit;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #2c5aa0;
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #2c5aa0;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #333;
	transition: 0.3s;
}

/* Hero Section */
.hero-video-section {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

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

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4); /* karartma efekti */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 2;
	color: white;
	padding: 0 15px;
}

.hero-content {
	max-width: 800px;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 1.8rem;
	}
	.hero-subtitle {
		font-size: 1rem;
	}
}

/* Button Stilleri */
.btn {
	display: inline-block;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: #ff6b35;
	color: white;
}

.btn-primary:hover {
	background: #e55a2b;
	transform: translateY(-2px);
}

.btn-secondary {
	background: #2c5aa0;
	color: white;
}

.btn-secondary:hover {
	background: #1e3d72;
	transform: translateY(-2px);
}

/* Section Stilleri */
.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: #2c5aa0;
}

.page-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
	text-align: center;
}

.page-header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c5aa0;
	margin-bottom: 1rem;
}

.page-header p {
	font-size: 1.2rem;
	color: #666;
}

/* Rooms Section */
.rooms-section {
	padding: 80px 0;
}

.rooms-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.room-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.room-image {
	position: relative;
	overflow: hidden;
}

.room-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
	transform: scale(1.05);
}

.room-content {
	padding: 1.5rem;
}

.room-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #2c5aa0;
}

.room-description {
	color: #666;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.room-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.feature {
	background: #f8f9fa;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	color: #666;
}

.room-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ff6b35;
	margin-bottom: 1rem;
}

/* Skeleton Loading */
.skeleton-container .skeleton {
	animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-image {
	width: 100%;
	height: 250px;
	background: #e2e8f0;
	border-radius: 4px;
}

.skeleton-content {
	padding: 1.5rem;
}

.skeleton-title {
	height: 20px;
	background: #e2e8f0;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

.skeleton-text {
	height: 16px;
	background: #e2e8f0;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

.skeleton-text:last-of-type {
	width: 70%;
}

.skeleton-button {
	height: 40px;
	width: 80px;
	background: #e2e8f0;
	border-radius: 4px;
	margin-top: 1rem;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

/* Locations Section */
.locations-section {
	background: #f8f9fa;
	padding: 80px 0;
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.location-item {
	text-align: center;
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.location-item:hover {
	transform: translateY(-5px);
}

.location-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.location-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #2c5aa0;
}

.location-item p {
	color: #666;
}

/* Map Section */
.map-section {
	padding: 80px 0;
}

.map-container {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Room Detail */
.room-detail-section {
	padding: 80px 0;
}

.room-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.room-detail-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 10px;
}

.room-detail-info h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c5aa0;
	margin-bottom: 1rem;
}

.room-detail-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 2rem;
}

.room-detail-features {
	margin-bottom: 2rem;
}

.room-detail-features h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c5aa0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
	background: #f8f9fa;
	border-radius: 5px;
}

.room-detail-price {
	font-size: 2rem;
	font-weight: 700;
	color: #ff6b35;
	margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-form-container h2,
.contact-info h2 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #2c5aa0;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #e2e8f0;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2c5aa0;
}

.contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.contact-icon {
	font-size: 1.5rem;
	width: 40px;
	text-align: center;
}

.contact-details h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #2c5aa0;
}

.contact-details p {
	color: #666;
	margin-bottom: 0.3rem;
}

/* Footer */
.footer {
	background: #2c5aa0;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
}

.footer-section p {
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: white;
	text-decoration: none;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
	opacity: 1;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0.8;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
	.rooms-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.locations-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.room-detail-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.rooms-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.room-content {
		padding: 1rem;
	}

	.locations-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.location-item {
		padding: 1.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 60px 0;
	}

	.hero-title {
		font-size: 1.5rem;
	}

	.page-header {
		padding: 60px 0;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.rooms-section,
	.locations-section,
	.map-section,
	.contact-section,
	.room-detail-section {
		padding: 60px 0;
	}

	.room-features {
		flex-direction: column;
		gap: 0.3rem;
	}

	.feature {
		text-align: center;
	}
}

/* Animasyonlar */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Form Validation */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
	border-color: #dc3545;
}

.error-message {
	color: #dc3545;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

/* Success Message */
.success-message {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 5px;
	margin-bottom: 1rem;
	border: 1px solid #c3e6cb;
}