* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background-color: #0a0a0a;
    font-weight: 300;
}

.navbar {
    background-color: #000;
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.profile-pic:hover {
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.logo {
    font-size: 1.4rem;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    transition: all 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 80%;
}

.main-content {
    padding: 4rem 0;
    min-height: calc(100vh - 100px);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 6px;
    color: #ffffff;
    font-weight: 100;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

p {
    font-size: 1rem;
    color: #b0b0b0;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

a:hover {
    border-bottom-color: #ffffff;
}

/* Hero Section Styles */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.bio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-profile-pic {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
    box-shadow: 0 0 50px rgba(255,255,255,0.15);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeInScale 1.2s ease forwards 0.3s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-profile-pic:hover {
    box-shadow: 0 0 60px rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Media Section Styles */
.media-section {
    margin-bottom: 3rem;
}

.media-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    letter-spacing: 4px;
    font-weight: 200;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

/* YouTube Grid */
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.youtube-container {
    margin-bottom: 1rem;
}

.youtube-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.youtube-embed:hover {
    box-shadow: 0 12px 35px rgba(255,255,255,0.1);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    margin-top: 1rem;
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 0.5rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.media-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.media-video:hover {
    box-shadow: 0 12px 35px rgba(255,255,255,0.1);
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    cursor: pointer;
    filter: grayscale(20%);
}

.media-photo:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
    box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

/* GIF Grid */
.gif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.media-gif {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.media-gif:hover {
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .profile-pic {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gif-grid {
        grid-template-columns: 1fr;
    }
    
    .media-photo {
        height: 200px;
    }
    
    .hero-profile-pic {
        width: 300px;
        height: 300px;
    }
    
    .youtube-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
} 