
        /* Custom styles for Dallas Hair Salon */


    /* General styles */
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
    }

    .hero-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    /* Navbar styles */
    .navbar {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
    }

    /* Card styles */
    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Button styles */
    .btn-primary {
        background-color: #d63384;
        border-color: #d63384;
    }

    .btn-primary:hover {
        background-color: #b02a6f;
        border-color: #b02a6f;
    }

    .btn-outline-primary {
        color: #d63384;
        border-color: #d63384;
    }

    .btn-outline-primary:hover {
        background-color: #d63384;
        border-color: #d63384;
    }

    /* Section padding */
    section {
        padding: 5rem 0;
    }

    /* Gallery image hover effect */
    .gallery img {
        transition: transform 0.3s ease;
    }

    .gallery img:hover {
        transform: scale(1.03);
    }

    /* Social icons */
    .social-icons a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
    }

    .social-icons a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        section {
            padding: 3rem 0;
        }
        
        .hero-section .col-md-6 {
            margin-bottom: 2rem;
        }
    }


/*=============================================================================*/

#navbar {
    background-color: #eb8f1e;
}

#navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 0.5rem;
}

nav ul li a {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    height: 100%;
}

#navbar li a:hover {
    background-color: #d63384 !important;
    color: white !important;
}


/*==================================================================================*/
/* Target Bootstrap nav links inside the navbar */
.navbar-nav .nav-link {
    color: black; /* base color */
    padding: 1rem 1.2rem; /* to match height and spacing */
    transition: background-color 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    background-color: #d63384;
    color: white !important;
    border-radius: 5px; /* Optional: rounded hover background */
}

/* Optional: Active page styling */
.navbar-nav .nav-link.active {
    background-color: #d63384;
    color: white !important;
    border-radius: 5px;
}

.navbar-nav .btn-primary {
    background-color: #d63384;
    border-color: #d63384;
}

.navbar-nav .btn-primary:hover {
    background-color: #b02a6f;
    border-color: #b02a6f;
}




/*===================================================================================*/


        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Brand Colors */
        :root {
            --primary-color: #eb8f1e;
            --accent-color: #d63384;
        }

        .navbar {
            background-color: var(--primary-color);
        }

        .navbar .nav-link {
            color: white !important;
            font-size: 18px;
        }

        .navbar .nav-link:hover {
            background-color: var(--accent-color);
            border-radius: 5px;
        }

        .hero-section {
            background: linear-gradient(135deg, #fce3cc, #fcd6ec);
            padding: 20px 0;
            color: #333;
        }

        .hero-section h1 {
            font-size: 3rem;
            color: var(--accent-color);
        }

        .about-image {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            color: var(--primary-color);
        }

        .highlight-box {
            background-color: #fff3e6;
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 8px;
        }

        .testimonial {
            background-color: #fef0f5;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .btn-accent {
            background-color: var(--accent-color);
            color: white;
        }

        .btn-accent:hover {
            background-color: #b02a6f;
            color: white;
        }

        footer {
            background-color: #333;
            color: white;
            padding: 2rem 0;
        }
