:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --accent-color: #777777;
    --light-grey: #f5f5f5;
}

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

body {
    font-family: '-apple-system', BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', 'Didot', 'Bodoni MT', serif;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    /* Pfad angepasst: Die CSS-Datei liegt im Root, schaut in den images-Ordner */
    background: url('images/Mayiko_Tag1_Szene3_1.jpeg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.hero p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Container & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.about-text p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stat-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
}

.stat-item strong {
    font-size: 1.2rem;
    font-weight: 400;
}

/* Showreel Section */
.showreel-section {
    background-color: var(--light-grey);
    text-align: center;
}

.video-container {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: transparent;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 9 / 16;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
}

/* Portfolio Gallery */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
}

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

.portfolio-item:hover img {
    transform: scale(1.03);
}

/* Shop the Look Section */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.shop-item {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.shop-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 20px;
    background-color: var(--light-grey);
}

.shop-item h3 {
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.shop-item p {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.shop-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.shop-btn:hover {
    background-color: var(--text-color);
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    text-align: center;
    background-color: var(--light-grey);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: #fff;
    font-family: inherit;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: var(--text-color);
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #ffffff;
}

/* Modals (Impressum & Datenschutz) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    color: #111111;
    margin: 8% auto;
    padding: 40px;
    border-radius: 4px;
    width: 85%;
    max-width: 700px;
    max-height: 75vh;
    overflow-y: auto;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    right: 25px; top: 20px;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    color: #777777;
    transition: color 0.2s;
}

.close-modal:hover { color: #000000; }
.modal h3 { margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 10px; font-size: 1.6rem; color: #111111; }
.modal h4 { margin: 25px 0 8px 0; font-size: 1rem; text-transform: uppercase; color: #333; letter-spacing: 1px; }
.modal p { color: #444; margin-bottom: 15px; font-size: 0.95rem; line-height: 1.6; }
.modal a { color: #111111; text-decoration: underline; }

.legal-links {
    margin-top: 15px;
    font-size: 0.75rem;
}

.legal-links a { 
    margin: 0 10px; 
    cursor: pointer; 
    color: #777777;
    text-decoration: none; 
    transition: color 0.2s; 
}

.legal-links a:hover { 
    color: #ffffff; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Creative Circle Buttons */
.squad-button {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.squad-button:hover {
    background-color: var(--text-color);
    color: #ffffff;
}