/* Chic Unisex Salon - Custom Styles */

:root {
    --primary-color: rgb(227, 83, 54);
    /* User Brand Color */
    --secondary-color: #343a40;
    /* Dark Gray */
    --light-color: #f8f9fa;
    --text-color: #333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons - Brand Styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff !important;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #c8512e;
    border-color: #c8512e;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Section General */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

/* Services */
.service-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

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

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

.service-card .card-body {
    padding: 2rem;
    text-align: center;
}

.service-card h5 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

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

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
}

.social-links a:hover {
    background: var(--primary-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #777;
}

/* Contact Form Styling */
.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(227, 83, 54, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-container h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff9166);
    margin: 1rem auto 0;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fff;
    font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(227, 83, 54, 0.15);
    outline: none;
    background-color: #fff;
}

.form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(227, 83, 54, 0.5);
}

.btn-book-appointment {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.4s ease;
    color: white;
    text-transform: uppercase;
}

.btn-book-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(227, 83, 54, 0.3);
    background: linear-gradient(135deg, #ff6b35 0%, var(--primary-color) 100%);
}

.btn-book-appointment:active {
    transform: translateY(-1px);
}

.form-text-center {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.form-text-center a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.form-text-center a:hover {
    color: #c8512e;
    text-decoration: underline;
}

/* Contact Info Card */
.contact-info-container {
    background: linear-gradient(135deg, rgba(227, 83, 54, 0.05) 0%, rgba(227, 83, 54, 0.02) 100%);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    height: 100%;
}

.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-container h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff9166);
    margin-top: 1rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.info-item p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.info-item a:hover {
    color: #c8512e;
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* Page Section Styling */
.content-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid rgba(227, 83, 54, 0.08);
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff9166);
    margin-top: 1rem;
}

.content-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border: none;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-color), #ff9166);
    border-radius: 2px;
}

.content-section p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Service Cards Enhancement */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.card-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Gallery Enhancement */
.gallery-image {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-image img {
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}