/* Custom styles for the landing page */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

main {
    background-color: #f8f9fa;
}

/* Add a bit of padding to the content section */
section {
    padding: 60px 0;
}

/* Style for the main background image */
.img-fluid.rounded.shadow-lg {
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
}

/* Custom button styles */
.btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #0088cc;
    border-color: #0088cc;
}

.btn-primary:hover {
    background-color: #006699;
    border-color: #006699;
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    h1.display-4 {
        font-size: 2rem;
    }
}
