/* Base Variables */
:root {
    --primary: #8b7355;      /* Warm Wood accent */
    --primary-light: #a68c6e;
    --primary-dark: #6e5a42;
    --bg-main: #faf9f6;      /* Serene Ivory */
    --bg-light: #ffffff;
    --bg-dark: #2c2a28;      /* Deep Slate for footer/contact */
    --text-main: #333333;
    --text-light: #666666;
    --text-inverse: #f4f4f4;
    
    --font-en: 'Outfit', sans-serif;
    --font-kr: 'Noto Sans KR', sans-serif;
    
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-en); /* Fallbacks combined in elements if needed */
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.kr-mode {
    font-family: var(--font-kr);
}
.kr-mode .nav-links a {
    font-weight: 500;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-center { text-align: center; }
.text-light { color: var(--text-inverse); }
.mt-4 { margin-top: 1.5rem; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}
.text-center .section-title {
    border-left: none;
    padding-left: 0;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Backgrounds */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary);
}
.outline-btn:hover {
    background-color: var(--primary);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .lang-btn {
    color: var(--text-main);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.navbar.scrolled .lang-btn {
    background: rgba(0,0,0,0.05);
}
.lang-btn:hover {
    background: var(--primary);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}
.navbar.scrolled .mobile-menu-btn span { background-color: var(--text-main); }

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 5%;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.hero-content {
    max-width: 800px;
    color: white;
    margin-top: 5rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Rooms Section */
.room-showcase {
    display: grid;
    grid-template-columns: 3fr 2fr;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.room-image {
    height: 450px;
    overflow: hidden;
}

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

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

.room-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.room-features {
    list-style: none;
    margin-bottom: 2rem;
}

.room-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.room-features .icon {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.amenity-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.amenity-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.amenity-info {
    padding: 2rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.amenity-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: var(--transition);
}
.amenity-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.contact-list {
    list-style: none;
    margin-top: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.contact-list .icon {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--primary-light);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #1a1918;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    border: 1px solid #3d3b38;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #1a1918;
    color: #888;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible, .fade-in.visible, .slide-in-left.visible, .slide-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }


/* Responsive */
@media (max-width: 900px) {
    .about-grid, .room-showcase, .amenities-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .room-image { height: 300px; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
}
