:root {
    --primary: #000000;
    --primary-dark: #3b2400; /* dark orange elegan */
    --secondary: #ff9e00;
    --dark: #2d3748;
    --light: #f8f9fa;
    --gray: #718096;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.info-item span {
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.info-input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
    transition: 0.2s;
}

.info-input:focus {
    border-color: var(--primary);
    background: #fff;
}

.btn-book:hover {
    background: #003f96;
}

.btn-back {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-back:hover {
    background: var(--primary);
    color: #fff;
}

body {
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
}

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

/* Header Styles */
.page-header {
    background: #000 !important; /* hitam solid */
    color: #f28c00 !important; /* warna teks */
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f28c00 !important;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 8px;
}

/* Main Content Layout */
.camp-detail {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.camp-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease; /* animasi geser */
}

.carousel-wrapper img {
    width: 100%;
    flex-shrink: 0;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.carousel-wrapper img:hover {
    transform: scale(1.03);
}

.camp-image-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.camp-image-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.camp-image-dots .dot.active {
    background-color: #ffa500; /* dot aktif berwarna oranye */
}

/* Description Section */
.description-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.description-section h2 {
    color: #f28c00 !important;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

.description-section p {
    color: var(--dark);
    line-height: 1.8;
}

/* Facilities Section */
.facilities-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.facilities-section h2 {
    color: #f28c00 !important;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.75rem;

    background: var(--light);
    border-radius: var(--radius);

    transition: transform 0.3s, box-shadow 0.3s;
}

.facility-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.facility-icon {
    margin-right: 1rem;
    color: #fff !important;
    font-size: 1.2rem;

    background: #f28c00;
    width: 36px;
    height: 36px;

    border-radius: 50%; /* 🔥 JADI LINGKARAN */

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0; /* anti gepeng */

    box-shadow: 0 0 10px rgba(242, 140, 0, 0.5);
    transition: 0.3s ease;
}

.facility-item:hover .facility-icon {
    background: #ff9c22;
    box-shadow: 0 0 14px rgba(255, 156, 34, 0.7);
}


/* Sidebar */
.camp-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 2rem;
}

.booking-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-book {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.btn-book:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 158, 0, 0.4);
}

.btn-back {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

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

/* Additional Info */
.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

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

/* Footer */
.page-footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }
}
