@charset "utf-8";
/* CSS Document */

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

:root {
	--color-snow: #fafbfc;
	--color-ice: #e8f4f8;
	--color-frost: #d4e9f2;
	--color-winter-blue: #7ba8bd;
	--color-slate: #4a5f6d;
	--color-charcoal: #2c3e50;
	--color-white: #ffffff;
	--font-serif: 'Cormorant Garamond', serif;
	--font-sans: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	background: linear-gradient(135deg, var(--color-snow) 0%, var(--color-ice) 100%);
	color: var(--color-charcoal);
	line-height: 1.6;
	min-height: 100vh;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1.5rem 2rem;
	z-index: 1000;
	border-bottom: 1px solid rgba(123, 168, 189, 0.1);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	font-weight: 300;
	letter-spacing: 2px;
	color: var(--color-slate);
	text-decoration: none;
	transition: color 0.3s ease;
}

.logo:hover {
	color: var(--color-winter-blue);
}

/* Fixed Filter Section */
.filter-container {
	position: fixed;
	top: 95px;
	left: 0;
	width: 100%;
	z-index: 999;
	padding: 0.8rem 1rem;
	margin: 0;
	text-align: center;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(123, 168, 189, 0.1);
}

.filter-buttons {
	display: inline-flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.filter-btn {
	display: inline-block;
	background: none;
	border: none;
	font-family: var(--font-sans);
	font-size: 0.85rem;
	color: var(--color-slate);
	cursor: pointer;
	padding: 0.2rem 0;
	position: relative;
	letter-spacing: 1px;
	text-transform: none;
	font-weight: 300;
	transition: color 0.3s ease;
	line-height: 1.2;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.filter-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 100%;
	height: 1px;
	background: var(--color-winter-blue);
	transition: transform 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	color: var(--color-winter-blue);
}

.filter-btn.active::after {
	transform: translateX(-50%) scaleX(1);
}

/* Scroll offset for fixed nav + filter */
.hero,
.company-intro-section,
.business-section,
.company-info-section,
.message-section,
.shop-section,
.restaurant-section {
	scroll-margin-top: 150px;
}

/* Hero Section */
.hero {
	margin-top: 150px;
	padding: 0 2rem 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(250, 251, 252, 0.85), rgba(232, 244, 248, 0.9));
	z-index: 1;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(123, 168, 189, 0.05) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	animation: heroSlide 18s infinite;
	opacity: 0;
}

.hero-bg:nth-child(1) {
	background-image: url('bg1.jpg');
	animation-delay: 0s;
}

.hero-bg:nth-child(2) {
	background-image: url('bg2.jpg');
	animation-delay: 6s;
}

.hero-bg:nth-child(3) {
	background-image: url('bg3.jpg');
	animation-delay: 12s;
}

@keyframes heroSlide {
	0% { opacity: 0; }
	5% { opacity: 1; }
	33% { opacity: 1; }
	38% { opacity: 0; }
	100% { opacity: 0; }
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
	padding-top: 3rem;
}

.hero h1 {
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.hero p:first-of-type {
	font-size: 0.7rem;
	letter-spacing: 3px;
	color: #999;
}

.hero p:last-of-type {
	font-size: 1rem;
	color: #666;
	line-height: 1.8;
}

/* Company Intro */
.company-intro-section {
	padding: 5rem 2rem;
	background: rgba(255, 255, 255, 0.65);
}

.company-intro-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.company-intro-section h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color-slate);
	margin-bottom: 2rem;
	letter-spacing: 0.08em;
}

.company-intro-section p {
	font-size: 1rem;
	line-height: 2;
	color: var(--color-slate);
	font-weight: 300;
	margin-bottom: 1.5rem;
	letter-spacing: 0.02em;
}

.company-intro-section p:last-child {
	margin-bottom: 0;
}

/* Business Section */
.business-section {
	padding: 5rem 2rem;
	background: rgba(255, 255, 255, 0.45);
}

.business-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.business-section h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color-slate);
	text-align: center;
	margin-bottom: 2.5rem;
	letter-spacing: 0.08em;
}

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

.business-card {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(123, 168, 189, 0.15);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(123, 168, 189, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(123, 168, 189, 0.14);
}

.business-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	background: #fff;
}

.business-image img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* PC */
	display: block;
	margin: 0;
	padding: 0;
}

.business-text {
	padding: 1.5rem;
}

.business-text h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--color-slate);
	margin-bottom: 0.8rem;
	line-height: 1.5;
}

.business-text p {
	font-size: 0.95rem;
	line-height: 1.9;
	color: var(--color-slate);
	font-weight: 300;
	margin: 0;
}

/* Company Info */
.company-info-section {
	padding: 5rem 2rem;
	background: rgba(255, 255, 255, 0.7);
}

.company-info-inner {
	max-width: 900px;
	margin: 0 auto;
}

.company-info-section h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color-slate);
	text-align: center;
	margin-bottom: 2.5rem;
	letter-spacing: 0.08em;
}

