/* Modern Cybersecurity Theme */
:root {
    --primary-color: #0a192f;       /* Dark blue background */
    --secondary-color: #64ffda;     /* Teal accent */
    --accent-color: #00f7ff;        /* Bright cyan for highlights */
    --light-color: #ccd6f6;         /* Off-white text */
    --dark-color: #020c1b;          /* Darker blue for elements */
    --text-color: #8892b0;          /* Slate for body text */
    --text-light: #a8b2d1;          /* Lighter slate for secondary text */
    --transition: all 0.3s ease;
    --card-bg: #112240;             /* Darker blue for cards */
    --border-color: #233554;        /* Border color for elements */
    --header-shadow: rgba(2, 12, 27, 0.7);
    --glow: 0 0 10px rgba(100, 255, 218, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    background-image: 
        radial-gradient(circle at 25% 40%, rgba(100, 255, 218, 0.07) 0%, transparent 20%),
        radial-gradient(circle at 75% 60%, rgba(0, 247, 255, 0.07) 0%, transparent 20%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: var(--light-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1.5rem; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    opacity: 0.9;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 11;
    pointer-events: auto;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(100, 255, 218, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn:hover::before {
    width: 100%;
    background-color: var(--secondary-color);
}

.btn:active {
    transform: translateY(0);
}

/* Header & Navigation */
header {
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px var(--header-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--secondary-color);
}

nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary-color);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 10% 60px;
    overflow: hidden;
    pointer-events: auto;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: -1;
}

/* Interests Section */
.interests {
    padding: 0 5% 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.interests .container {
    padding-bottom: 4rem; /* Extra space before footer */
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 1.5rem;
    color: var(--light-color);
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    color: var(--secondary-color);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1.5rem 0 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    justify-content: flex-start;
    pointer-events: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero-cta .btn {
    position: relative;
    z-index: 11;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
}

/* Scroll down button - new centered version */
.scroll-down-center {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9999;
}

.scroll-down-center a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.scroll-down-center a:hover {
    color: var(--secondary-color);
}

.scroll-down-arrow {
    display: block;
    margin: 10px auto 0;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Page Header */
.page-header {
    background: var(--primary-color);
    color: white;
    padding: 100px 5% 60px;
    text-align: center;
    position: relative;
    min-height: auto;
    margin: 0 auto;
    max-width: 1200px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0 0 2rem;
    color: var(--light-color);
    line-height: 1.2;
    overflow: visible;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--text-color);
}

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

.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.skills {
    margin-top: 30px;
}

.skills h3 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.skills ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.skills li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.skills li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.profile-image {
    flex: 0 0 400px;
    position: relative;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .profile-image {
        margin: 30px auto 0;
        max-width: 100%;
    }
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.skills li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--light-color);
    margin: 1rem 0 1.5rem;
    line-height: 1.3;
    overflow: hidden;
    word-wrap: break-word;
    max-width: 100%;
}

.profile-image {
    position: relative;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    transition: var(--transition);
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    transition: var(--transition);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.1) 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: 1;
    transition: var(--transition);
}

.image-wrapper:hover::before {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0) 0%, rgba(10, 25, 47, 0.9) 100%);
}

.profile-img {
    display: block;
    width: 100%;
    height: auto;
    transition: var(--transition);
    position: relative;
    z-index: 0;
}

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

.tech-stack {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-stack span {
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-family: 'Roboto Mono', monospace;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.profile-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    display: block;
    transition: var(--transition);
}

.profile-image:hover img {
    transform: scale(1.03);
}

/* Experience Section */
.experience {
    padding: 0 5% 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.experience .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.timeline-content p {
    margin-bottom: 1rem;
}

.timeline-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.experience h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--light-color);
}

/* Experience grid styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    padding: 30px;
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.2);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(2, 12, 27, 0.3);
}

.experience-card h3 {
    color: var(--light-color);
    margin-bottom: 10px;
}

.experience-card .date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.experience-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.experience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.experience-card li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}
}

.experience h2 {
    font-size: 2rem;
    margin: 1rem 0 3rem;
    color: var(--light-color);
    position: relative;
    display: inline-block;
    font-weight: 600;
    counter-increment: section 1;
}

.experience h2::before {
    content: '0' counter(section) '.';
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.interests h2::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 300px;
    height: 1px;
    background-color: var(--border-color);
    position: relative;
    top: 10px;
    margin-left: 0;
}

.timeline {
    position: relative;
    max-width: 900px;
{{ ... }}
}

.interests h2 {
    font-weight: 600;
    counter-increment: section 1;
    word-wrap: break-word;
    max-width: 100%;
    overflow-wrap: break-word;
}

.interests h2::before {
    content: '0' counter(section) '.';
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.interests h2::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 300px;
    height: 1px;
    background-color: var(--border-color);
    position: relative;
    top: 10px;
    margin-left: 0;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 4rem 0 0;
}

.interest-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.2);
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(2, 12, 27, 0.3);
}

.interest-card h3 {
    color: var(--light-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.interest-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.interest-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.interest-card .btn {
    margin-top: auto; /* Push button to bottom */
    align-self: flex-start; /* Align button to the start */
    margin-top: 1.5rem; /* Consistent top margin */
}
.interest-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Make the paragraph take up available space */
    min-height: 4.5em; /* Ensure minimum height for two lines of text */
    display: flex;
    align-items: flex-start;
}

.music-embed {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Gigs Section */
.gigs {
    padding: 5rem 0;
    background-color: #f5f7fa;
}

.gig-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-color);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.gig-grid {
    display: grid;
    gap: 2rem;
}

.gig-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.gig-images {
    position: relative;
    min-height: 300px;
    background: #f5f5f5;
}

.gig-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    background: white;
}

.gallery-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.gallery-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gig-details {
    padding: 2rem 2rem 2rem 0;
}

.gig-details h2 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.gig-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.gig-meta i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.gig-review {
    margin-bottom: 1.5rem;
}

.gig-review p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.gig-setlist h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.gig-setlist ul {
    margin-left: 1.5rem;
    color: var(--text-light);
}

.gig-setlist li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.2rem;
}

.gig-setlist li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Photography Section */
.photography {
    padding: 5rem 0;
    background-color: white;
}

.photo-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
    padding: 1.5rem;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-info {
    transform: translateY(20px);
    transition: var(--transition);
    color: white;
}

.photo-item:hover .photo-info {
    transform: translateY(0);
}

.photo-info h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.photo-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 247, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.hero-content {
    margin: 0 0 1rem 0;
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 0;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(2, 12, 27, 0.3);
}

.contact-card:hover::before {
    height: 100%;
}

.contact-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
}

.contact-card span {
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--light-color);
}

.contact-card:hover i {
    transform: scale(1.1);
    background: rgba(100, 255, 218, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--light-color);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    padding: 2rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info i {
    color: #e25555;
    margin: 0 0.2rem;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: rgba(100, 255, 218, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .skills ul {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-text::before {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Lightbox Override */
.lb-data .lb-caption {
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gig-card {
        grid-template-columns: 1fr;
    }
    
    .gig-images {
        min-height: 200px;
    }
    
    .gig-details {
        padding: 0 2rem;
    }
    
@media (max-width: 768px) {
    .timeline {
        padding: 0 15px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding: 0 0 0 70px;
        margin-bottom: 2rem;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-content p,
    .timeline-content ul {
        font-size: 0.9rem;
    }
    
    .interest-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 3rem 0 0;
        width: 100%;
    
    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav li {
        margin: 0.3rem 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .interest-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 2rem 0 0;
        padding: 0;
    }
    
    .gig-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}
