/* ===========================================
   HulingCreative Brand Guidelines
   -------------------------------------------
   Primary Colors:
   - Charcoal (bg):     #1a1a1a
   - Cream:             #f5f3ed
   - Burnt Orange:      #c9542f
   - Deep Navy:         #1e2832

   Typography:
   - Headlines: DM Serif Display
   - Body: DM Sans

   Style: Minimal, sleek, hipster vibes
   =========================================== */

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

:root {
    --color-bg: #1a1a1a;
    --color-cream: #f5f3ed;
    --color-orange: #c9542f;
    --color-navy: #1e2832;
    --color-muted: #6b6b6b;

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    font-size: 18px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-cream);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 4rem;
}

.logo {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.logo-huling {
    font-weight: 700;
}

.logo-creative {
    font-weight: 400;
    opacity: 0.8;
}

/* Hero */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero {
    margin-bottom: 2.5rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-cream);
    background-color: var(--color-cream);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.1rem;
    color: var(--color-orange);
    margin-bottom: 0.25rem;
}

.location {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* About */
.about {
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.about p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245, 243, 237, 0.85);
}

.about strong {
    color: var(--color-cream);
}

/* CTA Buttons */
.cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 280px;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-cream);
}

.btn-primary:hover {
    background-color: #b84a28;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(245, 243, 237, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-cream);
    transform: translateY(-1px);
}

/* Shops */
.shops {
    margin-top: auto;
    width: 100%;
    max-width: 280px;
}

.shops-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.shop-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shop-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background-color: rgba(245, 243, 237, 0.05);
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-cream);
    transition: all 0.2s ease;
}

.shop-link:hover {
    background-color: rgba(245, 243, 237, 0.1);
    transform: translateX(4px);
}

.shop-name {
    font-weight: 500;
}

.shop-arrow {
    color: var(--color-orange);
    transition: transform 0.2s ease;
}

.shop-link:hover .shop-arrow {
    transform: translateX(4px);
}

/* Footer */
footer {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(245, 243, 237, 0.1);
}

footer p {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Responsive */
@media (max-width: 480px) {
    html {
        font-size: 16px;
    }

    .container {
        padding: 2rem 1.25rem;
    }

    h1 {
        font-size: 2rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }
}

/* Subtle animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .about, .cta {
    animation: fadeIn 0.6s ease-out forwards;
}

.about {
    animation-delay: 0.1s;
}

.cta {
    animation-delay: 0.2s;
}
