/*
Theme Name: Brandon Custom Theme
Author: Brandon Nashel
Version: 1.0
*/

/* 1. Base Styles - Replaced Universal Selector for speed */
html, body, div, span, h1, h2, p, ul, li, a, img {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1c1d20; /* Primary background */
    color: #f8fafc;
    overflow-x: hidden;
}

/* 2. Navigation */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /* Remove any individual padding here, let .nav-container handle it */
    background-color: transparent; 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
margin-left: 35px;
}

.nav-links li {
    
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* 3. Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 40px 40px 40px;
    overflow: hidden;
}

/* 4. Portrait Image */
.portrait-container {
    position: absolute;
    top: 55%;
    left: 50%;
    /* Added vendor prefixes for older browsers */
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 650px;
    z-index: 1;
}

.portrait-container img {
    width: 100%;
    height: auto;
    /* If editor hates object-fit, this remains the fallback */
    display: block;
}

/* 5. UI Elements */
.pill-button {
    background-color: #1c1d20;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    /* Fallback border color followed by RGBA */
    border: 1px solid #333333;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-circle {
    background-color: #3e3f42;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px; /* Alternative to gap */
}

/* 6. Marquee Text */
.marquee-container {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    white-space: nowrap;
    z-index: 2;
}

.big-name {
    font-size: 16vw;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
}
/* Logo Morph Styling */
.logo-morph {
    position: relative;
    display: block;
    overflow: hidden; /* Keeps the text inside the 'box' */
    text-decoration: none;
    color: #ffffff;
    height: 24px; /* Adjust based on your font size */
    width: 180px;  /* Adjust so the text doesn't wrap */
}
.header-right {
    display: flex;
    justify-content: flex-end; /* Ensures links stay grouped to the right */
}

.logo-default, .logo-hover {
    display: block;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.5s ease;
    white-space: nowrap;
}

/* Initially, the real name is tucked underneath */
.logo-hover {
    transform: translateY(100%);
    opacity: 0;
}

/* On Hover: Slide the 'Code by' up and out, and the 'Real Name' up and in */
.logo-morph:hover .logo-default {
    transform: translateY(-100%);
    opacity: 0;
}

.logo-morph:hover .logo-hover {
    transform: translateY(0);
    opacity: 1;
}
.nav-container {
    display: flex;
    justify-content: space-between; /* Pushes logo left, links right */
    align-items: center;
    max-width: 1200px;  /* This is the magic number - change to 1400px if you want it wider */
    margin: 0 auto;     /* Centers the whole navigation block */
    padding: 0 40px;    /* Adds a 40px safety buffer on both sides */
    width: 100%;
}
/* This ensures the content starts below your fixed header */
.hero-section {
    padding-top: 100px; /* Adjust this based on your header height */
}

.content-section {
    padding-top: 80px;
    margin-top: 0;
}
/* Reset and Layout */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #1c1d20; color: #fff; font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Fixed Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Prevents text from sinking into edges */
    margin: 0 auto;
    padding: 30px 50px;
}

/* Hero Section Setup */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Fix missing picture positioning */
.portrait-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
    z-index: 1;
}
.portrait-container img {
    width: 100%;
    display: block;
}

/* Fix UI Alignment */
.hero-ui-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 120px 50px;
    z-index: 10;
}

/* Fix Marquee */
.marquee-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    z-index: 5;
    pointer-events: none;
}
.big-name {
    font-size: 15vw;
    white-space: nowrap;
    text-transform: uppercase;
}