/* ==========================================================================
   Mokka Milch Website Styles
   Following Brand Guidelines
   ========================================================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Primary (from logo) */
    --primary-yellow: #fcb33b;
    --primary-grey: #a2b1b0;

    /* Brand Colors - Secondary */
    --secondary-green: #768c39;
    --secondary-rust: #d15437;
    --secondary-blue: #2e758c;
    --secondary-sand: #ddc09b;

    /* Neutral Colors */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --background-light: #F8F8F8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Typography - Following Brand Guidelines */
h1, h2, h3 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

p {
    font-weight: 400;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

/* Language Toggle */
.nav-language-toggle-mobile {
    display: none; /* Hidden on desktop - shown in mobile dropdown */
}

.language-toggle-desktop {
    display: flex; /* Shown on desktop */
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.3rem 0.5rem;
}

.lang-btn:hover {
    color: var(--primary-yellow);
}

.lang-btn.active {
    color: var(--text-dark);
    font-weight: 600;
}

.lang-separator {
    color: var(--primary-grey);
    font-weight: 300;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-grey);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--primary-grey);
}

.btn-secondary:hover {
    background: var(--primary-grey);
    color: var(--white);
    border-color: var(--primary-grey);
}

.btn-cta {
    background: var(--secondary-green);
    color: var(--white);
    border-color: var(--secondary-green);
    padding: 1.2rem 2.5rem;
}

.btn-cta:hover {
    background: transparent;
    color: var(--secondary-green);
    border-color: var(--secondary-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    z-index: 1;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-opening {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-cta {
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 10px auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Mokka History */
.mokka-history {
    padding: 4rem 0;
    background: var(--background-light);
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Section Styles - Eat & Drink, Work & Create, Events, Host Event */
.eat-drink, .work-create, .events, .host-event {
    padding: 6rem 0;
}

.eat-drink {
    background: var(--background-light);
}

.work-create {
    background: var(--white);
}

.events {
    background: var(--background-light);
}

.host-event {
    background: var(--white);
}

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

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-text {
    padding: 2rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.title-star {
    color: var(--primary-yellow);
    font-size: inherit;
    margin-left: 0.3em;
}

.section-description {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-body {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-text .btn-secondary {
    margin-top: 1.5rem;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: var(--secondary-green);
    color: var(--white);
    text-align: center;
}

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

.community .section-title {
    color: var(--white);
}

.community-intro {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.community-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.community .btn-cta {
    margin-top: 2rem;
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
}

.community .btn-cta:hover {
    background: transparent;
    color: var(--primary-yellow);
}

/* Join Our Team Section */
.join-team {
    padding: 6rem 0;
    background: var(--secondary-blue);
    color: var(--white);
    text-align: center;
}

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

.join-team .section-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.team-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.positions {
    margin: 2.5rem 0;
}

.positions-intro {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.positions-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.positions-list li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.positions-list li::before {
    content: '✱ ';
    color: var(--primary-yellow);
    margin-right: 0.5rem;
}

.team-closing {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.join-team .btn-cta {
    margin-top: 1rem;
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
}

.join-team .btn-cta:hover {
    background: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: var(--background-light);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}


.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
    border: 2px solid var(--primary-grey);
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-item a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-yellow);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-grey);
    font-size: 1rem;
    font-family: inherit;
    letter-spacing: 0.05em;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: var(--primary-grey);
}

.footer-logo .logo-star {
    color: var(--primary-yellow);
}

.footer-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--primary-grey);
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--primary-grey);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    margin: 0 1rem;
}

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

.footer-separator {
    color: var(--primary-grey);
    margin: 0 0.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--primary-grey);
    padding-top: 2rem;
    border-top: 1px solid rgba(162, 177, 176, 0.3);
}

/* Impressum Section */
.impressum {
    display: none;
    padding: 5rem 0;
    background: var(--background-light);
}

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

.impressum .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.impressum-text {
    text-align: left;
    line-height: 1.8;
}

.impressum-text p {
    margin-bottom: 1.5rem;
}

.impressum-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.impressum-text a {
    color: var(--secondary-blue);
    text-decoration: none;
}

.impressum-text a:hover {
    color: var(--primary-yellow);
}

.back-to-top {
    display: inline-block;
    margin-top: 3rem;
}

/* Datenschutz Section */
.datenschutz {
    display: none;
    padding: 5rem 0;
    background: var(--white);
}

.datenschutz-content {
    max-width: 900px;
    margin: 0 auto;
}

.datenschutz .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.datenschutz-text {
    text-align: left;
    line-height: 1.8;
}

.datenschutz-text p {
    margin-bottom: 1.5rem;
}

.datenschutz-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.datenschutz-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.datenschutz-text ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.datenschutz-text li {
    margin-bottom: 0.5rem;
}

.datenschutz-text a {
    color: var(--secondary-blue);
    text-decoration: none;
}

.datenschutz-text a:hover {
    color: var(--primary-yellow);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-content {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-language-toggle-mobile {
        display: block !important;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(162, 177, 176, 0.2);
    }

    .language-toggle-desktop {
        display: none !important; /* Hide desktop version on mobile */
    }

    .language-toggle {
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-content,
    .section-content.reverse,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-content.reverse {
        direction: ltr;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1.2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }
}
