/* ============================================
   AREE RESORT - Thai Fusion Accommodation
   styles.css - Main Stylesheet
   ============================================ */

/* ============================================
   CSS Variables / Color Scheme
   ============================================ */
:root {
    --gold-dark: #8B6914;
    --gold: #C9A227;
    --gold-light: #E8D5A3;
    --forest-dark: #1a2f1a;
    --forest: #2d4a2d;
    --forest-light: #3d5a3d;
    --cream: #FBF8F1;
    --cream-dark: #F0EBE0;
    --charcoal: #2C2C2C;
    --burgundy: #722F37;
    --line-green: #06C755;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ============================================
   Thai Pattern Background
   ============================================ */
.thai-pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L60 20 L80 20 L65 35 L70 55 L50 45 L30 55 L35 35 L20 20 L40 20 Z' fill='%23C9A227'/%3E%3Cpath d='M50 60 Q60 70 50 80 Q40 70 50 60' fill='%23C9A227'/%3E%3Ccircle cx='15' cy='85' r='8' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3Ccircle cx='85' cy='85' r='8' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3C/svg%3E");
}

/* Kranok Pattern */
.kranok-left, .kranok-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 400px;
    z-index: 100;
    opacity: 0.15;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='100' viewBox='0 0 80 100'%3E%3Cpath d='M40 0 Q60 25 40 50 Q20 75 40 100' fill='none' stroke='%23C9A227' stroke-width='2'/%3E%3Cpath d='M40 20 Q55 35 40 50 Q25 65 40 80' fill='none' stroke='%23C9A227' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='50' r='5' fill='%23C9A227'/%3E%3Cpath d='M30 30 Q40 40 30 50' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3Cpath d='M50 30 Q40 40 50 50' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3C/svg%3E") repeat-y;
}

.kranok-left {
    left: 0;
}

.kranok-right {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

/* ============================================
   Loader
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--forest-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: pulse 1.5s ease infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(251, 248, 241, 0.98), transparent);
    transition: all 0.4s;
}

nav.scrolled {
    background: rgba(251, 248, 241, 0.98);
    box-shadow: 0 2px 30px rgba(139, 105, 20, 0.1);
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1002;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--forest-dark);
    letter-spacing: 0.1em;
}

.logo-text span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--forest-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.3s;
}

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

/* Language Switcher */
.lang-switcher {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--forest-dark);
    padding: 0.4rem 1rem;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border-radius: 4px;
}

.lang-switcher:hover {
    background: var(--gold);
    color: white;
}

.nav-cta {
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    border: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 4px;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--gold);
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s;
    border-radius: 4px;
}

.mobile-menu-btn:hover {
    background: var(--gold);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest-dark);
    margin: 3px 0;
    transition: all 0.3s;
}

.mobile-menu-btn:hover span {
    background: white;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 47, 26, 0.95);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L60 20 L80 20 L65 35 L70 55 L50 45 L30 55 L35 35 L20 20 L40 20 Z' fill='%23C9A227'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--cream);
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-nav-links a:hover::before {
    width: 80%;
}

.mobile-lang-switcher {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--cream);
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    border-radius: 4px;
}

.mobile-menu-overlay.active .mobile-lang-switcher {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.mobile-lang-switcher:hover {
    background: var(--gold);
    color: var(--forest-dark);
}

.mobile-nav-cta {
    margin-top: 1rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    border: none;
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border-radius: 4px;
}

.mobile-menu-overlay.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.mobile-menu-decoration {
    position: absolute;
    bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
}

.mobile-menu-overlay.active .mobile-menu-decoration {
    opacity: 0.5;
}

.mobile-menu-decoration span {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 0.2em;
}

.mobile-menu-decoration::before,
.mobile-menu-decoration::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.6rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
}

.hero-lai-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='120' viewBox='0 0 200 120'%3E%3Cdefs%3E%3ClinearGradient id='goldGrad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23C9A227;stop-opacity:0.3'/%3E%3Cstop offset='50%25' style='stop-color:%23E8D5A3;stop-opacity:0.5'/%3E%3Cstop offset='100%25' style='stop-color:%23C9A227;stop-opacity:0.3'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 120 Q50 80 100 100 Q150 120 200 80 L200 0 L0 0 Z' fill='url(%23goldGrad)'/%3E%3Cpath d='M20 60 Q40 40 60 60 Q80 80 100 60 Q120 40 140 60 Q160 80 180 60' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.4'/%3E%3Ccircle cx='100' cy='40' r='15' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.3'/%3E%3Ccircle cx='100' cy='40' r='8' fill='%23C9A227' opacity='0.2'/%3E%3C/svg%3E") repeat-x;
    background-size: 200px 120px;
    opacity: 0.8;
}

