:root {
	--bg-dark: #050508;
	--bg-card: #0d0d14;
	--bg-panel: #11111a;
	--color-pink: #ff007f;
	--color-pink-glow: rgba(255, 0, 127, 0.6);
	--color-cyan: #00f0ff;
	--color-cyan-glow: rgba(0, 240, 255, 0.6);
	--color-blue: #4050ff;
	--color-blue-glow: rgba(64, 80, 255, 0.6);
	--text-white: #ffffff;
	--text-muted: #8a8a9d;
	--font-display: 'Playfair Display', serif;
	--font-sans: 'Inter', sans-serif;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--bg-dark);
	color: var(--text-white);
	font-family: var(--font-sans);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	margin-top: 0;
	font-weight: 700;
}
.pink-text { color: var(--color-pink); text-shadow: 0 0 10px var(--color-pink-glow); }
.text-cyan { color: var(--color-cyan); }
.text-blue { color: var(--color-blue); }
.text-pink { color: var(--color-pink); }
.white-text { color: var(--text-white); }

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-family: var(--font-sans);
}
.btn-solid-pink {
	background-color: var(--color-pink);
	color: #fff;
	box-shadow: 0 0 15px var(--color-pink-glow);
}
.btn-solid-pink:hover {
	box-shadow: 0 0 25px var(--color-pink-glow);
	transform: translateY(-2px);
}
.btn-outline-pink {
	background-color: transparent;
	color: var(--color-pink);
	border: 1px solid var(--color-pink);
	box-shadow: 0 0 10px rgba(255,0,127,0.2) inset, 0 0 10px rgba(255,0,127,0.2);
}
.btn-outline-pink:hover {
	background-color: rgba(255,0,127,0.1);
	box-shadow: 0 0 15px rgba(255,0,127,0.4) inset, 0 0 15px rgba(255,0,127,0.4);
}
.btn-outline-cyan {
	background-color: transparent;
	color: var(--color-cyan);
	border: 1px solid var(--color-cyan);
}
.btn-outline-cyan:hover {
	background-color: rgba(0,240,255,0.1);
	box-shadow: 0 0 15px var(--color-cyan-glow);
}
.btn-gradient-full {
	background: linear-gradient(90deg, var(--color-pink), var(--color-cyan));
	color: #fff;
	width: 100%;
	border: none;
	padding: 16px;
	font-size: 1.1rem;
	margin-top: 20px;
}
.btn-text {
	color: var(--text-white);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}
.btn-text:hover {
	color: var(--color-pink);
}

