/* ========================================
   STAY YOONSEUL - 스테이 윤슬
   Premium Pension Website Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #1A2E40;
    --color-primary-light: #2A4560;
    --color-secondary: #D4C5B0;
    --color-secondary-light: #E8DFD0;
    --color-accent: #C9A962;
    --color-accent-dark: #A8883F;
    --color-bg: #F8F6F2;
    --color-bg-alt: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #E5E0D8;
    --color-kakao: #FEE500;
    --color-kakao-text: #3C1E1E;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Noto Sans KR', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section */
.section {
    padding: var(--section-padding) 0;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.section-desc {
    margin-top: 20px;
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 16px;
}

.btn-kakao {
    background-color: var(--color-kakao);
    color: var(--color-kakao-text);
}

.btn-kakao:hover {
    background-color: #E5CE00;
    transform: translateY(-2px);
}

.btn-kakao svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-menu a {
    color: var(--color-primary);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--color-primary);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    transition: color var(--transition-normal);
}

.logo-sub {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.navbar.scrolled .logo-sub {
    color: var(--color-text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.nav-cta {
    padding: 10px 24px !important;
    background-color: var(--color-accent) !important;
    color: #fff !important;
    border-radius: 4px;
}

.nav-cta:hover {
    background-color: var(--color-accent-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2A4560 0%, #1A2E40 100%);
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 46, 64, 0.3) 0%,
            rgba(26, 46, 64, 0.5) 50%,
            rgba(26, 46, 64, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 4px;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero-title .highlight {
    color: var(--color-accent);
    font-weight: 400;
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background-color: var(--color-bg-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: attr(data-text);
    position: absolute;
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    padding: 20px;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="1"><rect x="3" y="3" width="18" height="18" rx="2"/><circle cx="8.5" cy="8.5" r="1.5"/><path d="M21 15l-5-5L5 21"/></svg>') no-repeat center;
    background-size: 60px;
    opacity: 0.3;
}

.about-text {
    padding-right: 40px;
}

.about-lead {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.about-text p {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.signature-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    color: var(--color-accent);
}

/* ========================================
   BRAND STORY SECTION
   ======================================== */
.brand-story {
    position: relative;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}

.brand-story-bg {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
}

.brand-story-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.brand-story-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.brand-label {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
}

.brand-title {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.brand-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms {
    background-color: var(--color-bg);
}

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

.room-card {
    background: var(--color-bg-alt);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card.featured {
    border: 2px solid var(--color-accent);
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.room-image .image-placeholder {
    height: 100%;
    border-radius: 0;
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-primary);
    border-radius: 20px;
}

.room-info {
    padding: 28px;
}

.room-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.room-type {
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.room-features {
    margin-bottom: 24px;
}

.room-features li {
    font-size: 14px;
    color: var(--color-text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.room-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.room-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.price-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.price-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
}

.price-divider {
    color: var(--color-border);
}

.room-card .btn-outline {
    width: 100%;
}

/* ========================================
   SPECIAL SECTION
   ======================================== */
.special {
    background-color: var(--color-bg-alt);
}

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

.special-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--color-bg);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.special-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--color-accent);
}

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

.special-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.special-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.special-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.special-price {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-secondary-light);
    font-size: 13px;
    color: var(--color-primary);
    border-radius: 20px;
}

/* ========================================
   RESERVATION SECTION
   ======================================== */
.reservation {
    background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.reservation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.reservation-card {
    background: var(--color-bg-alt);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.reservation-card.refund {
    grid-column: span 2;
}

.reservation-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.card-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
}

.reservation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reservation-list li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    padding-left: 16px;
    position: relative;
}

.reservation-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.reservation-list.warning li::before {
    content: '!';
    font-size: 11px;
    font-weight: 700;
    color: #E74C3C;
}

.bank-info {
    margin-top: 24px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: 8px;
}

.bank-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.bank-account {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
}

.bank-holder {
    font-size: 13px;
    color: var(--color-text-light);
}

.checkin-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px;
    background: var(--color-bg);
    border-radius: 8px;
    margin-bottom: 24px;
}

.checkin-box {
    text-align: center;
}

.checkin-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.checkin-time {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-primary);
}

.checkin-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Refund Table */
.refund-table {
    width: 100%;
    border-collapse: collapse;
}

.refund-table th,
.refund-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
}

.refund-table th {
    background: var(--color-bg);
    font-weight: 500;
    color: var(--color-primary);
}

.refund-table td {
    color: var(--color-text-light);
}

.refund-table tr.no-refund td {
    color: #E74C3C;
    font-weight: 500;
}

.reservation-cta {
    text-align: center;
}

.reservation-contact {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text-light);
}

.reservation-contact a {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    margin-left: 12px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background-color: var(--color-bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    transition: transform var(--transition-fast);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.faq-answer .note {
    font-size: 13px;
    color: var(--color-text-muted);
    font-style: italic;
}

.faq-contact {
    text-align: center;
    padding: 48px;
    background: var(--color-bg);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.faq-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location {
    background-color: var(--color-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--color-secondary-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.map-placeholder span {
    font-size: 16px;
    color: var(--color-text-light);
}

.map-placeholder p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-item {
    display: flex;
    gap: 20px;
}

.location-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary-light);
    border-radius: 12px;
    color: var(--color-primary);
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-text h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.location-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.location-text a {
    color: var(--color-primary);
    font-weight: 500;
}

.highlight-text {
    color: var(--color-accent);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-primary);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 20px;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-col ul li {
    font-size: 13px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li span {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 8px;
}

.footer-phone {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-hours {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-bank span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.footer-bank p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

.copyright {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: #fff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-title {
        font-size: 34px;
    }

    .about-content {
        gap: 40px;
    }

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

    .room-card:last-child {
        grid-column: span 2;
    }

    .special-grid {
        gap: 24px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg-alt);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right var(--transition-normal);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--color-primary);
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-cta {
        margin-top: 20px;
        border-bottom: none !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--color-primary);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: var(--color-primary);
    }

    .section-title {
        font-size: 26px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.7;
    }

    .hero-desc {
        font-size: 14px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding-right: 0;
        order: -1;
    }

    .image-placeholder {
        height: 300px;
    }

    .brand-story {
        padding: 100px 0;
    }

    .brand-title {
        font-size: 28px;
    }

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

    .room-card:last-child {
        grid-column: span 1;
    }

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

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

    .reservation-card.refund {
        grid-column: span 1;
    }

    .reservation-card {
        padding: 28px;
    }

    .refund-table th,
    .refund-table td {
        padding: 12px 16px;
        font-size: 13px;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    .faq-contact {
        padding: 32px 24px;
    }

    .faq-buttons {
        flex-direction: column;
    }

    .faq-buttons .btn {
        width: 100%;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-lead {
        font-size: 18px;
    }

    .room-info {
        padding: 24px;
    }

    .room-name {
        font-size: 24px;
    }

    .checkin-info {
        gap: 24px;
        padding: 20px;
    }

    .checkin-time {
        font-size: 26px;
    }
}

/* ========================================
   GALLERY MODAL
   ======================================== */
.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 64, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.room-image:hover .room-overlay {
    background: rgba(26, 46, 64, 0.6);
}

.view-gallery {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.room-image:hover .view-gallery {
    opacity: 1;
    transform: translateY(0);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.gallery-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    z-index: 10;
}

.gallery-close:hover {
    opacity: 1;
}

.gallery-close svg {
    width: 100%;
    height: 100%;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-info {
    text-align: center;
    color: #fff;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.gallery-caption {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-container {
        width: 95%;
    }

    .gallery-close {
        top: -40px;
        width: 32px;
        height: 32px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav svg {
        width: 20px;
        height: 20px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-title {
        font-size: 22px;
    }

    .gallery-thumb {
        width: 60px;
        height: 45px;
    }
}