* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.btn.primary {
    background-color: #d4af37;
    color: #fff;
}

.btn.primary:hover {
    background-color: #b8962e;
}

.btn.secondary {
    background-color: #4a5c3e;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #3b4a32;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #4a5c3e;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

.ctas {
    margin-left: 20px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    background-image: url('/img/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.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.2));
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.introduction {
    padding: 100px 0;
    background-color: #fff;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.features {
    padding: 50px 0;
}

.feature-item {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.feature-item:nth-child(even) {
    background-color: #fff;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.feature-text {
    flex: 1;
}

.reverse .feature-content {
    flex-direction: row-reverse;
}

.offers {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background-color: #f5f5f5;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.offer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.offer-card p {
    margin-bottom: 12px;
}

.price {
    font-weight: 600;
    color: #d4af37;
    margin: 16px 0 8px;
    font-size: 1.3rem;
}

.dates {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.offer-card .btn {
    margin-top: auto;
    padding: 12px 24px;
    font-size: 1rem;
}

.rooms {
    padding: 100px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3, .room-card p {
    padding: 10px 20px;
}

.room-card .btn {
    margin: 0 20px 20px;
}

.footer {
    background-color: #4a5c3e;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-info, .footer-social, .footer-lang {
    flex: 1;
    min-width: 200px;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-legal {
    margin: 20px 0;
}

.footer-legal a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.copyright {
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .ctas {
        margin: 20px 0 0;
        text-align: center;
    }

    .nav-toggle-label {
        display: block;
    }

    #nav-toggle:checked ~ .nav {
        display: flex;
    }

    #nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    #nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .intro-content {
        flex-direction: column;
    }

    .feature-content {
        flex-direction: column;
    }

    .reverse .feature-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }
}

.footer-lang select {
    appearance: none;
    background: #3b4a32;
    color: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 9px 40px 9px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-lang::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 9px;
    pointer-events: none;
}

.footer-lang select:hover {
    background: #4a5c3e;
    transform: translateY(-1px);
}

.footer-lang select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

.logo {
    font-size: 0;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

/* Experiences Page Specific Styles */

/* Hero variation */
.experiences-hero {
    background-image: url('/img/Presidential-Oceanfront-Villa1-1.jpg');
    /* Ganti dengan gambar real nanti, misal: sunrise over forest atau ocean view */
}

/* Intro section */
.experiences-intro {
    padding: 100px 0 60px;
    text-align: center;
    background-color: #fff;
}

.experiences-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4a5c3e;
}

.experiences-intro .intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
}

/* Experiences Grid */
.experiences-grid-section {
    padding: 60px 0 100px;
    background-color: #f5f5f5;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.experience-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.experience-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.experience-content {
    padding: 28px 24px;
    text-align: center;
}

.experience-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #4a5c3e;
}

.experience-content p {
    margin-bottom: 12px;
    color: #666;
}

.duration, .price {
    font-weight: 600;
    color: #d4af37;
}

.experience-content .btn {
    margin-top: 20px;
    padding: 12px 32px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #4a5c3e;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn.large {
    padding: 16px 48px;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experiences-intro {
        padding: 80px 0 40px;
    }
    .experiences-intro h2 {
        font-size: 32px;
    }
    .cta-section {
        padding: 80px 0;
    }
}