/* styles.css */

@font-face {
    font-family: 'NeueHaasDisplay';
    src: url('../fonts/NeueHaasDisplay55Roman.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

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

body {
    font-family: 'NeueHaasDisplay', Arial, sans-serif;
    background: #050505;
    background-image: url('../img/Hat_Website.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #c8c8c8;
    height: 100vh;
    overflow: hidden;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.85) 60%, rgba(5,5,5,0.95) 100%);
    z-index: 1;
}

.center-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    animation: fadeIn 2.5s ease-in;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 380px;
    max-width: 80vw;
    opacity: 0.92;
}

.divider {
    width: 60px;
    height: 1px;
    background: #99FF99;
    opacity: 0.4;
    margin-bottom: 1.8rem;
}

.location {
    font-size: 0.85rem;
    letter-spacing: 0.5em;
    color: #99FF99;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 3rem;
}

.mantra {
    font-size: 1rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    animation: pulse 6s ease-in-out forwards;
    margin-bottom: 2.5rem;
    pointer-events: none;
}

.email {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(153, 255, 153, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email:hover {
    color: rgba(153, 255, 153, 0.7);
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@media (max-width: 600px) {
    .logo {
        width: 260px;
    }
    .location {
        font-size: 0.7rem;
        letter-spacing: 0.4em;
    }
    .mantra {
        font-size: 0.85rem;
    }
}
