/* Main Styles for Sheikh Idd Kazungu Website */

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Carousel Styles */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
    bottom: 50px;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

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

.service-card img {
    height: 300px;
    object-fit: contain;
    width: 100%;
}

/* Full size images */
.full-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Gallery images */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonial Cards */
.testimonial-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Floating Icons */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-icon, .phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-icon {
    background-color: #25D366;
}

.phone-icon {
    background-color: #007bff;
}

.whatsapp-icon:hover, .phone-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon i, .phone-icon i {
    font-size: 30px;
}

/* Form Styles */
.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #343a40;
}

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

footer a:hover {
    color: #007bff !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        bottom: 20px;
        padding: 10px;
    }
    
    .floating-icons {
        right: 10px;
        bottom: 10px;
    }
    
    .whatsapp-icon, .phone-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i, .phone-icon i {
        font-size: 24px;
    }
}