/*
Theme Name: EMEntertainment Limited
Theme URI: https://ementertainment.com
Author: EMEntertainment Limited
Description: Official website theme for EMEntertainment Limited - Connecting Brands, Talent & Opportunities
Version: 1.0.1
License: Private
Text Domain: em-entertainment
*/

/* ========================================
   EMEntertainment Limited - Stylesheet
   ======================================== */

/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #E87722;
    --orange-dark: #D06A1F;
    --orange-light: #F5A623;
    --dark: #1a1a1a;
    --dark-2: #2a2a2a;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #cccccc;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--gray-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.lang-btn {
    background: none; border: none; cursor: pointer;
    font-family: var(--font-main);
    font-size: 11px; font-weight: 600;
    color: var(--gray); letter-spacing: 0.8px; padding: 0;
    transition: color 0.2s;
}
.lang-btn:hover { color: var(--dark); }
.lang-btn.active-lang { color: var(--orange); }

/* Hide non-active language content */
html:not([data-lang="zh"]) .lang-zh { display: none !important; }
html[data-lang="zh"] .lang-en { display: none !important; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 140px;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    font-style: italic;
}

.logo-name {
    font-size: 24px;
    color: var(--gray-dark);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.logo-name strong {
    font-weight: 800;
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--gray-dark);
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--orange);
    background: rgba(232, 119, 34, 0.06);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-lang {
    font-size: 11px;
    color: var(--gray);
    white-space: nowrap;
    margin-left: 12px;
    flex-shrink: 0;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--gray-dark);
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    margin-top: 140px;
    position: relative;
    min-height: 580px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.97) 0%,
        rgba(255,255,255,0.92) 35%,
        rgba(255,255,255,0.7) 55%,
        rgba(255,255,255,0.3) 75%,
        rgba(255,255,255,0.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 480px;
}

.hero-left {
    flex: 1;
    max-width: 520px;
}

.hero-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
}

.hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 12px;
    max-width: 420px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 28px;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateX(4px);
}

.hero-btn svg {
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(4px);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right-photo {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

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

/* ========================================
   SERVICES STRIP (Below Hero)
   ======================================== */
.services-strip {
    position: relative;
    z-index: 3;
    background: var(--white);
    border-top: 1px solid #eee;
}

.services-strip-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.strip-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.strip-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.strip-item:nth-child(2) { transition-delay: 0.1s; }
.strip-item:nth-child(3) { transition-delay: 0.2s; }
.strip-item:nth-child(4) { transition-delay: 0.3s; }

.strip-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.strip-icon svg {
    width: 100%;
    height: 100%;
}

.strip-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.strip-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-left {
    flex: 1;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-heading {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 30px;
    letter-spacing: -0.3px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-heading.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.about-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-text:nth-of-type(2) { transition-delay: 0.1s; }
.about-text:nth-of-type(3) { transition-delay: 0.2s; }

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mv-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mv-item:nth-child(2) { transition-delay: 0.15s; }

.mv-icon {
    margin-bottom: 10px;
}

.mv-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mv-line {
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin-bottom: 12px;
}

.mv-text {
    font-size: 12px;
    line-height: 1.7;
    color: var(--gray);
}

.about-right {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 4px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-heading {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.05s; }
.service-card:nth-child(3) { transition-delay: 0.1s; }
.service-card:nth-child(4) { transition-delay: 0.15s; }
.service-card:nth-child(5) { transition-delay: 0.2s; }
.service-card:nth-child(6) { transition-delay: 0.25s; }
.service-card:nth-child(7) { transition-delay: 0.3s; }
.service-card:nth-child(8) { transition-delay: 0.35s; }

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.service-card.animate-in:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 14px;
    line-height: 1.4;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 11.5px;
    color: var(--gray);
    padding: 3px 0;
    padding-left: 12px;
    position: relative;
    line-height: 1.5;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-heading {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.team-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.team-left {
    flex: 0 0 35%;
    max-width: 35%;
}

.team-intro {
    font-size: 13px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 28px;
}

.team-sub-heading {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-expertise-list {
    list-style: none;
}

.team-expertise-list li {
    font-size: 12px;
    color: var(--gray);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.team-expertise-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
}

.team-right {
    flex: 1;
}

.member-photo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #f0ece6;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member:nth-child(2) { transition-delay: 0.15s; }

.member-photo {
    flex: 0 0 180px;
}

.member-photo img {
    width: 180px;
    height: 210px;
    object-fit: cover;
    border-radius: 4px;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.member-role {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.member-desc {
    font-size: 12px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 10px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.contact-section.no-image {
    grid-template-columns: 1fr;
}

.contact-left {
    padding: 80px 60px;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-intro {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.contact-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.contact-item a,
.contact-detail a {
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
}

.contact-item a:hover,
.contact-detail a:hover {
    color: #E87722;
}

.contact-item div {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    line-height: 1.7;
}

.contact-photo {
    background: #0c1825;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 28px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copy {
    font-size: 11px;
    color: var(--gray-light);
}

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

.hero-left {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-right {
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.diagram-ring {
    animation: rotateRing 30s linear infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        padding: 40px 30px 60px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .hero-title {
        font-size: 34px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-right {
        flex: none;
        max-width: 100%;
    }

    .about-image {
        height: 300px;
    }

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

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

    .team-content {
        flex-direction: column;
    }

    .team-left {
        flex: none;
        max-width: 100%;
    }

    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 80px;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-name {
        font-size: 16px;
        white-space: nowrap;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 12px 20px;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-lang {
        display: block;
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-hamburger {
        display: flex;
        margin-left: 0;
        flex-shrink: 0;
    }

    .hero-section {
        margin-top: 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-content {
        padding: 30px 20px 50px;
    }

    .services-strip-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .about-container,
    .services-container,
    .team-container,
    .contact-container {
        padding: 0 20px;
    }

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

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .team-member {
        flex-direction: column;
    }

    .member-photo {
        flex: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 20px;
    }

    .about-heading {
        font-size: 24px;
    }

    .services-heading,
    .team-heading,
    .contact-heading {
        font-size: 22px;
    }

    /* === Contact Section Mobile Stack === */
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 50px 24px;
    }

    .contact-photo {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
    }

    .logo-name {
        font-size: 14px;
    }

    .nav-links {
        top: 70px;
    }

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

    .hero-section {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 24px;
    }
}


