/* Custom CSS untuk Website Wisata Gunung Indonesia */

/* Warna tema */
:root {
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --sky-blue: #87CEEB;
    --dark-blue: #1A237E;
}

/* Body dan tipografi */
body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    padding-top: 76px; /* Untuk mengkompensasi navbar fixed */
    background-color: #f8faf9;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-green);
}

/* Navbar custom */
.bg-green {
    background-color: var(--primary-green) !important;
}

.navbar-brand {
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #23b952 !important;
    text-decoration: underline;
}

/* Carousel custom */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}

/* Tombol custom */
.btn-green {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: rgb(74, 184, 74);
}

.btn-green:hover {
    background-color: #1B5E20;
    border-color: #1B5E20;
    color: rgb(43, 192, 35);
}

/* Card custom */
.card {
    transition: transform 0.3s;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Warna teks khusus */
.text-green {
    color: var(--primary-green) !important;
}

/* Form custom */
.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

/* Map container */
.map-container {
    overflow: hidden;
    border-radius: 8px;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}