/* Global Styles */
:root {
    --primary-color: #0e0e10;
    --secondary-color: #f9f9f9;
    --accent-color: #0a3049;
    --accent-gradient: linear-gradient(135deg, #0a3049 0%, #094c73 100%);
    --text-color: #333;
    --light-text: #6c757d;
    --card-bg: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.7;
    font-size: 16px;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(242, 242, 242, 0.4) 0%, rgba(242, 242, 242, 0.1) 40%),
        radial-gradient(circle at 90% 80%, rgba(242, 242, 242, 0.4) 0%, rgba(242, 242, 242, 0.1) 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Section */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1598653222000-6b7b7a552625?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 48, 73, 0.85) 0%, rgba(9, 76, 115, 0.6) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-name {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInDown 1s ease;
}

.profile-title {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    animation: fadeIn 1.2s ease;
}

.profile-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
    animation: scaleIn 1.5s ease;
}

.profile-location {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1.4s ease;
}

.profile-location i {
    color: var(--accent-color);
    margin-right: 6px;
}

/* Main Content */
main {
    padding: 3rem 0;
}

section {
    margin-bottom: 3.5rem;
    padding: 1.8rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 100%;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    border-bottom: none;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    font-weight: 700;
}

h2 i {
    margin-right: 10px;
    color: var(--accent-color);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
}

section:hover h2::after {
    width: 100%;
}

p {
    margin-bottom: 1.2rem;
    font-size: clamp(0.95rem, 3vw, 1rem);
}

/* Bio Section */
.bio-text {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Skills Section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.2rem;
}

.skill-tag {
    background: var(--accent-gradient);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(10, 48, 73, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin-bottom: 8px;
}

.skill-tag i {
    margin-right: 6px;
}

.skill-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(10, 48, 73, 0.35);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 1.5rem;
}

.project-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.8rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    width: 100%;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    z-index: -1;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(10, 48, 73, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transition: height 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.25);
}

.project-card:hover::after {
    height: 100%;
}

.project-title {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.project-year {
    display: inline-block;
    color: white;
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(10, 48, 73, 0.25);
}

.project-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: var(--light-text);
    line-height: 1.6;
}

/* Collaborations Section */
.collaborators {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.2rem;
}

.collaborator {
    background-color: #f2f2f2;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    margin-bottom: 5px;
}

.collaborator i {
    margin-right: 8px;
    color: var(--accent-color);
    transition: transform 0.2s ease;
}

.collaborator:hover {
    background-color: #e8e8e8;
    transform: translateY(-4px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.collaborator:hover i {
    transform: scale(1.2);
}

/* Notable Singles */
ul {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
    list-style-type: none;
    padding-right: 10px;
}

li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
    transition: transform 0.2s ease;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

li:hover {
    transform: translateX(5px);
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    background-color: #f2f2f2;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #e8e8e8;
}

.contact-icon {
    background: var(--accent-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(10, 48, 73, 0.25);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-item a:hover {
    color: #094c73;
    text-decoration: underline;
}

/* Two-column layout for larger screens */
.two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr 1fr;
    }
    
    section {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        width: auto;
    }
}

@media (max-width: 767px) {
    section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    header {
        padding: 3rem 0 2rem;
    }
    
    main {
        padding: 2rem 0;
    }
    
    .skill-tag {
        margin-bottom: 5px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem 1rem;
    }
    
    .skill-tag {
        padding: 0.5rem 1rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(14, 14, 16, 0.8), transparent);
}

footer p {
    margin-bottom: 0;
    position: relative;
}

footer i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from { 
        transform: translateX(-50%) scaleX(0);
    }
    to { 
        transform: translateX(-50%) scaleX(1);
    }
}

/* Strong tag styling */
strong {
    font-weight: 700;
    color: var(--accent-color);
}

/* Streaming Stats Section */
.stream-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 1.2rem;
}

.stream-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stream-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.25);
}

.stream-item h3 {
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.stream-count {
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stream-count i {
    color: var(--accent-color);
    margin-right: 8px;
}

.stream-details {
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
    color: var(--light-text);
}

@media (max-width: 767px) {
    .stream-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stream-item {
        padding: 1.2rem;
    }
}

/* Profile Image Styles */
.profile-image-container {
    margin: -40px auto 30px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.profile-image {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 4px;
    background: var(--accent-gradient);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    transition: var(--transition);
}

.profile-image:hover .profile-pic {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-image-container {
        margin: -30px auto 20px;
    }
} 