/* public/css/app.css */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--primary-color);
}

/* Slider Styles */
    /* .slider-container {
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .carousel-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    } */

.nav-link.active {
    background-color: #e9ecef; /* light gray background */
    color: #495057 !important; /* dark gray text */
    border-radius: 5px;
}

/* Quote Styles */
.quote-container {
    text-align: center;
    margin: 2rem 0;
}

.quote {
    font-style: italic;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0;
}

/* Button Styles */
.btn-primary {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    background-color: var(--secondary-color);
    border: none;
    color: white;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

/* Video Background Section */
.video-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.video-quote {
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* How It Works Section */
.how-it-works {
    background-color: #f8f9fa;
}

.step-card {
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background-color: var(--accent-color) !important;
    transform: scale(1.1);
}

/* Why GoWasiat Section */
.why-gowasiat {
    background-color: white;
}

.feature-icon {
    transition: all 0.3s ease;
}

.card:hover .feature-icon {
    background-color: var(--accent-color) !important;
    transform: rotate(10deg) scale(1.1);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Heading Styles */
h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 25%;
}

/* Testimonial Slider Section */
.testimonial-slider {
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
}

.testimonial-content {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60%;
}

.blockquote-footer {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
}

/* Info Wasiat Page Specific Styles */
.info-wasiat-container {
    padding: 50px 0;
}

.info-wasiat-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-wasiat-content {
    padding: 40px;
}

.alert-note {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .quote {
        font-size: 1.2rem;
    }
    
    .testimonial-slider {
        padding: 50px 0;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1.2rem !important;
    }
    
    .info-wasiat-content {
        padding: 20px;
    }
}