.hero-lai-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='120' viewBox='0 0 200 120'%3E%3Cdefs%3E%3ClinearGradient id='goldGrad2' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23C9A227;stop-opacity:0.3'/%3E%3Cstop offset='50%25' style='stop-color:%23E8D5A3;stop-opacity:0.5'/%3E%3Cstop offset='100%25' style='stop-color:%23C9A227;stop-opacity:0.3'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 0 Q50 40 100 20 Q150 0 200 40 L200 120 L0 120 Z' fill='url(%23goldGrad2)'/%3E%3C/svg%3E") repeat-x;
    background-size: 200px 120px;
    opacity: 0.8;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text-side {
    color: var(--cream);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    margin-bottom: 2rem;
    border-radius: 4px;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.hero-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .thai-name {
    display: block;
    font-size: 0.6em;
    color: var(--gold);
    margin-top: 0.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 2;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
}

.hero-feature-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
}

.hero-feature-label {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.hero-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--gold);
    transition: all 0.3s;
    border-radius: 4px;
}

.hero-cta-secondary:hover {
    background: var(--gold);
    color: var(--forest-dark);
}

.hero-image-side {
    position: relative;
}

.hero-image-frame {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    pointer-events: none;
}

.hero-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3Cpath d='M50 5 L55 20 L70 20 L58 30 L63 45 L50 35 L37 45 L42 30 L30 20 L45 20 Z' fill='%23C9A227' opacity='0.3'/%3E%3C/svg%3E");
    opacity: 0.6;
}

/* ============================================
   Section Divider
   ============================================ */
.section-divider {
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='100' viewBox='0 0 400 100'%3E%3Cpath d='M0 50 L150 50 Q175 30 200 50 Q225 70 250 50 L400 50' fill='none' stroke='%23C9A227' stroke-width='2'/%3E%3Ccircle cx='200' cy='50' r='8' fill='%23C9A227'/%3E%3Ccircle cx='200' cy='50' r='15' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3Cpath d='M170 50 Q185 35 200 50 Q215 65 230 50' fill='none' stroke='%23C9A227' stroke-width='1'/%3E%3C/svg%3E") no-repeat center;
    background-size: 400px 100px;
}

/* ============================================
   Article Section
   ============================================ */
.article-section {
    padding: 6rem 4rem;
    background: var(--cream);
    position: relative;
}

.article-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.article-header-decoration {
    width: 200px;
    height: 60px;
    margin: 0 auto 2rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M0 30 Q25 10 50 30 Q75 50 100 30 Q125 10 150 30 Q175 50 200 30' fill='none' stroke='%23C9A227' stroke-width='2'/%3E%3Ccircle cx='100' cy='30' r='5' fill='%23C9A227'/%3E%3Cpath d='M85 30 L90 25 L95 30 L90 35 Z' fill='%23C9A227'/%3E%3Cpath d='M105 30 L110 25 L115 30 L110 35 Z' fill='%23C9A227'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.article-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest-dark);
    font-weight: 400;
    margin-bottom: 1rem;
}

.article-header h2 span {
    color: var(--gold);
}

.article-header p {
    font-size: 1.1rem;
    color: var(--forest-light);
    max-width: 600px;
    margin: 0 auto;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
}

.article-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.article-intro-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.article-intro-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
}

.article-intro-text p {
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-intro-image {
    position: relative;
}

.article-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.article-intro-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--gold);
    z-index: -1;
}

.article-quote-section {
    background: linear-gradient(135deg, var(--forest-dark), var(--forest));
    padding: 4rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.article-quote-section::before,
.article-quote-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 Q70 30 50 50 Q30 70 50 90' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M30 20 Q50 40 30 60' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.2'/%3E%3Cpath d='M70 20 Q50 40 70 60' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
}

.article-quote-section::before {
    top: -50px;
    left: -50px;
}

.article-quote-section::after {
    bottom: -50px;
    right: -50px;
    transform: rotate(180deg);
}

.article-quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.article-quote-mark {
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.article-quote-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--cream);
    line-height: 1.8;
    margin: -2rem 0 2rem;
}

.article-quote-text em {
    color: var(--gold);
    font-style: normal;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.article-card {
    background: white;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s;
    border-radius: 4px;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 4px 4px 0 0;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 105, 20, 0.15);
}

.article-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-card h4::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.8rem;
}

.article-card p {
    font-size: 1rem;
    line-height: 2;
    color: var(--charcoal);
    opacity: 0.8;
}

.article-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin: 4rem 0;
}

.article-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.article-images .img-large {
    height: 400px;
}

.article-images .img-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-images .img-stack img {
    height: calc(50% - 0.75rem);
}

/* ============================================
   Facilities Section
   ============================================ */
.facilities-section {
    padding: 6rem 4rem;
    background: linear-gradient(180deg, var(--cream-dark), var(--cream));
}

.facilities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.facilities-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--forest-dark);
}

.facilities-header h2 span {
    color: var(--gold);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border-radius: 4px;
}

.facility-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--forest-dark), var(--forest));
    transition: height 0.4s;
    z-index: 0;
}

.facility-card:hover::after {
    height: 100%;
}

