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

:root {
    /* Japandi Color Palette */
    --color-primary: #D4C5B9;
    --color-secondary: #8B7E74;
    --color-dark: #4A4238;
    --color-light: #F5F1ED;
    --color-background: #FAFAF8;
    --color-accent: #A68B6F;
    --color-text: #4A4238;
    --color-text-light: #8B7E74;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-light);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 126, 116, 0.15);
}

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

.nav-logo h2 {
    font-family: 'Lora', serif;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-background);
    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 20px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-description {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 2px 8px rgba(74, 66, 56, 0.15);
}

.btn-primary:hover {
    background: var(--color-secondary);
    box-shadow: 0 3px 12px rgba(74, 66, 56, 0.2);
}

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

.btn-secondary:hover {
    background: var(--color-light);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(74, 66, 56, 0.12);
    transition: box-shadow 0.3s ease;
}

.hero-main-image:hover {
    box-shadow: 0 6px 30px rgba(74, 66, 56, 0.18);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 2px;
    border: 1px solid rgba(139, 126, 116, 0.2);
    box-shadow: 0 1px 4px rgba(74, 66, 56, 0.04);
}

.stat h4 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.stat p {
    color: var(--color-text-light);
    font-weight: 400;
    font-size: 0.85rem;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--color-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(74, 66, 56, 0.08);
}

.gallery-item:hover {
    box-shadow: 0 4px 16px rgba(74, 66, 56, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    opacity: 0.9;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(166, 139, 111, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    font-size: 1.8rem;
    color: white;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 66, 56, 0.95);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--color-light);
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: white;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(166, 139, 111, 0.8);
    color: white;
    border: none;
    font-size: 1.8rem;
    padding: 12px 18px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.lightbox-btn:hover {
    background: var(--color-accent);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(74, 66, 56, 0.8);
    padding: 10px 20px;
    border-radius: 2px;
}

/* Sleeping Section */
.sleeping {
    padding: 120px 0;
    background: var(--color-light);
}

.sleeping h2 {
    font-family: 'Lora', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.sleeping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.sleeping-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    text-align: center;
    border: 1px solid rgba(139, 126, 116, 0.2);
    box-shadow: 0 2px 8px rgba(74, 66, 56, 0.06);
    transition: box-shadow 0.3s ease;
}

.sleeping-item:hover {
    box-shadow: 0 4px 16px rgba(74, 66, 56, 0.1);
}

.sleeping-item h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.sleeping-item p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Facilities Section */
.facilities {
    padding: 120px 0;
    background: var(--color-background);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.facility {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(139, 126, 116, 0.2);
    box-shadow: 0 2px 8px rgba(74, 66, 56, 0.06);
}

.facility:hover {
    box-shadow: 0 4px 16px rgba(74, 66, 56, 0.1);
}

.facility h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.facility p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--color-secondary);
    color: var(--color-light);
}

.pricing .section-header h2,
.pricing .section-header p {
    color: var(--color-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3.5rem 2.5rem;
    border-radius: 2px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.1rem;
    opacity: 0.9;
}

.amount {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 500;
}

.period {
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-card p {
    opacity: 0.9;
}

.special-availability {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.special-availability p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.special-availability p:first-child {
    font-size: 1.3rem;
}

.pricing-note {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 2px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-note p {
    opacity: 0.95;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--color-background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-item a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.contact-item p {
    color: var(--color-text-light);
}

.contact-note {
    background: white;
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(139, 126, 116, 0.2);
    box-shadow: 0 2px 8px rgba(74, 66, 56, 0.06);
    text-align: left;
    height: fit-content;
}

.contact-note h4 {
    font-family: 'Lora', serif;
    color: var(--color-dark);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact-note p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Newsletter Signup */
.newsletter-signup {
    margin-top: 5rem;
    background: var(--color-accent);
    border-radius: 2px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 20px rgba(74, 66, 56, 0.12);
}

.newsletter-content h3 {
    font-family: 'Lora', serif;
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

.form-group .btn {
    padding: 1rem 2.5rem;
    white-space: nowrap;
}

.form-group .btn-primary {
    background: var(--color-dark);
    color: white;
}

.form-group .btn-primary:hover {
    background: var(--color-secondary);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 2px;
    text-align: center;
    font-weight: 400;
    display: none;
}

.form-message.success {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    display: block;
}

.form-message.error {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    display: block;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-light);
    text-align: center;
    padding: 2.5rem 0;
}

.footer p {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--color-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(74, 66, 56, 0.1);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 15px;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

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

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

    .hero-main-image {
        height: 300px;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        max-width: 100%;
    }

    .gallery {
        padding: 80px 0;
    }

    .sleeping {
        padding: 80px 0;
    }

    .facilities {
        padding: 80px 0;
    }

    .pricing {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .newsletter-signup {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }

    .newsletter-content h3 {
        font-size: 1.5rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }

    .form-group {
        flex-direction: column;
    }

    .form-input {
        min-width: 100%;
    }

    .form-group .btn {
        width: 100%;
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

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

    .lightbox-content {
        width: 95%;
        height: 95%;
        padding: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .lightbox-btn {
        font-size: 1.5rem;
        padding: 10px 14px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 15px 50px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-main-image {
        height: 250px;
    }

    .about {
        padding: 60px 0;
    }

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

    .stat {
        padding: 1.5rem 1rem;
    }

    .stat h4 {
        font-size: 1.6rem;
    }

    .gallery {
        padding: 60px 0;
    }

    .sleeping {
        padding: 60px 0;
    }

    .sleeping-item,
    .facility {
        padding: 2.5rem 2rem;
    }

    .facilities {
        padding: 60px 0;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 3rem 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .contact {
        padding: 60px 0;
    }

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

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .lightbox-content {
        width: 98%;
        height: 98%;
        padding: 5px;
    }

    .lightbox-close {
        top: 5px;
        right: 15px;
        font-size: 28px;
    }

    .lightbox-btn {
        font-size: 1.3rem;
        padding: 8px 12px;
    }

    .lightbox-counter {
        font-size: 0.9rem;
        padding: 8px 15px;
        bottom: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}
