/* Modern Studio CSS for KutKut Studios
   Fonts: 'Poppins' (Headings), 'Inter' (Body)
   Colors:
   - Dark BG: #121212
   - Lighter BG (Cards/Header): #1E1E1E
   - Text: #EAEAEA
   - Text (Muted): #AAAAAA
   - Accent: #FFB800 (Gold/Amber)
*/

/* 1. General Setup & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&display=swap');

:root {
    --bg-dark-primary: #121212;
    --bg-dark-secondary: #1E1E1E;
    --text-primary: #EAEAEA;
    --text-secondary: #AAAAAA;
    --accent-color: #FFB800;
    --accent-hover: #FFD04D;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-dark-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

p {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* 2. Homepage Specific Styles */
body.home-body {
    /* !! REPLACE THIS with your own high-res studio image !! */
    background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    overflow: hidden; /* No scroll on home */
}

.homepage-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-content-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-content-box {
    background-color: rgba(30, 30, 30, 0.85); /* Semi-transparent panel */
    padding: 3rem 4rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-content-box h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin: 0;
}

.home-content-box p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 1rem 0 2rem;
}

/* 3. Re-usable Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    width: 100%;
    z-index: 1000;
}

/* Header on Homepage */
header.home-header {
    position: absolute;
    top: 0;
    left: 0;
}
header.home-header .logo a,
header.home-header nav a,
header.home-header .social-icons a {
    color: var(--text-primary);
}

/* Header on Internal Pages */
header.internal-header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bg-dark-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin: 0 1.25rem;
}

nav a {
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    position: relative;
    color: var(--text-secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.social-icons a {
    margin-left: 1.25rem;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--accent-color);
}

/* 4. Internal Page Layout */
body.internal-page {
    padding-top: 85px; /* Height of fixed header */
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}
.page-title h2 {
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.page-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* 5. CTA Button (Shared) */
.cta-button {
    background-color: var(--accent-color);
    color: #000;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}
.cta-button i {
    margin-left: 8px;
}

/* 6. Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-dark-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.service-card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.service-card h3 i {
    margin-right: 10px;
}
.service-card p {
    color: var(--text-secondary);
}

/* 7. About Page */
.about-container {
    background: var(--bg-dark-secondary);
    padding: 3rem;
    border-radius: 12px;
}
.about-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.team-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.team-member-card {
    padding: 2rem;
    background: var(--bg-dark-primary);
    border-radius: 8px;
}
.team-member-card h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.inline-link {
    color: var(--accent-color);
    font-weight: 600;
}
.inline-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* 8. Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-dark-secondary);
    padding: 3rem;
    border-radius: 12px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark-primary);
    color: var(--text-primary);
    font-size: 1rem;
}
.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}
.contact-form-container button {
    width: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}
.contact-info-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.contact-info-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* 9. Footer */
.site-footer {
    background-color: var(--bg-dark-secondary);
    color: var(--text-secondary);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 10. Responsive Adjustments */
@media (max-width: 900px) {
    .team-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        order: 2; /* Form below info on mobile */
    }
    .contact-info-container {
        order: 1;
    }
    
    header {
        flex-direction: column;
        padding: 1rem;
    }
    header.internal-header {
        position: relative; /* Remove fixed header on mobile */
    }
    body.internal-page {
        padding-top: 0; 
    }
    nav ul {
        margin-top: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav li {
        margin: 0.25rem 0.5rem;
    }
}

@media (max-width: 600px) {
    .home-content-box {
        padding: 2rem;
        margin: 1rem;
    }
    .home-content-box h1 {
        font-size: 2.5rem;
    }
    .page-container {
        padding: 2rem 1rem;
    }
    .page-title h2 {
        font-size: 2.2rem;
    }
    .about-container,
    .contact-layout {
        padding: 2rem;
    }
}