/* Header */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 20px 40px;
	background: linear-gradient(to bottom, rgba(5,5,8,0.9), transparent);
	backdrop-filter: blur(5px);
}
.header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-branding .logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 1px;
}
.logo-icon {
	width: 20px;
	height: 20px;
	background-color: var(--color-pink);
	margin-right: 10px;
	border-radius: 2px;
	box-shadow: 0 0 10px var(--color-pink-glow);
}
.main-navigation ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 30px;
}
.main-navigation a {
	text-decoration: none;
	color: var(--text-muted);
	font-size: 0.9rem;
	transition: color 0.3s;
}
.main-navigation a:hover { color: #fff; }

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 0 40px;
	padding-top: 80px;
}
.hero-background {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: -1;
	overflow: hidden;
}
.hero-background .bg-img {
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0.4;
	filter: blur(2px);
}
.hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to bottom, transparent, var(--bg-dark));
}
.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.hero-title {
	font-size: 5rem;
	line-height: 1.1;
	margin-bottom: 20px;
}
.hero-subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 500px;
	margin-bottom: 40px;
}
.hero-actions {
	display: flex;
	gap: 20px;
}
.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 20px;
}
.stat-item {
	display: flex;
	flex-direction: column;
}
.stat-number {
	color: var(--color-cyan);
	font-size: 2rem;
	font-weight: 700;
	font-family: var(--font-display);
	text-shadow: 0 0 10px var(--color-cyan-glow);
}
.stat-label {
	color: var(--text-muted);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Sections Global (Removed to prevent restricting full-width layouts) */

/* Rooms Section */
.rooms-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.room-card {
	background: var(--bg-card);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}
.room-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px rgba(255,0,127,0.2);
	border-color: rgba(255,0,127,0.5);
}
.room-card.border-blue:hover {
	box-shadow: 0 0 20px var(--color-blue-glow);
	border-color: rgba(64,80,255,0.5);
}
.room-image { position: relative; height: 200px; }
.room-image img { width: 100%; height: 100%; object-fit: cover; }
.guest-badge {
	position: absolute; top: 15px; right: 15px;
	background: rgba(0,0,0,0.7);
	padding: 5px 10px; border-radius: 4px;
	font-size: 0.75rem; color: #fff;
}
.room-details { padding: 25px; }
.room-details h3 { font-size: 1.5rem; margin-bottom: 15px; }
.room-features {
	list-style: none; padding: 0; margin: 0 0 20px 0;
	color: var(--text-muted); font-size: 0.9rem;
}
.room-features li { margin-bottom: 8px; padding-left: 20px; position: relative; }
.room-features li::before {
	content: '✓'; position: absolute; left: 0; color: var(--color-pink);
}
.room-footer { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 1.5rem; font-weight: 700; color: #fff; }
.per-hour { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.book-link { text-decoration: none; color: var(--color-pink); font-weight: 600; font-size: 0.9rem; }

/* Booking Section */
.booking-widget {
	background: var(--bg-panel);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 12px;
	display: flex;
	overflow: hidden;
}
.booking-form-area { padding: 40px; flex: 2; border-right: 1px solid rgba(255,255,255,0.05); }
.booking-summary-area { padding: 40px; flex: 1; background: rgba(0,0,0,0.2); }
.form-row { display: flex; gap: 20px; }
.form-group { margin-bottom: 25px; flex: 1; }
.form-group label {
	display: block; margin-bottom: 10px; font-size: 0.85rem;
	color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
}
.neon-input {
	width: 100%; padding: 12px 15px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.1);
	color: #fff; border-radius: 4px;
	font-family: var(--font-sans);
	transition: border-color 0.3s;
	box-sizing: border-box;
}
.neon-input:focus { outline: none; border-color: var(--color-pink); box-shadow: 0 0 10px rgba(255,0,127,0.2); }
.neon-slider { width: 100%; accent-color: var(--color-pink); }
.summary-list { list-style: none; padding: 0; margin: 0 0 30px 0; }
.summary-list li { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.95rem; }
.summary-list .label { color: var(--text-muted); }
.total-price { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.total-price .label { font-size: 1.2rem; font-weight: 600; }
.total-price .val { font-size: 2rem; color: var(--color-pink); font-family: var(--font-display); font-weight: 700; text-shadow: 0 0 10px var(--color-pink-glow); }

/* Packages Section */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.package-card {
	padding: 40px 30px;
	background: var(--bg-card);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 8px; position: relative;
	transition: all 0.3s;
}
.package-card.border-pink { border-color: rgba(255,0,127,0.4); box-shadow: 0 0 15px rgba(255,0,127,0.1); }
.package-card.border-pink:hover { border-color: var(--color-pink); box-shadow: 0 0 25px rgba(255,0,127,0.3); }
.package-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.package-price { margin-bottom: 30px; }
.price-val { font-size: 2.5rem; font-family: var(--font-display); font-weight: 700; color: #fff; }
.price-suffix { font-size: 0.9rem; color: var(--text-muted); }
.popular-badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--color-pink); color: #fff;
	padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
	box-shadow: 0 0 10px var(--color-pink-glow);
}
.package-features { list-style: none; padding: 0; margin: 0 0 40px 0; color: var(--text-muted); }
.package-features li { margin-bottom: 12px; padding-left: 20px; position: relative; }
.package-features li::before { content: '✓'; position: absolute; left: 0; color: var(--color-cyan); }

/* Footer */
.site-footer {
	border-top: 1px solid rgba(255,255,255,0.05);
	padding: 80px 40px 40px;
	margin-top: 50px;
}
.footer-container {
	max-width: 1200px; margin: 0 auto;
	display: flex; justify-content: space-between;
}
.footer-title { font-size: 3rem; margin-bottom: 30px; }
.contact-info { list-style: none; padding: 0; margin: 0; }
.contact-info li { display: flex; gap: 15px; margin-bottom: 20px; color: var(--text-muted); align-items: flex-start; }
.contact-info a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: #fff; }
.large-kanji {
	font-size: 250px;
	line-height: 1;
	color: rgba(255,0,127,0.1);
	font-family: sans-serif;
	text-shadow: 0 0 20px rgba(255,0,127,0.1);
}
.site-info {
	max-width: 1200px; margin: 40px auto 0;
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 20px;
	display: flex; justify-content: space-between;
	color: var(--text-muted); font-size: 0.85rem;
}
.footer-links a { color: var(--text-muted); text-decoration: none; margin-left: 20px; }
.footer-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 992px) {
	.hero-content { flex-direction: column; align-items: flex-start; }
	.hero-stats { margin-top: 40px; }
	.rooms-grid, .packages-grid { grid-template-columns: repeat(2, 1fr); }
	.booking-widget { flex-direction: column; }
}
@media (max-width: 768px) {
	.hero-title { font-size: 3.5rem; }
	.rooms-grid, .packages-grid { grid-template-columns: 1fr; }
	.footer-container { flex-direction: column; }
	.large-kanji { font-size: 150px; margin-top: 40px; }
	.form-row { flex-direction: column; gap: 0; }
}

