/* Custom CSS for the Appointment Booking Website */

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

.logo{
    mix-blend-mode: multiply;
    
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.hero-section h1 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Professional Cards */
.professional-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.professional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.professional-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Service Cards */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

/* Testimonial Cards */
.testimonial-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

/* Buttons */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-outline-primary {
    color: #3498db;
    border-color: #3498db;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer */
footer {
    background-color: #2c3e50;
}

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

footer a:hover {
    color: #3498db !important;
    text-decoration: none;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Authentication Pages */
.auth-section {
    background-color: #f8f9fa;
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
}

.auth-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6c757d;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider span {
    padding: 0 10px;
}

.social-login button {
    transition: all 0.3s ease;
}

.social-login button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toggle-password {
    cursor: pointer;
}

.registration-type-selector {
    margin-bottom: 30px;
}

.registration-type-selector .btn {
    padding: 10px 20px;
    min-width: 150px;
}

/* Password Strength */
.password-strength .progress {
    margin-top: 5px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 30px;
    }
    
    .professional-card, .service-card, .testimonial-card {
        margin-bottom: 20px;
    }
    
    .auth-section {
        padding: 40px 0;
    }
    
    .registration-type-selector .btn {
        min-width: 120px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .auth-card {
        padding: 15px;
    }
    
    .registration-type-selector {
        flex-direction: column;
    }
    
    .registration-type-selector .btn {
        margin-bottom: 10px;
        width: 100%;
    }
}