/* 1. RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding doesn't push elements right */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0f0f0f;
    color: #eeeeee;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. HEADER SECTION */
header {
    text-align: center;
    padding: 5rem 1rem 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 1.5rem auto 0 auto;
}

/* 3. SOCIAL ICONS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.8rem;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons a[title="Email Me"]:hover { color: #3498db; }
.social-icons a[title="LinkedIn"]:hover { color: #0077b5; }
.social-icons a[title="Upwork"]:hover { color: #6fda44; }

/* 4. VIDEO LIST - VERTICAL LAYOUT */
.video-list {
    display: block; /* Stacks items vertically */
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem 5rem 1rem;
}

.video-item {
    width: 100%;
    margin-bottom: 5rem; /* Space between each video section */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Forces 16:9 Aspect Ratio */
    height: 0;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    margin-top: 1.5rem;
}

.video-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.video-info p {
    color: #888;
    font-size: 1rem;
}

/* 5. FOOTER */
footer {
    text-align: center;
    padding: 4rem;
    font-size: 0.9rem;
    color: #444;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    header { padding: 3rem 1rem; }
    .video-item { margin-bottom: 3.5rem; }
}

/* --- ADD THIS TO STYLE.CSS --- */
.profile-pic-container {
    margin-bottom: 1.5rem;
}

.profile-pic {
    width: 150px;       /* Change this number to make it bigger/smaller */
    height: 150px;
    border-radius: 50%; /* This makes it a circle */
    object-fit: cover;  /* Prevents the image from stretching */
    border: 3px solid #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05); /* Gives it a tiny 'pop' when you hover */
}
/* ---------------------------- */