/* ============================================
   BADLANDS BEAUTY STUDIO - FULL REDESIGN
   Similar to Kimberlin Ray Photography
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a574;
    --primary-dark: #b8904a;
    --secondary: #4a5568;
    --accent: #f5f3f0;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #7a7a7a;
    --gray-light: #f5f5f5;
    --border: #e8e8e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

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

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 2rem;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    line-height: 1.9;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--gray-light);
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.3);
}

.cta-button.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* ============================================
   SERVICES SHOWCASE
   ============================================ */

.services-showcase {
    padding: 5rem 2rem;
    background: var(--accent);
    max-width: 1200px;
    margin: 0 auto;
}

.services-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-large {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-large h3 {
    margin-bottom: 0.75rem;
}

.service-large p {
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 5rem 2rem;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.process-tagline {
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--accent);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    padding-top: 4.5rem;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.15);
}

.process-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.process-card h3 {
    margin-bottom: 0.75rem;
}

.process-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured {
    padding: 5rem 2rem;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.featured h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 380px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.featured-item:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.featured-item:hover img {
    transform: scale(1.08);
}

.featured-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 2.5rem 1.5rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
}

.featured-cta {
    text-align: center;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-preview {
    padding: 5rem 2rem;
    background: var(--accent);
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary);
}

.cta-section .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--primary);
}

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

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: var(--dark);
    color: var(--white);
    padding: 3.5rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--primary);
    font-size: 1rem;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */

.portfolio-section {
    padding: 4rem 2rem;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-container {
    max-width: 1000px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    background: var(--gray-light);
    color: var(--dark);
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 340px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-links {
    text-align: center;
    margin: 4rem 0;
}

.gallery-links h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pixieset-showcase h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin: 0 auto 3rem auto;
    font-size: 1rem;
    max-width: 600px;
}

.pixieset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pixieset-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pixieset-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pixieset-card h3 {
    margin-bottom: 1rem;
}

.pixieset-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--gray);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gray);
    line-height: 1.8;
}

.values-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--accent);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.15);
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 4rem 2rem;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    background: var(--accent);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.hidden {
    display: none;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.pixieset-section {
    background: var(--accent);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.pixieset-section h3 {
    margin-bottom: 0.75rem;
}

.pixieset-section p {
    margin-bottom: 1.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
        justify-content: center;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        height: 350px;
    }

    .services-grid-large {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-showcase,
    .process-section,
    .featured,
    .about-preview,
    .cta-section {
        padding: 3rem 1rem;
    }
}
/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 4rem 0;
    background-color: var(--accent);
    margin: 3rem 0;
    border-radius: 8px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ============================================
   SERVICE/LOCATION PAGES
   ============================================ */

.service-location-page {
    padding: 3rem 0;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.location-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.location-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--gray);
}

.service-features,
.location-list,
.why-choose,
.process-list,
.occasion-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li,
.location-list li,
.why-choose li,
.occasion-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.service-features li:before,
.location-list li:before,
.why-choose li:before,
.occasion-list li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    display: absolute;
    left: 0;
    font-size: 1.5rem;
}

.why-choose li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.process-list {
    counter-reset: step-counter;
}

.process-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
}

.process-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background-color: var(--primary);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
}

.cta-box {
    background-color: var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
    border-left: 4px solid var(--primary);
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-box p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Responsive for FAQ */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .location-content h2 {
        font-size: 1.5rem;
    }

    .location-content h3 {
        font-size: 1.25rem;
    }
}