/* Male Salon - Home Page Specific CSS */

/* Header Styles */
.main-header {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #222;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-icon {
    font-size: 24px;
    margin-right: 10px;
    color: var(--primary);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav ul li a:hover {
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Pain Points */
.pain-points {
    background-color: var(--secondary);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #222;
    transition: var(--transition);
}

.pain-card:hover {
    border-color: var(--primary);
}

.pain-card i {
    font-size: 40px;
    color: #ff4444;
    margin-bottom: 20px;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

/* Pricing Table */
.pricing-table {
    background-color: var(--secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background-color: var(--bg-card);
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
    color: var(--primary);
}

.price-features {
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.price-features li i {
    color: #22c55e;
    margin-right: 10px;
}

/* Form Contact */
.contact-section {
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
}

.contact-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #0a0a0a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
}

/* Footer Styles */
.main-footer {
    padding: 80px 0 30px;
    background-color: #050505;
    border-top: 1px solid #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-info p {
    margin: 20px 0;
    color: var(--text-muted);
}

.social-links a {
    font-size: 20px;
    margin-right: 15px;
    color: var(--text-muted);
}

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

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #111;
    color: #444;
}

@media (max-width: 992px) {
    .contact-flex { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 40px; }
}

/* Package Highlight Section */
.package-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.package-highlight__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.package-highlight__badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-highlight h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.package-highlight p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.package-highlight__actions {
    display: flex;
    gap: 15px;
}

.package-highlight__card {
    background: #fff;
    color: #111;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.package-highlight__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 5px;
}

.package-highlight__price {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
}

.package-highlight__note {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.4;
}

.package-highlight__features {
    list-style: none;
    padding: 0;
}

.package-highlight__features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.package-highlight__features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #22c55e;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .main-header { padding: 10px 0; }
    .logo-text { font-size: 16px; }
    .logo-icon { font-size: 20px; }
    .desktop-nav { display: none !important; }
    .desktop-nav.active { 
        display: block !important;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
        background: #0a0a0a;
        padding: 30px;
        z-index: 999;
        border-bottom: 1px solid #222;
    }
    .desktop-nav.active ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .mobile-toggle { display: block; font-size: 22px; cursor: pointer; }

    /* Package Highlight Mobile */
    .package-highlight { padding: 50px 0; }
    .package-highlight__container { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        text-align: center;
    }
    .package-highlight h2 { font-size: 28px; }
    .package-highlight__card { 
        padding: 25px 15px; 
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .package-highlight__price { font-size: 36px; }
    .package-highlight__actions { 
        flex-direction: column; 
        width: 100%;
    }
    .package-highlight__actions .btn { width: 100%; text-align: center; }

    /* Pricing Mobile */
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: scale(1); margin: 10px 0; }
    .price-card { padding: 40px 20px; }
}
