/*
Theme Name: FTL Custom
Theme URI: https://ftlcustom.com
Author: FTL Custom
Author URI: https://ftlcustom.com
Description: A custom WordPress theme for FTL Custom.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ftl-custom
*/

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

a {
	color: #1a73e8;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

/* Header */

.site-header {
	background: #1a1a2e;
	color: #fff;
	padding: 16px 0;
	position: relative;
	z-index: 10;
}

.site-header.is-front-page {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.site-title {
	font-size: 1.5rem;
	font-weight: 700;
}

.site-title a {
	color: #fff;
}

.site-title a:hover {
	text-decoration: none;
	color: #a0a0cc;
}

/* Navigation */

.primary-navigation ul {
	list-style: none;
	display: flex;
	gap: 24px;
}

.primary-navigation a {
	color: #ccc;
	font-size: 0.9375rem;
	font-weight: 500;
	padding: 4px 0;
}

.primary-navigation a:hover {
	color: #fff;
	text-decoration: none;
}

.primary-navigation .current-menu-item a,
.primary-navigation .current_page_item a {
	color: #fff;
}

.site-logo-link {
	display: block;
	color: #fff;
	width: 40px;
}

.crown-icon {
	width: 40px;
	height: 36px;
}

/* Hero */

.hero {
	position: relative;
	min-height: 100vh;
	background: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&q=80') center/cover no-repeat;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.5) 50%, rgba(26,26,46,0.1) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 60px;
	max-width: 1140px;
	margin: 0 auto;
	padding: 120px 20px 80px;
	width: 100%;
}

.hero-left {
	flex: 1;
	min-width: 0;
	color: #fff;
}

.hero-tagline {
	font-size: 0.9375rem;
	font-style: italic;
	color: #ccc;
	margin-bottom: 16px;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 16px;
	letter-spacing: -1px;
}

.hero-subtitle {
	font-size: 1.125rem;
	color: #ddd;
	margin-bottom: 32px;
	max-width: 420px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-right {
	flex: 1;
	min-width: 0;
}

.hero-map-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	background: #fff;
}

.hero-map-wrapper iframe {
	display: block;
	width: 100%;
	height: 400px;
}

.hero-info-card {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #fff;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	max-width: 280px;
	z-index: 3;
}

.hero-info-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 12px;
}

.hero-schedule {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.hero-schedule li {
	padding: 3px 0;
	font-size: 0.875rem;
	color: #444;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-schedule .icon {
	font-size: 1rem;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.hero-info-text {
	font-size: 0.8125rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.hero-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	line-height: 0;
}

.hero-wave svg {
	width: 100%;
	height: 80px;
	display: block;
}

/* Who We Are */

.who-we-are {
	background: #fdf0ed;
	padding: 80px 0;
}

.who-we-are-grid {
	display: flex;
	gap: 60px;
	align-items: center;
}

.who-we-are-text {
	flex: 1;
	min-width: 0;
}

.who-we-are-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 24px;
}

.who-we-are-header h2 {
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
}

.find-out-more {
	font-weight: 600;
	color: #1a73e8;
	white-space: nowrap;
}

.who-we-are-text p {
	margin-bottom: 16px;
	color: #444;
	line-height: 1.7;
}

.who-we-are-image {
	flex: 1;
	min-width: 0;
}

.who-we-are-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
}

/* We Are */

.we-are {
	padding: 80px 0;
	background: #fff;
}

.we-are-title {
	text-align: center;
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 48px;
}

.we-are-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.we-are-card {
	text-align: center;
	padding: 24px 16px;
}

.we-are-icon {
	font-size: 2.5rem;
	margin-bottom: 16px;
}

.we-are-card p {
	color: #555;
	font-size: 0.9375rem;
	line-height: 1.5;
}

/* Highlights */

.highlights {
	padding: 80px 0;
	background: #fff;
}

.highlights-title {
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 40px;
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.highlight-card {
	border-radius: 8px;
	overflow: hidden;
	background: #f9f9f9;
}

.highlight-placeholder {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}

.highlight-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.5rem;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.highlight-meta {
	padding: 16px;
}

.highlight-meta p {
	margin: 0 0 4px;
	font-size: 0.875rem;
	color: #333;
}

.highlight-desc {
	color: #666 !important;
	font-size: 0.8125rem !important;
	line-height: 1.5;
}

/* Get In Touch */

.get-in-touch {
	padding: 80px 0;
	background: #fdf0ed;
}

.touch-grid {
	display: flex;
	gap: 60px;
	align-items: center;
}

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

.touch-text h2 {
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 16px;
}

.touch-text > p {
	color: #666;
	margin-bottom: 24px;
	line-height: 1.7;
}

.touch-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.touch-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	color: #333;
	font-size: 0.9375rem;
	text-decoration: none;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
	width: fit-content;
}

.touch-link:hover {
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.touch-social {
	display: flex;
	gap: 12px;
}

.touch-qr {
	flex-shrink: 0;
}

.touch-qr img {
	width: 260px;
	height: 260px;
	border-radius: 12px;
}

/* Footer */

.site-footer {
	background: #1a1a2e;
	color: #aaa;
	padding: 60px 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 24px;
}

.footer-logo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.footer-links h4,
.footer-socials h4 {
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-navigation ul li {
	margin-bottom: 8px;
}

.footer-navigation ul a {
	color: #aaa;
	font-size: 0.9375rem;
	text-decoration: none;
}

.footer-navigation ul a:hover {
	color: #fff;
}

.footer-socials a {
	display: block;
	color: #aaa;
	font-size: 0.9375rem;
	text-decoration: none;
	margin-bottom: 8px;
}

.footer-socials a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 24px;
	text-align: center;
	font-size: 0.8125rem;
}

.footer-bottom p {
	margin: 0;
}

/* Footer */

.site-footer {
	background: #1a1a2e;
	color: #aaa;
	padding: 32px 0;
	margin-top: 60px;
	text-align: center;
	font-size: 0.875rem;
}

.site-footer a {
	color: #ccc;
}

.site-footer a:hover {
	color: #fff;
}

.footer-navigation ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

/* Content Area */

.site-main {
	padding: 48px 0;
}

.site-main .container {
	display: flex;
	gap: 40px;
}

.content-area {
	flex: 1;
	min-width: 0;
}

/* Widget Area */

.widget-area {
	width: 300px;
	flex-shrink: 0;
}

.widget {
	margin-bottom: 32px;
}

.widget-title {
	font-size: 1.125rem;
	margin-bottom: 12px;
	color: #1a1a2e;
}

.widget ul {
	list-style: none;
}

.widget ul li {
	padding: 4px 0;
}

/* Pages */

.entry-header {
	margin-bottom: 24px;
}

.entry-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.2;
}

.entry-content p {
	margin-bottom: 16px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: #1a1a2e;
	margin-top: 32px;
	margin-bottom: 12px;
	line-height: 1.2;
}

.entry-content h2 { font-size: 1.5rem; }
.entry-content h3 { font-size: 1.25rem; }

.entry-content ul,
.entry-content ol {
	margin: 0 0 16px 24px;
}

.entry-content li {
	margin-bottom: 4px;
}

/* Front Page */

.front-page-hero {
	background: #1a1a2e;
	color: #fff;
	text-align: center;
	padding: 80px 20px;
	margin-bottom: 48px;
}

.front-page-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 16px;
}