.company-info-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.company-info-table th,
.company-info-table td {
	padding: 1.2rem 1rem;
	border-bottom: 1px solid rgba(123, 168, 189, 0.2);
	text-align: left;
	vertical-align: top;
}

.company-info-table th {
	width: 30%;
	font-weight: 400;
	color: var(--color-winter-blue);
	letter-spacing: 0.05em;
}

.company-info-table td {
	color: var(--color-slate);
	font-weight: 300;
	line-height: 1.8;
}

.company-info-table a {
	color: var(--color-slate);
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}

.company-info-table a:hover {
	color: var(--color-winter-blue);
	border-color: var(--color-winter-blue);
}

/* Message Section */
.message-section {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(232,244,248,0.6));
	text-align: center;
}

.message-inner {
	max-width: 800px;
	margin: 0 auto;
}

.message-section h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color-slate);
	margin-bottom: 2.5rem;
	letter-spacing: 0.08em;
}

.message-section p {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.2rem;
	line-height: 2.2;
	color: var(--color-slate);
	font-weight: 300;
	letter-spacing: 0.05em;
}

/* Shop Section */
.shop-section {
	padding: 5rem 2rem;
	background: rgba(255, 255, 255, 0.9);
	text-align: center;
}

.shop-inner {
	max-width: 900px;
	margin: 0 auto;
}

.shop-section h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color-slate);
	margin-bottom: 2.5rem;
	letter-spacing: 0.08em;
}

.shop-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.shop-btn {
	display: inline-block;
	padding: 0.9rem 1.8rem;
	border: 1px solid var(--color-winter-blue);
	border-radius: 30px;
	font-size: 0.95rem;
	color: var(--color-slate);
	text-decoration: none;
	transition: all 0.3s ease;
	background: transparent;
}

.shop-btn:hover {
	background: var(--color-winter-blue);
	color: #fff;
	transform: translateY(-2px);
}

/* Restaurant Section */
.restaurant-section {
	padding: 5rem 2rem;
	background: rgba(255, 255, 255, 0.6);
}

.restaurant-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.restaurant-section h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.2rem;
	font-weight: 500;
	color: var(--color-slate);
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 0.08em;
}

.restaurant-content {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.restaurant-image,
.restaurant-text {
	flex: 1;
}

.restaurant-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

.restaurant-text h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-slate);
}

.restaurant-address {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	color: var(--color-winter-blue);
}

.restaurant-desc {
	font-size: 0.95rem;
	line-height: 1.9;
	margin-bottom: 1.5rem;
	color: var(--color-slate);
}

.restaurant-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
}

.restaurant-links a {
	font-size: 0.9rem;
	color: var(--color-slate);
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}

.restaurant-links a:hover {
	color: var(--color-winter-blue);
	border-color: var(--color-winter-blue);
}

/* Footer */
footer {
	text-align: center;
	padding: 4rem 2rem 3rem;
	margin-top: 4rem;
	border-top: 1px solid rgba(123, 168, 189, 0.1);
}

footer p {
	color: var(--color-winter-blue);
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	font-weight: 300;
}

footer a {
	color: var(--color-winter-blue);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

footer a:hover {
	opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		margin-top: 160px;
		padding: 0 2rem 3.5rem;
	}

	.hero-content {
		padding-top: 2.5rem;
	}

	.hero h1 {
		font-size: 2.2rem;
		line-height: 1.5;
	}

	.hero p:first-of-type {
		font-size: 0.62rem;
		letter-spacing: 2px;
	}

	.hero p:last-of-type {
		font-size: 0.9rem;
		line-height: 1.7;
	}

	.company-intro-section,
	.business-section,
	.company-info-section,
	.message-section,
	.shop-section,
	.restaurant-section {
		padding: 4rem 1.5rem;
	}

	.company-intro-section h2,
	.business-section h2,
	.company-info-section h2,
	.message-section h2,
	.shop-section h2,
	.restaurant-section h2 {
		font-size: 2rem;
	}

	.company-intro-section p {
		font-size: 0.95rem;
		line-height: 1.9;
	}

	.business-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.business-image {
		height: 180px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
	}

	.business-image img {
		width: 100%;
		height: 100%;
		object-fit: contain; /* 모바일에서 안 잘리게 */
	}
    
	.business-text h3 {
		font-size: 1.05rem;
	}

	.business-text p {
		font-size: 0.75rem;
		line-height: 1.75;
	}

	.company-info-table th,
	.company-info-table td {
		display: block;
		width: 100%;
		padding: 0.8rem 0;
	}

	.company-info-table th {
		margin-top: 1rem;
	}

	.message-section p {
		font-size: 1.05rem;
		line-height: 2;
	}

	.shop-btn {
		width: 100%;
		max-width: 260px;
	}

	.restaurant-content {
		flex-direction: column;
		gap: 2rem;
	}

	.restaurant-text h3 {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.hero {
		margin-top: 170px;
		padding: 0 1.5rem 3rem;
	}

	.hero-content {
		padding-top: 2rem;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.filter-buttons {
		gap: 1rem;
	}

	.filter-btn {
		font-size: 0.75rem;
	}
}