/* --- THE DIGITAL STUDIO: A NEW DESIGN DIRECTION --- */

/* --- 1. Core Variables & Setup --- */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Pirata One', cursive; 
    
    --color-background: #0a0a0a;
    --color-surface: #141414;
    --color-text: #e0e0e0;
    --color-text-muted: #888;
    --color-accent: #eb6102;
    --color-accent-hover: #ff7b25;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- 2. Reusable Components --- */
.section-heading {
    font-family: var(--font-headings);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--color-text);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-accent);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    border: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #fff;
}


/* --- 3. Header & Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.logo a {
    font-family: var(--font-headings);
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-accent);
}

/* --- 4. Page Sections --- */

/* Hero Section */
#hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content h1 {
    font-family: var(--font-headings);
    font-size: clamp(4rem, 10vw, 8rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Brand Intro Section */
#brand-intro {
    padding: 4rem 1rem;
    background-color: var(--color-surface);
    text-align: center;
    border-bottom: 1px solid #222;
}

.brand-intro-logo {
    max-width: 200px;
    margin: 0 auto 1.5rem auto;
}

.brand-intro-title {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.brand-intro-artist {
    color: var(--color-accent);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Artist Section */
.artist-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 4rem;
}

.artist-image-column img {
    width: 100%;
    border-radius: 8px;
}

.artist-text-column .section-heading {
    text-align: left;
    margin-bottom: 1.5rem;
}

.artist-text-column p {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* Process Section */
.process-section {
    padding: 6rem 5%;
    background-color: var(--color-surface);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.process-step p {
    color: var(--color-text-muted);
}

/* Styles Section */
.styles-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.styles-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin: 0 auto;
}

.style-item h3 {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.style-item p {
    color: var(--color-text-muted);
}

.style-item.hidden {
    display: none;
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 2%;
    background-color: var(--color-surface);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item.hidden {
    display: none;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--color-background);
}

.contact-content p {
    max-width: 500px;
    margin: 0 auto 2rem auto;
    color: var(--color-text-muted);
}

.contact-details {
    margin: 2rem 0;
}

.contact-info {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-accent-hover);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: inline-block;
    color: var(--color-text-muted);
    text-decoration: none;
    border: 2px solid var(--color-text-muted);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-links i {
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-surface);
}

.faq-container details {
    background-color: var(--color-background);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #222;
}

.faq-container summary {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-container summary::-webkit-details-marker {
    display: none;
}

.faq-container summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.2s ease;
}

.faq-container details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-text-muted);
    border-top: 1px solid #222;
}

/* --- 5. Footer --- */
.main-footer {
    text-align: center;
    padding: 2rem 5%;
    background-color: var(--color-background);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

/* --- 6. Responsive Design --- */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 1rem;
    }

    .artist-container {
        grid-template-columns: 1fr;
    }

    .artist-text-column .section-heading {
        text-align: center;
    }

    .styles-list {
        grid-template-columns: 1fr;
    }
}