/* Sokcho Vacation Hotel Style - Theme: Lake City Retreat */

:root {
    /* Colors */
    --primary-color: #005B96;
    /* Deep Lake Blue */
    --secondary-color: #C5A065;
    /* Sand Gold */
    --accent-color: #4CAF50;
    /* Expo Park Green Hints */
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #f9f9f9;
    --white: #ffffff;

    /* Spacing */
    --section-padding: 5rem 0;

    /* Fonts */
    --font-heading: 'Noto Serif KR', serif;
    --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.overline {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #004a7c;
    border-color: #004a7c;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
}

.btn-gold:hover {
    background-color: #b08d55;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

header.scrolled .logo {
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 300;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

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

.btn-reserve {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

header.scrolled .btn-reserve {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

header.scrolled .btn-reserve:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    cursor: pointer;
}

header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero_background.png');
    /* New Sunrise/Sunset Beach View */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.icon-box svg {
    width: 48px;
    height: 48px;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Hotel Gallery */
.hotel-gallery {
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.large img {
    min-height: 500px;
}

.gallery-item:not(.large) img {
    height: 240px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.gallery-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Rooms Section */
.room-card {
    display: flex;
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 8px;
    /* Soft round */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.room-card.reverse {
    flex-direction: row-reverse;
}

.room-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.room-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.room-info p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.room-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    color: #777;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 1rem;
    /* Arrow slide effect */
}

/* Booking Teaser */
.booking-teaser {
    background-image: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?q=80&w=2049&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
    text-align: center;
    color: var(--white);
}

.booking-teaser .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 91, 150, 0.8);
    /* Primary color overlay */
}

.booking-teaser .content {
    position: relative;
    z-index: 1;
}

.booking-teaser h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.simple-booking-bar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align inputs and button */
    gap: 1rem;
    max-width: 900px;
    margin: 3rem auto 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.input-group {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.input-group label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
    margin-left: 1rem;
}

.input-group input,
.input-group select {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    width: 100%;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
}

.simple-booking-bar button {
    border-radius: 40px;
    padding: 1rem 2.5rem;
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
}

.detail-item svg {
    color: var(--secondary-color);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #111;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

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

/* Room Grid Layout */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.room-card-grid {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card-grid:hover {
    transform: translateY(-5px);
}

.room-thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.room-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.room-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    flex: 1;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: #f0f4f8;
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
}

.room-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Info Section Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--white);
}

.info-table th {
    text-align: left;
    padding: 1rem;
    background: #f1f5f9;
    color: var(--primary-color);
    width: 30%;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.info-table td {
    padding: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.policy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.policy-card h3 {
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.amenity-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* New Booking Bar Styles */
.booking-bar-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 900px;
    width: 90%;
}

.booking-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.booking-form .input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.booking-form label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.25rem;
    padding-left: 0.5rem;
}

.booking-form input,
.booking-form select {
    border: none;
    background: #f5f5f5;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    width: 100%;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: 2px solid var(--primary-color);
    background: #fff;
}

.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    align-self: flex-end;
    /* Match input height height visual */
}

.btn-search:hover {
    background-color: #004a7c;
}

/* Booking Contact Buttons */
.booking-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-btn {
    background: var(--white);
    color: var(--primary-color);
}

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

.kakao-btn {
    background: #FEE500;
    color: #3C1E1E;
}

.kakao-btn:hover {
    background: #FDD835;
}

.contact-btn svg {
    width: 18px;
    height: 18px;
}

/* Delay for Booking Bar Animation */
.delay-600 {
    animation-delay: 0.6s;
}

/* Floating Booking Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(197, 160, 101, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(197, 160, 101, 0.6);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

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

    .nav-links li {
        margin-bottom: 1.5rem;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
        cursor: pointer;
    }

    .mobile-menu-btn svg {
        width: 28px;
        height: 28px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .room-card,
    .room-card.reverse {
        flex-direction: column;
    }

    .room-image {
        min-height: 250px;
    }

    .room-info {
        padding: 2rem;
    }

    .booking-teaser .simple-booking-bar {
        flex-direction: column;
        border-radius: 12px;
        align-items: stretch;
    }

    .simple-booking-bar button {
        width: 100%;
    }

    /* Responsive adjustments for Booking Bar */
    .booking-bar-container {
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 2rem;
    }

    .booking-form {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-form .input-group,
    .booking-form .btn-search {
        width: 100%;
    }

    .btn-search {
        margin-top: 0.5rem;
    }

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-row: span 1;
    }

    .gallery-item.large img,
    .gallery-item:not(.large) img {
        height: 300px;
    }

    /* Floating button on mobile */
    .floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}
/* Authentication Pages */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding-top: 80px; /* Navbar height */
}

.auth-container {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.auth-container h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.auth-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #bfa37c;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.auth-links {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.auth-links a {
    color: #bfa37c;
    font-weight: 500;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}
