/* 
   THE HARLEM HOTBOY - LUXURY EXECUTIVE BRANDING
   Author: James "P-Reala" McNair Brand Identity
   Style: Professional, Credible, Premium
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #050505;
    --surface-color: #0e0e0e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #d4af37;
    /* Luxury Gold */
    --border-color: #222222;
    --transition-speed: 0.4s;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

/* --- Navigation --- */
nav {
    height: var(--nav-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links .special-link {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.nav-links .special-link:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding-bottom: 8vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.6;
    filter: grayscale(20%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.95) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 8px;
    color: var(--accent-color);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero .subheadline {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
}

.hero .founder-line {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    font-size: 1rem;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--text-primary);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

/* --- Sections --- */
section {
    padding: 100px 10%;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

/* --- About & Text Content --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.content-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

/* --- Ventures Grid --- */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.venture-card {
    padding: 40px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.venture-card:hover {
    border-color: var(--text-secondary);
    transform: translateY(-5px);
}

.venture-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* --- Press & Media --- */
.press-list {
    max-width: 800px;
    margin: 0 auto;
}

.press-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.press-item:last-child {
    border-bottom: none;
}

.press-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.press-item a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

/* --- Media Gallery --- */
.gallery {
    column-count: 3;
    column-gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery {
        column-count: 1;
    }
}

/* --- Form --- */
.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

/* --- Footer --- */
.footer-socials {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-socials a {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.media-social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.media-social-grid .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

footer {
    padding: 60px 10%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 0.8rem;
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    nav {
        padding: 0 5%;
    }

    .nav-links {
        gap: 1rem;
    }

    .content-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 40px;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .no-scroll {
        overflow: hidden;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subheadline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-image {
        height: 350px;
        order: -1;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    footer {
        padding: 40px 5%;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subheadline {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}