.front-page-hero p {
	font-size: 1.125rem;
	color: #a0a0cc;
	max-width: 600px;
	margin: 0 auto;
}

/* 404 */

.error-404 {
	text-align: center;
	padding: 80px 20px;
}

.error-404 h1 {
	font-size: 2rem;
	margin-bottom: 16px;
}

/* Search */

.search-form {
	display: flex;
	gap: 8px;
	max-width: 400px;
	margin: 16px auto 0;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
}

.search-form input[type="submit"] {
	padding: 10px 20px;
	background: #1a73e8;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
}

.search-form input[type="submit"]:hover {
	background: #1557b0;
}

/* Buttons */

.button,
.wp-block-button__link {
	display: inline-block;
	padding: 12px 24px;
	background: #1a73e8;
	color: #fff;
	border-radius: 4px;
	font-weight: 500;
}

.button:hover,
.wp-block-button__link:hover {
	background: #1557b0;
	text-decoration: none;
	color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
	.site-main .container {
		flex-direction: column;
	}

	.widget-area {
		width: 100%;
	}

	.site-header .container {
		flex-direction: column;
		text-align: center;
	}

	.primary-navigation ul {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}

	.front-page-hero {
		padding: 48px 20px;
	}

	.front-page-hero h1 {
		font-size: 1.75rem;
	}

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

	.hero-content {
		flex-direction: column;
		padding: 120px 20px 100px;
	}

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

	.hero-map-wrapper iframe {
		height: 300px;
	}

	.hero-info-card {
		position: relative;
		top: auto;
		right: auto;
		border-radius: 0;
		max-width: 100%;
	}

	.who-we-are-grid {
		flex-direction: column;
	}

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

	.highlights-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
	}

	.touch-grid {
		flex-direction: column;
		text-align: center;
	}

	.touch-links {
		align-items: center;
	}

	.touch-social {
		justify-content: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
