:root {
    --primary-color: #2c3e50;
    --secondary-color: #f39c12;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}
.page-logo {
    height: 40px;
    width: auto;
}
.page-title {
    margin: 0;
    font-size: 24px;
    color: #333;
}
img.imglogo {
    width: 50px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.butons {
    display: flex;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}
ul.lis {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

a:hover {
    color: var(--secondary-color);
}

a.active {
    background: #f39c12;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 26px;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


       
        /* Barber Hero with Animated Gradient */
        .hero {
            background: linear-gradient(-45deg, 
                #1a1a1a,  /* Dark charcoal */
                #3d1a1a,  /* Deep burgundy */
                #1a3d1a,  /* Dark forest green */
                #1a1a3d   /* Navy blue */
            );
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Service Icons */
        .service-icon {
            position: absolute;
            opacity: 0.15;
            z-index: 0;
            font-size: 40px;
            animation: float 6s ease-in-out infinite;
            filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
        }

        /* Barber Icons */
        .scissors {
            top: 20%;
            left: 10%;
            color: #e74c3c;
            animation-delay: 0s;
        }

        .razor {
            bottom: 15%;
            right: 10%;
            color: #f39c12;
            animation-delay: 1s;
        }

        /* Car Wash Icons */
        .car-wash {
            top: 70%;
            left: 15%;
            color: #3498db;
            animation-delay: 0.5s;
            font-size: 35px;
        }

        /* Water Bottle Icon */
        .water-bottle {
            top: 30%;
            right: 15%;
            color: #1abc9c;
            animation-delay: 1.5s;
            font-size: 30px;
        }

        /* Ice Cream Icon */
        .ice-cream {
            bottom: 25%;
            left: 20%;
            color: #e91e63;
            animation-delay: 2s;
            font-size: 32px;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        /* Content styling */
        .hero-content {
            position: relative;
            z-index: 1;
            padding: 20px;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn{
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn:hover {
            background: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .wa{
            border: none;
            background-color: #25d366;
        }

        .wa:hover {
            background: #118d3e;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }



.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}



.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links li {
        margin: 10px 0;
    }
}


/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0;
}


.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    display: flex;
    margin: 1rem 0;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: all 0.5s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    .contact-container {
        flex-direction: column;
    }
    .butons {
        flex-direction: column;
    }
    .container {
        width: 100%;
    }
}