/* Custom CSS for the public-facing pages */

/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Hero section styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 70vh;
    min-height: 500px;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.6);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Prayer times section */
.prayer-times-section {
    background-color: #f8f9fa;
}

.prayer-time-card {
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(13, 110, 253, 0.08);
    transition: transform 0.2s;
}

.prayer-time-card:hover {
    transform: translateY(-3px);
    background-color: rgba(13, 110, 253, 0.12);
}

.current-time i {
    color: #0d6efd;
}

/* Package cards */
.tour-card {
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.tour-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card:hover .card-img-top {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.tour-info i {
    width: 20px;
    text-align: center;
}

.spaces-left {
    font-size: 0.8rem;
}

/* About section */
.feature-list {
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 12px;
    list-style-type: none;
    display: flex;
    align-items: start;
}

.feature-list li i {
    margin-right: 10px;
    margin-top: 3px;
}

.image-grid img {
    transition: transform 0.3s;
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.image-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author h5 {
    font-weight: 600;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        height: 50vh;
        min-height: 350px;
    }
}
