/* Custom styles to enhance the Bootstrap framework */

/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    padding-top: 56px; /* For fixed navbar */
}

/* Hero section */
.hero-section {
    background-color: #f8f9fa;
    height: 100vh;
    min-height: 500px;
    padding: 100px 0;
}

.hero-image {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Section styling */
.section-title {
    margin-bottom: 30px;
    position: relative;
    color: #2b5d62;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e9c46a;
    margin-top: 10px;
}

/* Card styling */
.card {
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Testimonial cards */
.testimonial-card {
    background-color: #f8f9fa;
    border-left: 4px solid #e9c46a;
}

.client-name {
    font-style: italic;
    font-weight: 600;
    color: #2b5d62;
}

/* Contact form */
#contactForm .form-control, #contactForm .form-select {
    padding: 12px;
    border-radius: 0;
    border: 1px solid #ddd;
}

#contactForm .form-control:focus, #contactForm .form-select:focus {
    box-shadow: none;
    border-color: #e9c46a;
}

/* Social icons */
.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e9c46a;
}

/* Desert-themed color accents */
.btn-primary {
    background-color: #e76f51;
    border-color: #e76f51;
}

.btn-primary:hover {
    background-color: #e9c46a;
    border-color: #e9c46a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        text-align: center;
    }
    
    .section-title:after {
        margin: 10px auto 0;
    }
}
