/* --- RESET & VARIABLES --- */
/* --- RESET & VARIABLES --- */
:root {
    
    --insta-gradient: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    
    
    --text-dark: #1F2937;     
    --text-light: #4B5563;    
    --bg-white: #FFFFFF;
    --bg-light: #F3F4F6;      
    --bg-dark: #111827;       
    --max-width: 1100px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTTONS --- */

.btn-primary {
    display: inline-block;
    
    background: var(--insta-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none; 
}

.btn-primary:hover {
    
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-nav {
    background-color: var(--text-dark);
    color: white !important; 
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--insta-gradient) !important;
    color: white !important;
}

/* --- NAVIGATION --- */
.navbar {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e7eb;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: var(--insta-gradient);
    
    /* ADD THIS LINE TO FIX THE WARNING */
    background-clip: text; 
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- HERO SECTION --- */
.hero {
   
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), 
                url('hero-bg.png');

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* Adds a bit more spacing so we can see more of the background */
    padding: 140px 0 100px; 
    text-align: center;
    margin: 0 auto;
    /* Removed max-width here so the background stretches full width */
}

/* We need to re-center the text container since we removed max-width from the hero parent */
.hero .container {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative; /* Brings text above the background */
    z-index: 2;
}

.hero .subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero .btn-primary {
    position: relative;
    z-index: 2;
}

/* --- SECTIONS GENERAL --- */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* --- SERVICES (GRID) --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- AUDIENCE --- */
.audience-list {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.audience-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid;
    border-image: var(--insta-gradient) 1;
}

/* --- PROCESS --- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--insta-gradient);
    
    /* ADD THIS LINE */
    background-clip: text;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step h3 {
    margin-bottom: 10px;
}

/* --- ABOUT (DARK SECTION) --- */
.about-content {
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
    color: #d1d5db; /* Light gray text for dark bg */
}

.large-text {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* --- FAQ (ACCORDION) --- */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

/* --- FOOTER --- */
.footer {
    padding: 80px 0 40px;
    text-align: center;
    background-color: var(--bg-white);
    border-top: 1px solid #e5e7eb;
}

.footer h2 {
    margin-bottom: 30px;
}

.copyright {
    margin-top: 60px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real project we'd build a hamburger menu, keeping it simple here */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* --- CONTACT FORM --- */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.full-width {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* Mobile fix for the form row */
@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr; /* Stack name fields on small screens */
    }
}


/* --- FOOTER & SOCIALS --- */
.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between icons and copyright text */
}

.social-links {
    display: flex;
    gap: 25px; /* Space between the Email and Instagram icons */
}

.social-links a {
    font-size: 1.8rem; /* Made them slightly bigger */
    color: var(--text-light); /* Start gray */
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--insta-gradient);
    
    /* ADD THIS LINE */
    background-clip: text;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Update copyright margin since we used gap in the container */
.copyright {
    margin-top: 0; 
}

/* --- MOBILE MENU --- */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--text-dark); /* Default dark color */
}

/* --- PRODUCTS LIST (How I Work) --- */
.products-list-container {
    margin-top: 60px;
    text-align: center;
    background: #f9fafb; /* Very light gray box */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.products-list-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.products-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.products-tags li {
    background: white;
    border: 1px solid var(--primary-accent); /* Your purple accent color */
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.products-tags li:hover {
    background: var(--insta-gradient); /* Hover effect matches your brand */
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* --- MOBILE RESPONSIVENESS (FOOLPROOF VERSION) --- */
@media (max-width: 768px) {
    /* 1. HAMBURGER ICON */
    .hamburger {
        display: block;
        z-index: 2000; /* Super high priority so it's always clickable */
        position: relative;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* 2. THE MENU LIST */
    .nav-links {
        /* Layout & Position */
        position: fixed;
        top: 0;
        right: 0; /* Align to right */
        height: 100vh;
        width: 100%;
        
        /* Appearance */
        background-color: #ffffff !important; /* Force solid white */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        
        /* Animation Logic - Start hidden off-screen */
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
        z-index: 1500; /* Sit above the content but below the X button */
    }

    /* 3. THE ACTIVE STATE (Slide it in) */
    .nav-links.active {
        transform: translateX(0); /* Bring it to center */
    }

    /* 4. LINKS STYLING */
    .nav-links li {
        opacity: 0; /* Start hidden */
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* When active, fade links in */
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li a {
        font-size: 1.5rem;
        color: #1F2937 !important; /* Force dark text */
        font-weight: 600;
    }

    /* Hide the 'Contact Me' button style inside menu to keep it simple text, 
       OR keep button style if you prefer. Here we reset it to simple text for cleanliness */
    .nav-links .btn-nav {
        background: none !important;
        color: var(--primary-accent) !important;
        font-size: 1.5rem;
        padding: 0;
    }
}

