:root {
    --primary-color: #8B7355;
    --secondary-color: #D2B48C;
    --accent-color: #DEB887;
    --text-color: #4A4A4A;
    --light-bg: #FAF9F6;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: bold;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), 
                url('public/images/hero-bg.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(5px);
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Services */
.service-card {
    padding: 2rem;
    text-align: center;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s;
    height: 100%;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Credentials */
.credential-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Appointment Form */
.appointment-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonial-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    margin: 1rem;
}

.client-name {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--light-bg);
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}