/* Standard Pages & WooCommerce */
.site-main {
	min-height: 60vh;
}
.site-main .entry-header, .site-main .entry-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}
.site-main .entry-title {
	font-size: 3rem;
	margin-bottom: 30px;
}

/* WooCommerce Dark Mode Overrides */
.woocommerce, .woocommerce-page, .wp-block-woocommerce-checkout {
	color: var(--text-white);
}
.woocommerce form .form-row label, .woocommerce-checkout label {
	color: var(--text-white) !important;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-input {
	background: rgba(255,255,255,0.05) !important;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,0.2) !important;
	border-radius: 4px;
}
.woocommerce table.shop_table {
	color: #fff;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
	border-color: rgba(255,255,255,0.1);
}
.woocommerce-checkout #payment, .woocommerce-cart .cart-collaterals .cart_totals {
	background: var(--bg-panel) !important;
	border-radius: 8px;
}
.woocommerce-checkout #payment div.payment_box {
	background: var(--bg-card) !important;
	color: var(--text-muted) !important;
}
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--bg-card) !important;
}
.woocommerce button.button.alt, .woocommerce a.button.alt, .woocommerce input.button.alt {
	background: var(--color-pink) !important;
	color: #fff !important;
	box-shadow: 0 0 10px var(--color-pink-glow) !important;
	transition: all 0.3s;
	border-radius: 4px;
}
.woocommerce button.button.alt:hover {
	box-shadow: 0 0 20px var(--color-pink-glow) !important;
}

/* WordPress Required CSS Classes */
.wp-caption { max-width: 100%; margin-bottom: 1.5em; }
.wp-caption img[class*="wp-image-"] { display: block; margin: 0 auto; max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 0.9em; color: var(--text-muted); }
.gallery-caption { font-size: 0.9em; color: var(--text-muted); }
.sticky { display: block; }
.bypostauthor { display: block; }
.alignright { float: right; margin: 0 0 1em 1em; }
.alignleft { float: left; margin: 0 1em 1em 0; }
.aligncenter { display: block; margin: 0 auto 1em; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
