:root {
    --primary: #c5a059;
    --primary-light: #e6d5b8;
    --secondary: #0f1113;
    --bg-light: #ffffff;
    --bg-alt: #fafafa;
    --text-main: #1a1a1a;
    --text-muted: #717171;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.06);
    --radius: 20px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.1);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

/* Navbar */
.navbar {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled .logo, .navbar.scrolled .nav-cta-mini {
    color: var(--secondary);
}

.navbar.scrolled .nav-cta-mini {
    border-color: var(--secondary);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.logo span {
    color: var(--primary);
    font-weight: 400;
}

.nav-cta-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 24px;
    border: 1px solid var(--white);
    border-radius: 50px;
    transition: var(--transition);
}

.nav-cta-mini:hover {
    background: var(--white);
    color: var(--secondary) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--secondary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('media/hero.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
    transform: scale(1.1);
    filter: brightness(0.6);
    transition: transform 0.1s linear;
}

.hero .container {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1;
    margin-bottom: 32px;
    color: var(--white);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 56px;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* Info Section */
.details {
    padding: 160px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.info-card {
    background: var(--bg-alt);
    padding: 56px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.info-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--secondary);
}

.info-card h3 i {
    color: var(--primary);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item .val {
    font-weight: 600;
    color: var(--secondary);
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.amenities-list li i {
    color: var(--primary);
}

/* Visual Break Section */
.visual-break {
    height: 60vh;
    background: url('media/room.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-break::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.visual-break .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.visual-break h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* Contact Strip */
.contact-strip {
    padding: 160px 0;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
}

.contact-strip h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.huge-cta {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--white);
    color: var(--secondary);
    padding: 40px 100px;
    border-radius: 80px;
    transition: var(--transition);
    margin-top: 40px;
}

.huge-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.huge-cta .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.huge-cta .number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* Footer */
footer {
    padding: 100px 0 60px;
    background: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.credit {
    margin-top: 60px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.credit a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 72px;
    height: 72px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container { padding: 0 32px; }
    .hero h1 { font-size: 3.5rem; }
    .cta-group { flex-direction: column; }
    .huge-cta { width: 100%; padding: 32px; }
    .huge-cta .number { font-size: 1.8rem; }
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
    .whatsapp-float { width: 60px; height: 60px; bottom: 30px; right: 30px; }
}
