/* Custom CSS untuk Website Registrasi Pendakian Gunung Sibayak */

:root {
    --primary-color: #23404a; /* biru gelap */
    --secondary-color: #3a5d63; /* teal gelap */
    --accent-color: #6ec1c7; /* teal terang */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(120deg, #23404a 0%, #3a5d63 100%);
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/gunung.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-hero {
    background: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: #7cb342;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.section-title p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.12);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    margin: 2rem 0;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Status Badge */
.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* Table Styles */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table thead th {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

/* Timeline Styles */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 80px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 0;
    margin-right: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    padding-left: 0;
}

@media (max-width: 767px) {
    .timeline-item {
        padding-left: 0;
    }
    .timeline-icon {
        position: static;
        margin: 0 auto 1rem auto;
        display: block;
    }
    .timeline-content {
        margin-right: 0;
    }
}

/* Contact Method Styles */
.contact-method {
    padding: 2rem;
    text-align: center;
}

.contact-method h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #666;
    margin-bottom: 0;
}

.contact-method h5, .contact-method p {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.contact-method {
    color: #fff !important;
}

/* Hero Stats */
.hero-stats {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Price Styles */
.price {
    margin: 1.5rem 0;
}

.price .currency {
    font-size: 1.2rem;
    color: #666;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price .period {
    font-size: 1rem;
    color: #666;
}

/* Feature Item */
.feature-item {
    margin-bottom: 2rem;
}

.feature-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    margin-bottom: 0;
}

/* Weather Info */
.weather-info {
    padding: 1rem;
}

.weather-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.weather-info p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.weather-info small {
    font-size: 0.9rem;
} 

/* Card khusus untuk fitur dan pricing agar rata tinggi dan padding konsisten */
.feature-card, .pricing-card {
    min-height: 100%;
    border-radius: 18px;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
}
.feature-card:hover, .pricing-card:hover {
    box-shadow: 0 8px 32px rgba(44,85,48,0.12), 0 1.5px 6px rgba(44,85,48,0.08);
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
}
.pricing-card .badge {
    font-size: 1rem;
    padding: 0.5em 1.2em;
    border-radius: 50px;
    letter-spacing: 1px;
}
.pricing-card .card-title {
    font-weight: 700;
    color: var(--primary-color);
}
.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}
.pricing-card ul {
    text-align: left;
    margin: 0 auto 1rem auto;
    max-width: 260px;
}
@media (max-width: 991px) {
    .feature-card, .pricing-card {
        margin-bottom: 1.5rem;
    }
}

/* Map Placeholder Styles */
.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed #dee2e6;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    color: #6c757d;
}

.map-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.map-content p {
    margin-bottom: 0.5rem;
}

.map-content small {
    font-size: 0.85rem;
}

.map-placeholder:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    transition: all 0.3s ease;
} 

.bg-light .section-title h2 {
    color: var(--primary-color);
    text-shadow: none;
}
.bg-light .section-title p {
    color: #23404a;
    text-shadow: none;
} 

.bg-primary {
    background-color: #6ec1c6 !important;
} 

/* Untuk judul dan deskripsi pada section bantuan */
.status-help-section h3,
.status-help-section p {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
} 