/* Reset and Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #000; }

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Visibility logic for images */
.desktop-img { 
    display: block; 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    object-position: center center; 
}
.mobile-img { display: none; }

/* Brand Name Branding */
.brand-name {
    position: absolute;
    top: 10px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    text-transform: lowercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    z-index: 2;
    margin: 0; 
}

/* Layout for Content */
.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    width: 90%;
    max-width: 900px;
    margin-top: -150px;
    margin-left: 40px;
    margin-bottom: 80px;
    z-index: 3;
    position: relative;
}

.bio {
    flex: 2;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;     /* Thinner, lighter weight */
    line-height: 1.8;
    letter-spacing: 0.02em; /* Gives the thin letters room to breathe */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 4px;
}

.bio p {
    margin-bottom: 25px;
}

/* Button Styles */
/* Updated Button Styles */
.link-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    
    /* Sticky Effect */
    position: sticky;
    top: 40px; 
    align-self: flex-start;
}

.btn {
    display: block;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #000;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.btn:hover { transform: translateY(-5px); }

.btn-originals { background-color: #d8a4a4; }
.btn-rotary { background-color: #a4d8a8; }
.btn-nycm { background-color: #d8c2a4; }

/* Footer Styles */
.site-footer {
    width: 90%;
    max-width: 900px;
    /* Changed the margin from '40px auto 40px 40px' to '40px auto' to center the box */
    margin: 40px auto; 
    padding: 20px 0;
    border-top: 1px solid #222;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.5px;
    /* Added text-align center to center the content inside the box */
    text-align: center; 
}

.site-footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

/* Responsive & Landscape Adjustments */
@media (max-width: 768px) and (orientation: portrait) and (pointer: coarse) {
    .desktop-img { display: none !important; }
    .mobile-img { 
        display: block !important; 
        width: 100%; 
        height: 100%; 
        object-fit: contain; 
        object-position: center center; 
    }
    
    .hero {
        height: auto; 
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    
    .brand-name { 
        position: relative; 
        left: auto; 
        font-size: 2rem; 
        text-align: center;
        margin: 20px 0;
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        text-shadow: none;
        color: #fff;
        order: 1;
    }
    
    .mobile-img {
        order: 2;
        height: 50vh;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .content-wrapper { 
        flex-direction: column; 
        margin-top: 0;
        margin-left: 20px; 
        margin-right: 20px; 
    }
    .bio { padding: 20px; }
    .link-grid { width: 100%; }
    
    .site-footer {
        margin: 40px auto;
        text-align: center;
        border-top: 1px solid #333;
    }
}