.facility-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.facility-card:hover * {
    color: var(--cream);
}

.facility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.4s;
}

.facility-card:hover .facility-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.facility-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--forest-dark);
    margin-bottom: 0.8rem;
}

.facility-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: 6rem 0;
    background: var(--forest-dark);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 L35 15 L45 15 L37 22 L40 32 L30 26 L20 32 L23 22 L15 15 L25 15 Z' fill='none' stroke='%23C9A227' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 4rem;
}

.gallery-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--cream);
}

.gallery-header h2 span {
    color: var(--gold);
}

.gallery-track {
    display: flex;
    gap: 2rem;
    padding: 0 4rem;
    animation: scrollGallery 35s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex-shrink: 0;
    width: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 47, 26, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.gallery-item-overlay p {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   Rooms Section
   ============================================ */
.rooms-section {
    padding: 6rem 4rem;
    background: var(--cream);
}

.rooms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rooms-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--forest-dark);
}

.rooms-header h2 span {
    color: var(--gold);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.room-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s;
    position: relative;
    border-radius: 4px;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    transition: border-color 0.4s;
    pointer-events: none;
    z-index: 10;
    border-radius: 4px;
}

.room-card:hover::before {
    border-color: var(--gold);
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(139, 105, 20, 0.2);
}

.room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.room-card:hover .room-image img {
    transform: scale(1.15);
}

.room-tier-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
}

.room-content {
    padding: 2rem;
}

.room-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--forest-dark);
    margin-bottom: 1rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.room-amenity {
    padding: 0.4rem 0.8rem;
    background: var(--cream-dark);
    font-size: 0.8rem;
    color: var(--forest);
    border-radius: 4px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.room-price .amount {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold-dark);
}

.room-price .unit {
    font-size: 0.9rem;
    color: var(--forest-light);
}

.room-book-btn {
    padding: 0.8rem 1.5rem;
    background: var(--forest-dark);
    color: var(--cream);
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    font-family: 'Sarabun', sans-serif;
}

.room-book-btn:hover {
    background: var(--gold);
    color: var(--forest-dark);
}

/* ============================================
   Info Bar
   ============================================ */
.info-bar {
    background: linear-gradient(135deg, var(--forest-dark), var(--forest));
    padding: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    color: var(--cream);
}

.info-item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.info-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 6rem 4rem;
    background: var(--cream);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 3rem;
    background: linear-gradient(135deg, var(--forest-dark), var(--forest));
    color: var(--cream);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.2'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.15'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23C9A227' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info h3 span {
    color: var(--gold);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(201, 162, 39, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border-radius: 4px;
}

.contact-item-text h5 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.contact-item-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-item-text a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-text a:hover {
    color: var(--gold);
}

.contact-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.contact-image-overlay h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
}

.contact-image-overlay p {
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.7;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--charcoal);
    padding: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

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

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--cream);
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 4px;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transition: fill 0.3s;
}

.footer-social a:hover svg {
    fill: var(--charcoal);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   Scroll Top Button
   ============================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ============================================
   Booking Modal
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 47, 26, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--cream);
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--forest-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover {
    background: var(--cream-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--forest-light);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--forest-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--line-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #05b04a;
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .rooms-grid, .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links, .nav-cta, .lang-switcher {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 8rem 2rem 4rem;
    }

    .hero-text-side {
        order: 2;
    }

    .hero-image-side {
        order: 1;
    }

    .hero-image-frame img {
        height: 350px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-decoration {
        display: none;
    }

    .article-section {
        padding: 4rem 2rem;
    }

    .article-intro {
        grid-template-columns: 1fr;
    }

    .article-intro-image::before {
        display: none;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-images {
        grid-template-columns: 1fr;
    }

    .article-images .img-large {
        height: 300px;
    }

    .article-images .img-stack {
        flex-direction: row;
    }

    .article-images .img-stack img {
        height: 200px;
        width: calc(50% - 0.75rem);
    }

    .article-quote-section {
        padding: 3rem 2rem;
    }

    .article-quote-text {
        font-size: 1.4rem;
    }

    .facilities-section {
        padding: 4rem 2rem;
    }

    .rooms-section {
        padding: 4rem 2rem;
    }

    .contact-section {
        padding: 4rem 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .kranok-left, .kranok-right {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .rooms-grid, .facilities-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-bar {
        padding: 3rem 2rem;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-feature {
        padding: 0.8rem 1.2rem;
    }

    .gallery-item {
        width: 300px;
    }

    .gallery-item img {
        height: 220px;
    }

    .mobile-nav-links a {
        font-size: 1.5rem;
    }

    .article-images .img-stack {
        flex-direction: column;
    }

    .article-images .img-stack img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

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

    .hero-badge {
        padding: 0.5rem 1rem;
    }

    .hero-badge span {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .mobile-nav-links a {
        font-size: 1.3rem;
    }

    .contact-image-overlay {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }

    .modal-content {
        padding: 2rem;
    }
}
