@import url('menu_style.css');
/* Artist Homepage Style - Inspired by Tina Keng Gallery */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Serif+TC:wght@200;300;400&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-gold: #d4af37;
    --text-white: #f0f0f0;
    --text-muted: #888;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: "Cormorant Garamond", "Noto Serif TC", serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.logo-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.2;
    /* Stabilize height */
    margin: 0;
}

.logo-sub {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-family: sans-serif;
    margin-top: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    /* Use dvh for mobile browsers to avoid address bar resizing issues */
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 4% 8% 4%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* Ensure no horizontal overflow from this element */
    overflow: hidden;
}

/* Dark overlay for text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 5rem;
    /* Spacing between intro and title */
    max-width: 600px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

.hero-title {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-meta {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-family: sans-serif;
}

.hero-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-btn:hover {
    background-color: var(--text-white);
    color: var(--bg-color);
    border-color: var(--text-white);
}

/* Navigation Overlays (Placeholder) */
.nav-arrows {
    position: absolute;
    bottom: 5%;
    right: 4%;
    display: flex;
    gap: 20px;
    z-index: 100;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.nav-arrow:hover {
    border-color: var(--text-white);
}

.nav-arrow svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--text-white);
    stroke-width: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 0.8rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 3rem;
        line-height: 1.6;
        text-align: justify;
        text-align-last: left;
    }

    .hero-meta {
        margin-bottom: 1rem;
    }

    header {
        height: 70px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .mobile-show {
        display: block !important;
    }
}

.mobile-show {
    display: none;
}