/* 
* Bella Beauty Salon - Custom CSS
* This file contains custom styles for the Bella Beauty Salon website
*/

:root {
    /* Primary color palette */
    --primary-color: #e0b0cc; /* Soft pink */
    --primary-dark: #c98bac;
    --primary-light: #f2d8e9;
    --secondary-color: #6c757d;
    --accent-color: #8a5c85; /* Deep mauve accent */
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

/* Base styles */
body {
    font-family: var(--body-font);
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-width: 180px;
    height: auto;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-primary {
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-link.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    text-decoration: none;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Page Title */
.page-title {
    padding: 60px 0;
    background-color: var(--primary-light);
}

/* Service Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Process Icons */
.process-icon, .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Team Members */
.team-member-img {
    position: relative;
    overflow: hidden;
}

.team-member-img img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.team-social {
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    opacity: 1;
}

/* Footer */
.footer-logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

/* Cookie Consent */
.cookie-consent {
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Service Tabs */
.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 5px;
    color: #333;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Form Styling */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(224, 176, 204, 0.25);
}

.form-floating label {
    color: #6c757d;
}

/* Legal Pages */
.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
}

.legal-content h2, 
.legal-content h3 {
    margin-top: 2rem;
}

/* Working Hours */
.working-hours li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.working-hours li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .team-member-img img {
        height: 250px;
    }
    
    .nav-pills .nav-link {
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .min-vh-75 {
        min-height: 75vh;
    }
}

/* For very small screens */
@media (max-width: 575.98px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .team-member-img img {
        height: 220px;
    }
}
