/* 
    Yacht Bali - Global Stylesheet
    Design: Minimalist Luxury
    Colors: #0a0a0a (Black), #c5a059 (Gold), #f8f8f8 (White)
*/

:root {
    --primary-bg: #0a0a0a;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b38f4d;
    --text-light: #f8f8f8;
    --text-muted: #a0a0a0;
    --card-bg: #141414;
    --white: #ffffff;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

section {
    padding: 10rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--white);
}

.section-title span {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Smart Sticky Header */
.top-bar {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    z-index: 1001;
    line-height: 1.4;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--text-light);
    opacity: 0.8;
}

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

.header-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border: 1px solid transparent;
    min-width: 220px;
    text-align: center;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255,255,255,0.05);
}

/* Hero Base */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 1;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-btns {
    display: flex !important;
    gap: 1.5rem;
    justify-content: center;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    margin-top: 3rem;
    width: 100%;
}

/* Ensure equal widths and side-by-side on desktop */
.hero-btns .btn, 
.destination-btns .btn {
    flex: 0 0 240px !important;
    min-width: 240px !important;
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-header {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h3 {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--primary-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .header-cta {
        display: none;
    }
    section {
        padding: 8rem 0;
    }
    .header-container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    .section-title span {
        font-size: 0.8rem;
        letter-spacing: 0.2rem;
    }
    .top-bar {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
        line-height: 1.3;
    }
    header {
        background-color: rgba(10, 10, 10, 0.9);
    }
    section {
        padding: 4rem 0;
    }
    .hero {
        height: 100vh;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    .hero-btns,
    .destination-btns {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 1rem;
        align-items: center;
    }
    .hero-btns .btn,
    .destination-btns .btn {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 320px !important;
        flex: 1 1 auto !important;
    }
}
