@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Cursive:wght@400..700&display=swap');

:root {
    --primary-color: #008080; /* Teal */
    --secondary-color: #00A3A3; /* Lighter Teal */
    --dark-blue: #0A2E36;
    --text-color: #5F5F5F;
    --background-color: #F7F9FA;
    --white-color: #FFFFFF;
    --border-color: #EAEAEA;
    --shadow-color: rgba(0, 0, 0, 0.05);
}

/* --- BASE & RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

/* --- NAVBAR --- */

.navbar-logo {
    font-family: "Edu NSW ACT Cursive", cursive;
    font-size: 2rem;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

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

.navbar-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white-color);
}

.navbar-menu a {
    color: var(--white-color);
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--secondary-color);
}

.navbar-social a {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.navbar-social a:hover {
    color: var(--secondary-color);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 46, 54, 0.6), rgba(10, 46, 54, 0.596));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: var(--secondary-color);
}

.hero-booking-bar {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
}

.bar-item {
    text-align: left;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.bar-item:last-of-type {
    border-right: none;
}

.bar-item label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
}

.bar-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.arrow-button {
    background-color: var(--secondary-color);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.arrow-button:hover {
    transform: scale(1.1);
}

/* --- SECTIONS --- */
main {
    background-color: var(--background-color);
}

section {
    padding: 80px 0;
}

.section-title-background {
    font-size: 8rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 0;
    user-select: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

/* --- PROMO SECTION --- */
.section-promo {
    background-color: var(--dark-blue);
    color: var(--white-color);
    padding: 40px 0;
}
.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.promo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.button-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.button-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* --- DESTINATIONS (WAHANA) --- */
.section-destinations .container {
    position: relative;
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.destination-card {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}
.destination-card:hover {
    transform: translateY(-10px);
}
.destination-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.card-content {
    padding: 25px;
}
.card-content h4 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

/* --- VIRTUAL TOUR --- */
.section-virtual-tour {
    background-color: var(--white-color);
}
.vt-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.vt-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.vt-player {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    height: 450px;
}
.vt-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- PACKAGES (MENU) --- */
.section-menu-board .container {
    position: relative;
    text-align: center;
}
.menu-board-image {
    display: inline-block;
    max-width: 900px; /* Lebar maksimal agar nyaman dilihat di layar besar */
    width: 100%;
    margin-top: 30px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow-color);
}
.menu-board-image img {
    border-radius: 8px;
}

/* --- PRICING --- */
.section-pricing {
    background-color: var(--white-color);
}
.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.pricing-item {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}
.pricing-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
}
.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}
.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}
.pricing-item.featured {
    background-color: var(--dark-blue);
    color: var(--white-color);
    border-color: var(--dark-blue);
    transform: scale(1.05);
}
.pricing-item.featured h4, .pricing-item.featured .price, .pricing-item.featured .price span, .pricing-item.featured .description {
    color: var(--white-color);
}
.tax-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
}

/* --- LOCATION --- */
.section-location {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}
.location-info {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-info h3 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}
.contact-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 20px 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.footer a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: var(--white-color);
}
.footer-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-booking-bar {
        width: 90%;
    }
    .package-card, .package-card:nth-child(odd) {
        grid-template-columns: 1fr;
    }
    .package-card:nth-child(odd) .package-image {
        order: 1;
    }
    .section-location {
        grid-template-columns: 1fr;
    }
    .location-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
    }
    .navbar-menu {
        margin: 20px 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-booking-bar {
        display: none; /* Hide on mobile for simplicity */
    }
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    .promo-cta {
        margin-top: 20px;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .vt-content {
        grid-template-columns: 1fr;
    }
    .vt-text {
        text-align: center;
    }
    .vt-text .section-title {
        text-align: center;
    }
    .pricing-table {
        grid-template-columns: 1fr;
    }
    .pricing-item.featured {
        transform: scale(1);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-menu a {
        margin: 0 10px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
