/*----------------------------------------*/
/* Site extensions on top of the Tulen theme
   Colors match sass/_varriable.scss:
   primary #2916e0 | heading #252525 | body copy #636363 | font Montserrat
/*----------------------------------------*/

:root {
	--primary: #2916e0;
	--heading: #252525;
	--p-color: #636363;
	--white: #fff;
	--border: #ececec;
}

.site-logo-text span {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}

.sm-contact {
	padding: 0 40px 20px;
	color: #ccc;
	font-size: 13px;
}
.sm-contact p { margin-bottom: 6px; color: #ccc; }
.sm-contact i { color: var(--primary); margin-right: 6px; }

/* ---------- Home intro ---------- */
.home-intro {
	padding: 70px 0 20px;
}
.home-intro h2 { margin-bottom: 15px; }
.home-intro p { max-width: 640px; }
.home-intro .profile-btn { margin-top: 10px; }

.section-title {
	margin-bottom: 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.section-title h4 {
	font-size: 28px;
	position: relative;
	padding-bottom: 12px;
}
.section-title h4::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 50px; height: 3px;
	background: var(--primary);
}
.section-title.text-center { flex-direction: column; align-items: center; text-align: center; }
.section-title.text-center h4::after { left: 50%; transform: translateX(-50%); }
.section-title p { margin-top: 8px; }
.section-title .view-all {
	color: var(--primary);
	font-weight: 600;
	font-size: 14px;
}
.section-title .view-all i { margin-left: 5px; }

/* ---------- Home featured gallery ---------- */
.home-gallery { padding: 40px 0 80px; }
.home-gallery-item {
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}
.home-gallery-item a { display: block; position: relative; }
.home-gallery-item img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	transition: transform .4s ease;
}
.home-gallery-item:hover img { transform: scale(1.08); }
.hg-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 10px 14px;
	background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
	opacity: 0;
	transition: opacity .3s ease;
}
.home-gallery-item:hover .hg-overlay { opacity: 1; }
.hg-overlay span {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ---------- Pricing ---------- */
.home-pricing { padding: 40px 0 90px; background: #fafafa; }
.pricing-section { padding: 140px 0 100px; }
.price-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 35px 28px;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	transition: box-shadow .3s ease, transform .3s ease;
	height: 100%;
}
.price-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.price-card.popular { border-color: var(--primary); box-shadow: 0 15px 40px rgba(41,22,224,.12); }
.price-badge {
	position: absolute;
	top: -13px; left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.price-card h5 { margin-bottom: 12px; font-size: 19px; }
.price-amount {
	font-size: 34px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 14px;
}
.price-amount span {
	font-size: 13px;
	font-weight: 400;
	color: var(--p-color);
}
.price-card p { font-size: 14px; margin-bottom: 18px; }
.price-features {
	list-style: none;
	text-align: left;
	margin-bottom: 24px;
}
.price-features li {
	font-size: 13.5px;
	color: var(--p-color);
	padding: 6px 0;
	border-bottom: 1px dashed var(--border);
}
.price-features li i { color: var(--primary); margin-right: 8px; }
.price-btn {
	display: inline-block;
	padding: 11px 26px;
	background: var(--heading);
	color: #fff;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	transition: background .3s ease;
}
.price-btn:hover { background: var(--primary); color: #fff; }
.pricing-note { margin-top: 20px; font-size: 14px; }

/* ---------- Booking / contact form ---------- */
.booking-section { padding: 90px 0; }
.booking-form { max-width: 900px; margin: 0 auto; }
.form-group { margin-bottom: 22px; text-align: left; }
.form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 3px;
	padding: 12px 14px;
	font-size: 14px;
	color: var(--heading);
	font-family: 'Montserrat', sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
}
.booking-feedback {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
}
.booking-feedback.success { color: #1b9e5a; }
.booking-feedback.error { color: #d63031; }
#booking-submit { border: none; cursor: pointer; }
#booking-submit[disabled] { opacity: .6; cursor: not-allowed; }

/* ---------- Footer ---------- */
.site-footer {
	background: #151515;
	color: #b7b7b7;
	padding: 60px 40px 0;
}
.sf-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}
.sf-col h4 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.sf-col p { color: #9c9c9c; font-size: 14px; }
.sf-social { margin-top: 18px; }
.sf-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px; height: 34px;
	border: 1px solid #333;
	border-radius: 50%;
	color: #b7b7b7;
	margin-right: 8px;
	transition: all .3s ease;
}
.sf-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.sf-links, .sf-contact { list-style: none; }
.sf-links li, .sf-contact li { margin-bottom: 12px; font-size: 14px; color: #9c9c9c; }
.sf-links a { color: #9c9c9c; transition: color .3s ease; }
.sf-links a:hover { color: var(--primary); }
.sf-contact i { color: var(--primary); margin-right: 8px; width: 14px; }
.sf-bottom {
	border-top: 1px solid #262626;
	text-align: center;
	padding: 20px 0;
	font-size: 13px;
	color: #7a7a7a;
}
@media (max-width: 768px) {
	.sf-inner { grid-template-columns: 1fr; }
	.site-footer { padding: 50px 20px 0; }
}

/* ---------- 404 ---------- */
.not-found-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.not-found-page h1 { font-size: 100px; color: var(--primary); }

/* ---------- Admin panel ---------- */
body.admin-body {
	padding-left: 0;
	background: #f4f5f7;
	font-family: 'Montserrat', sans-serif;
}
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
	width: 240px;
	background: #151515;
	color: #ccc;
	flex-shrink: 0;
	padding: 25px 0;
}
.admin-sidebar .as-logo {
	padding: 0 25px 25px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	border-bottom: 1px solid #262626;
	margin-bottom: 15px;
}
.admin-sidebar .as-logo span { color: var(--primary); }
.admin-sidebar nav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 25px;
	color: #b7b7b7;
	font-size: 14px;
	transition: all .2s ease;
	border-left: 3px solid transparent;
}
.admin-sidebar nav a:hover { color: #fff; background: rgba(255,255,255,.03); }
.admin-sidebar nav a.active {
	color: #fff;
	background: rgba(41,22,224,.15);
	border-left-color: var(--primary);
}
.admin-sidebar .as-badge {
	background: #e0392e;
	color: #fff;
	font-size: 11px;
	border-radius: 10px;
	padding: 1px 7px;
	margin-left: auto;
}
.admin-main { flex: 1; min-width: 0; }
.admin-topbar {
	background: #fff;
	border-bottom: 1px solid #e6e6e6;
	padding: 18px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.admin-topbar h1 { font-size: 20px; margin: 0; }
.admin-topbar .at-user { font-size: 13px; color: var(--p-color); }
.admin-topbar .at-user a { color: var(--primary); margin-left: 10px; }
.admin-content { padding: 30px; }

.admin-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.admin-card {
	background: #fff;
	border-radius: 6px;
	padding: 22px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.admin-card h3 { font-size: 30px; margin-bottom: 5px; color: var(--heading); }
.admin-card p { font-size: 13px; color: var(--p-color); margin: 0; text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 992px) { .admin-cards { grid-template-columns: repeat(2, 1fr); } }

.admin-panel {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	padding: 25px;
	margin-bottom: 25px;
}
.admin-panel h2 { font-size: 17px; margin-bottom: 18px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.admin-table th, .admin-table td {
	text-align: left;
	padding: 12px 10px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}
.admin-table th { color: var(--p-color); text-transform: uppercase; font-size: 11.5px; letter-spacing: .5px; }
.admin-table img.thumb { width: 55px; height: 55px; object-fit: cover; border-radius: 4px; }
.admin-table .row-unread { background: #fff7ec; }

.btn {
	display: inline-block;
	border: none;
	border-radius: 3px;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: .3px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #1e0fb8; color: #fff; }
.btn-danger { background: #fdecea; color: #d63031; }
.btn-danger:hover { background: #d63031; color: #fff; }
.btn-light { background: #f1f1f1; color: var(--heading); }
.btn-light:hover { background: #e2e2e2; }
.btn-sm { padding: 6px 12px; font-size: 12px; }

.admin-flash { padding: 12px 16px; border-radius: 4px; margin-bottom: 18px; font-size: 14px; }
.admin-flash.success { background: #e6f8ee; color: #1b9e5a; }
.admin-flash.error { background: #fdecea; color: #d63031; }

.upload-drop {
	border: 2px dashed #d3d3f0;
	border-radius: 6px;
	padding: 30px;
	text-align: center;
	background: #fafaff;
	margin-bottom: 20px;
	cursor: pointer;
	transition: border-color .2s ease;
}
.upload-drop:hover, .upload-drop.dragover { border-color: var(--primary); }
.upload-drop p { margin: 8px 0 0; color: var(--p-color); font-size: 13px; }
.upload-drop i { font-size: 28px; color: var(--primary); }
#photo-file-input { display: none; }

.upload-list { margin-top: 16px; }
.upload-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font-size: 13px;
	border-bottom: 1px solid #f0f0f0;
}
.upload-row .up-bar {
	flex: 1;
	height: 6px;
	background: #eee;
	border-radius: 4px;
	overflow: hidden;
}
.upload-row .up-bar-fill {
	height: 100%;
	width: 0%;
	background: var(--primary);
	transition: width .2s ease;
}
.upload-row .up-status { width: 90px; text-align: right; color: var(--p-color); }

.login-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #151515;
}
.login-box {
	background: #fff;
	border-radius: 8px;
	padding: 40px 35px;
	width: 100%;
	max-width: 380px;
}
.login-box h2 { text-align: center; margin-bottom: 5px; }
.login-box .login-sub { text-align: center; color: var(--p-color); font-size: 13px; margin-bottom: 25px; }
.login-box .form-group { margin-bottom: 18px; }
.login-box button { width: 100%; padding: 12px; }

.form-row-inline { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; }
.checkbox-inline { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.checkbox-inline input { width: auto; }

.live-dot {
	display: inline-block;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #2ecc71;
	margin-right: 6px;
	animation: pulse 1.5s infinite;
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(46,204,113,.5); }
	70% { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
	100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
