/* --- Styled Navbar --- */
.styled-header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 999;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin-left: 600px;
    gap: 25px;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-links li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #ff69b4;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.navbar .nav-links li a:hover::after,
.navbar .nav-links li a.active::after {
    width: 100%;
}

.navbar .nav-links li a:hover,
.navbar .nav-links li a.active {
    color: #ff69b4;
}

/* --- Hero Section Styling --- */
.hero-hair {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    background: linear-gradient(135deg, #ffe1f0, #ffc0cb);
    text-align: center;
    animation: fadeInHero 1.2s ease-out;
}

.hero-hair-content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
}

.hero-hair-content p {
    font-size: 1.2rem;
    color: #555;
}

/* Hero Entrance Animation */
@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff0f5;
    color: #333;
}

/* Header */
.hair-header {
    background: linear-gradient(to right, #ffb6c1, #ffc0cb);
    padding: 0px 0;
    text-align: center;
    color: #fff;
    animation: fadeIn 2s ease-out;
}

.hair-header h1 {
    font-size: 2.8rem;
    margin: 0;
}

.hair-header p {
    font-size: 1.2rem;
}

/* Tips Section */
.tips-section {
    padding: 40px 20px;
    background: #fff;
    animation: slideInUp 1.5s ease-out;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.tips-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.tips-list li {
    background: #ffe4e1;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 6px solid #ff69b4;
    border-radius: 8px;
    font-size: 1rem;
}

/* Hair Services */
.hair-services {
    padding: 50px 20px;
    background: #fff5f8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.hair-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.hair-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hair-card h3 {
    padding: 15px 10px;
    font-weight: 600;
    background: #fff0f5;
    margin: 0;
}

.hair-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.hair-card:hover img {
    transform: scale(1.08);
}

/* Footer */
.hair-footer {
    background: #ffb6c1;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
footer {
    background-color: #F8D0D5; /* Soft Blush Pink Background */
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .social-links {
    margin-top: 20px;
}

footer .social-links a {
    color: white;
    margin: 0 15px;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

footer .social-links a:hover {
    color: #F04A35; /* Deep Coral on Social Link Hover */
}
