@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Syncopate:wght@700&display=swap');

:root {
    --brand-primary: #ffffff;
    --brand-accent: #00ea8c; /* Neon green/teal for energy */
    --brand-bg: #000000;
    --text-muted: rgba(255, 255, 255, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-bg);
    color: var(--brand-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Layers */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/background.png') center top/cover no-repeat; /* Changed to 'top' to favor head/shoulder and arm */
    filter: brightness(0.4) grayscale(0.2); /* Added slight grayscale for professional look */
    z-index: -2;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.9));
    z-index: -1;
}

/* Header/Logo */
.logo {
    width: 100px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

.content-wrapper {
    max-width: 1000px;
    width: 100%;
}

.brand-name {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    font-style: italic;
    background: linear-gradient(135deg, #fff 0%, #777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-moto {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Hero Image Integration */
.outfit-showcase {
    position: relative;
    width: 300px;
    height: 450px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.outfit-showcase:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

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

.status-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--brand-accent);
    color: #000;
    padding: 0.5rem 2rem;
    font-weight: 900;
    transform: rotate(-10deg);
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Contact Info */
.info-reveal {
    margin-top: 3rem;
    animation: fadeIn 2s ease;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    width: 250px;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

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

.social-btn:hover svg {
    transform: rotate(10deg) scale(1.2);
}

.instagram:hover {
    border-color: #E1306C;
}

.whatsapp:hover {
    border-color: #25D366;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .brand-name {
        letter-spacing: -1px;
    }
    .outfit-showcase {
        width: 250px;
        height: 380px;
    }
}
