/*
Theme Name: Astra Child - JJJ Jeans
Theme URI: https://wpastra.com/
Template: astra
Author: Your Name
Author URI: http://wpastra.com/about/
Description: Premium Custom Child Theme for Jai Jhulelal Jeans (JJJ Jeans)
Version: 1.0.1
Text Domain: astra-child
*/

/* ========================================================
   1. CSS VARIABLES (Premium High-Fashion Theme)
   ======================================================== */
:root {
    --jjj-bg-light: #ffffff;
    --jjj-text-dark: #111111;
    --jjj-text-muted: #666666;
    --jjj-border-color: #eeeeee;
    --jjj-accent: #000000;
    --jjj-font-heading: 'Montserrat', sans-serif;
    --jjj-font-body: 'Poppins', sans-serif;
}

/* ========================================================
   2. GLOBAL STYLES
   ======================================================== */
body {
    background-color: var(--jjj-bg-light);
    color: var(--jjj-text-dark);
    font-family: var(--jjj-font-body);
    margin: 0;
    padding-top: 80px; /* Fixed Header ke liye space */
    -webkit-font-smoothing: antialiased;
}

.jjj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================================
   3. SLEEK ANIMATED HEADER (Glassmorphism)
   ======================================================== */
.jjj-site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jjj-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Animation */
.jjj-logo {
    font-family: var(--jjj-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--jjj-text-dark);
    margin: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}
.jjj-logo:hover {
    transform: scale(1.05);
}
.jjj-logo span {
    font-weight: 300;
}

/* Navigation Links (Center-Out Underline) */
.jjj-nav-list {
    display: flex;
    gap: 35px;
    list-style: none !important;
    margin: 0;
    padding: 0;
}
.jjj-nav-link {
    color: var(--jjj-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}
.jjj-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--jjj-accent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}
.jjj-nav-link:hover {
    color: var(--jjj-text-dark);
}
.jjj-nav-link:hover::after {
    width: 100%;
}

/* Header Action Button */
.jjj-btn-header {
    background-color: var(--jjj-text-dark);
    color: #ffffff;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}
.jjj-btn-header:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========================================================
   4. HERO SECTION (Minimalist Home)
   ======================================================== */
.jjj-hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: #fafafa;
}

.jjj-hero-content {
    max-width: 800px;
}

.jjj-hero-content h1 {
    font-family: var(--jjj-font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--jjj-text-dark);
}

.jjj-hero-content h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--jjj-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Primary Hero Button */
.jjj-btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--jjj-accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--jjj-accent);
    transition: all 0.4s ease;
}
.jjj-btn-primary:hover {
    background-color: transparent;
    color: var(--jjj-accent);
}

/* ========================================================
   5. ADVANCED DARK FOOTER
   ======================================================== */
.jjj-site-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 0 20px;
}

.jjj-footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.jjj-footer-logo {
    font-family: var(--jjj-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.jjj-footer-logo span {
    font-weight: 300;
}

.jjj-footer-widget h3 {
    font-family: var(--jjj-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jjj-footer-widget p {
    color: #888888;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Footer Links Slide Animation */
.jjj-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.jjj-footer-links li {
    margin-bottom: 12px;
}
.jjj-footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.jjj-footer-links a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

/* Interactive Newsletter UI */
.jjj-newsletter {
    display: flex;
    margin-top: 15px;
    border-bottom: 1px solid #444444;
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
}
.jjj-newsletter:focus-within {
    border-color: #ffffff;
}
.jjj-input {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 100%;
    padding: 8px 0;
    outline: none;
}
.jjj-btn-submit {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.jjj-btn-submit:hover {
    transform: translateX(5px);
}

/* Social Icon Hover Rotate */
.jjj-social-icons {
    margin-top: 25px;
}
.jjj-social-link {
    color: #888888;
    display: inline-block;
    transition: all 0.3s ease;
}
.jjj-social-link:hover {
    color: #ffffff;
    transform: scale(1.2) rotate(5deg);
}

.jjj-footer-bottom {
    text-align: center;
    border-top: 1px solid #222222;
    padding-top: 20px;
    margin-top: 60px;
    font-size: 0.85rem;
    color: #555555;
}

/* ========================================================
   6. MOBILE RESPONSIVENESS
   ======================================================== */
@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
    .jjj-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    .jjj-header-action {
        display: none;
    }
    .jjj-hero-content h1 {
        font-size: 3rem;
    }
    .jjj-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .jjj-footer-links a:hover {
        transform: none;
    }
    .jjj-newsletter {
        justify-content: center;
    }
}