/* Variables */
:root {
    --color-white: #ffffff;
    --color-bg: #faf9f7; /* Off-white/light beige */
    --color-sand: #f4eee8; /* Sand */
    --color-wood: #d9c5b2; /* Light wood */
    --color-green: #d16b3c; /* Brand orange (Logo) */
    --color-green-dark: #b8562a; /* Brand orange dark for hover */
    --color-text-main: #3a3835;
    --color-text-light: #6a6764;
    --color-border: #eae6e1;
    
    --font-primary: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --border-radius: 8px; /* Soft corners, not exaggerated */
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-main);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Layout & Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

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

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

.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mt-4 { margin-top: 4rem; }

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

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

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

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 0.8rem 1.8rem;
    border-radius: 40px; /* Pill shape for modern friendly look */
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 107, 60, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--color-text-main);
    color: var(--color-text-main);
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--color-text-main);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 56, 53, 0.2);
}

.btn-outline:active {
    transform: translateY(0) scale(0.98);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-text strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-text span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--color-green); /* Orange brand color */
    margin-top: 0.2rem;
    line-height: 1;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-main);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    padding-top: 100px;
    padding-bottom: 4rem;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-green);
    margin-bottom: 1.5rem;
}

.text-highlight {
    color: var(--color-green);
    position: relative;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--color-text-main);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--color-bg);
    margin-left: -15px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-text .stars {
    color: #fbbc05;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.proof-text span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--color-sand);
    border-radius: var(--border-radius);
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 600px;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.5);
}

.badge-icon {
    width: 45px;
    height: 45px;
    background-color: var(--color-sand);
    color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 600;
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Images */
.rounded-image {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Room Cards */
.room-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

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

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

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

.room-info {
    padding: 1.5rem;
}

.room-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Google Section / Map */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.stars {
    color: #fbbc05; /* Google star color */
    font-size: 1.1rem;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.map-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-sand);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-text-main);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.map-box i {
    font-size: 2.5rem;
    color: var(--color-green);
}

.map-box:hover {
    background-color: var(--color-wood);
    color: var(--color-white);
}

.map-box:hover i {
    color: var(--color-white);
}

.stretched-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-sand);
}

/* Footer */
.footer {
    background-color: var(--color-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.footer-social a:hover {
    color: var(--color-green);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive / Mobile */
@media (max-width: 900px) {
    .grid-2-col, .grid-3-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-placeholder {
        min-height: 250px;
    }
    
    .hero-image-wrapper {
        min-height: 350px;
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-decoration {
        top: 15px;
        right: -10px;
        bottom: -15px;
        height: auto;
    }
    
    .hero-img-main {
        max-height: 420px;
        object-position: center;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: 0.8rem;
        border-top: none;
        margin-top: 1.5rem;
        padding: 1.2rem;
        width: 100%;
        justify-content: center;
        background: var(--color-white);
        border-radius: var(--border-radius);
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    }

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

    .floating-badge {
        bottom: -25px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 92%;
        max-width: 340px;
        justify-content: center;
        padding: 0.8rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 40px;
        gap: 0.6rem;
    }
    
    .badge-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .badge-text strong {
        font-size: 0.85rem;
    }
    
    .badge-text span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .desktop-btn {
        display: none;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .logo-text strong {
        font-size: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        padding: 0.5rem;
        margin-right: -0.5rem;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        max-height: 350px;
    }
    
    .nav-links a {
        padding: 1.2rem 2rem;
        border-top: 1px solid var(--color-border);
        display: block;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.15;
    }
    
    .hero-actions {
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-actions .btn-primary {
        width: 100%;
        max-width: 320px;
    }
    
    /* Mobile specific adjustments remain here if any */
    
    .section {
        padding: 4.5rem 0;
    }

    .text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .room-image {
        height: 220px;
    }
    
    .room-info {
        padding: 1.2rem;
    }
    
    .room-info h3 {
        font-size: 1.15rem;
    }
    
    .google-rating {
        justify-content: center;
        width: 100%;
        max-width: 320px;
    }

    .cta-section .btn-primary {
        width: 100%;
        max-width: 320px;
    }
    
    .btn-outline {
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 0 auto;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .footer {
        text-align: center;
        padding-bottom: 5rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand .logo-link {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-brand .logo-text {
        align-items: center;
    }
    
    .footer-contact, .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p, .footer-social a {
        width: auto;
        justify-content: center;
    }
}
