:root {
    --primary: #b8935a;
    --primary-light: #d4b483;
    --secondary: #1a1a1a;
    --bg-cream: #f5f0e8;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --text-light: #ffffff;
    --header-height: 90px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: 100px 0;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    border-radius: 0;
    line-height: 1;
    white-space: nowrap;
}

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

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

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

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

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

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

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    background: transparent;
}

.header.scrolled {
    background: var(--bg-white);
    height: 80px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

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

.logo img {
    height: 35px;
    transition: var(--transition);
}

.logo .logo-dark {
    display: none;
}

.header.scrolled .logo .logo-white {
    display: none;
}

.header.scrolled .logo .logo-dark {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 10px 0;
}

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

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

.nav-link i {
    font-size: 9px;
    opacity: 0.6;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: var(--bg-white);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 20px 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    padding-left: 35px;
    color: var(--primary);
    background: #f9f9f9;
}

.nav-actions .btn {
    padding: 10px 25px;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Booking Search Bar (Inside Hero Bottom) */
.booking-search-container {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.booking-search-bar {
    background: #ffffffad;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: stretch;
    padding: 0;
    border-radius: 60px;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.search-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    border-right: 1px solid #f0f0f0;
    text-align: left;
}

.search-group:nth-last-child(2) {
    border-right: none;
}

.search-group label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-group label i {
    font-size: 12px;
    opacity: 0.8;
}

.search-group input,
.search-group select {
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent;
    outline: none;
    width: 100%;
}

.btn-search {
    background: var(--secondary);
    color: var(--text-light);
    padding: 0 40px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--primary);
}

/* Introduction / Philosophy Section */
.philosophy {
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .booking-search-container {
        position: relative;
        bottom: 0;
        margin-top: 50px;
        padding: 0 20px;
    }

    .booking-search-bar {
        border-radius: 15px;
        flex-direction: column;
        max-width: 500px;
    }

    .search-group {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 15px 25px;
    }

    .btn-search {
        flex: 1 1 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .search-group {
        flex: 1 1 100%;
    }
}

/* Philosophy Section */
.philosophy {
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Show desktop video by default */
.video-background .video-desktop {
    display: block;
}

/* Media query for mobile */
@media (max-width: 768px) {
    .video-background .video-desktop {
        display: none;
    }

    .video-background .video-mobile {
        display: block;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 80px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.hero p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 40px;
}

/* Sections */
.subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.btn-link {
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary);
    gap: 18px;
}

.btn-link:hover::after {
    width: 100%;
}

.philosophy-image img {
    width: 100%;
    display: block;
    box-shadow: 30px 30px 0 var(--bg-cream);
}

/* Offerings */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.offering-card {
    background: var(--bg-white);
    transition: var(--transition);
}

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

.offering-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.offering-content {
    padding: 30px;
}

.offering-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.offering-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Accommodations Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.room-card:hover .room-img-container img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(5px);
}

.room-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.room-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.room-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-meta {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.room-meta li {
    font-size: 12px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-meta li i {
    color: var(--primary);
}

.btn-room {
    width: 100%;
    margin-top: auto;
    background: var(--secondary);
    color: var(--text-light);
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.btn-room:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 180px 0;
    color: var(--text-light);
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1544161515-4ae6ce6db874?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    z-index: -2;
    transition: transform 2s ease;
}

.cta-section:hover .cta-bg {
    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(184, 147, 90, 0.6) 100%);
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.cta-section h2 {
    font-size: 64px;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--text-light);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Jost', sans-serif;
    letter-spacing: 1px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 14px;
    background-color: var(--text-light);
    color: var(--secondary);
}

.btn-large:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-5px);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-cream);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--text-light);
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal a {
    margin-left: 20px;
    color: var(--text-muted);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header.scrolled .mobile-toggle span,
.mobile-toggle.active span {
    background: var(--text-dark) !important;
}

/* WA Float */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

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

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

.fade-up {
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.delay-1 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 50px;
    }

    .philosophy-grid,
    .offerings-grid,
    .rooms-slider,
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--bg-white);
        padding: 100px 30px;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        color: var(--text-dark);
        font-size: 18px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1002;
        margin-left: 15px;
    }

    .nav-actions {
        display: flex;
        align-items: center;
    }

    .nav-actions .btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    .offerings-grid,
    .rooms-slider,
    .footer-top,
    .philosophy-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 100px 0;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-content {
        padding: 30px 20px;
    }

    .logo img {
        height: 28px;
    }

    .booking-search-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}