/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #f59e0b;
    --accent-color: #ec4899;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-medium: 0 15px 35px rgba(31, 38, 135, 0.2);
    --shadow-heavy: 0 25px 50px rgba(31, 38, 135, 0.25);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-secondary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-accent: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

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

.container a {
    text-decoration: none;
}

.container a span {
    text-decoration: none;
    color: rgb(255, 0, 0);
    font-weight: 900;
}

.container a span:hover {
    text-decoration: none;
    color: rgb(139, 41, 41);
}

/* Header and Navigation */
.header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header:hover::before {
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
    letter-spacing: -0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cv-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    letter-spacing: -0.025em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cv-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cv-link:hover::before {
    opacity: 0.8;
    transform: scale(1);
}

.cv-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255,255,255,0.4);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 140px 3rem 3rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, #667eea, #764ba2, #f093fb, #667eea);
    animation: rotate 20s linear infinite;
    opacity: 0.1;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    filter: blur(1px);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6), 0 1px 5px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: white;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255,255,255,0.4);
}

.cta-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(4px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.artist-photo-placeholder {
    width: 350px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.artist-photo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: rotate 3s linear infinite;
}

.artist-photo {
    width: 350px;
    height: 350px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid var(--glass-border);
    box-shadow: var(--shadow-heavy);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-photo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-photo:hover::before {
    opacity: 1;
}

.artist-photo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(31, 38, 135, 0.4);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--border-radius-xl) - 3px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-photo:hover .profile-image {
    transform: scale(1.1);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    z-index: 0;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    letter-spacing: -0.05em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.4);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.gallery-item:hover::before {
    opacity: 0.1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255,255,255,0.3);
}

.image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.image-placeholder span {
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.item-info {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.item-info h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.item-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255,255,255,0.4);
}

.contact-item i {
    color: white;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    padding: 1rem;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-item h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.contact-description {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* CV Styles */
.cv-main {
    padding-top: 120px;
    min-height: 100vh;
    position: relative;
}

.cv-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.cv-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.cv-header {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.cv-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.cv-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-medium);
}

.cv-profile-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-profile-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.cv-basic-info {
    flex: 1;
}

.cv-name {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.cv-title {
    font-size: 1.5rem;
    color: #4facfe;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.cv-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.contact-quick-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.contact-quick-item i {
    color: white;
    width: 24px;
    font-size: 1.1rem;
}

.cv-section {
    margin-bottom: 3.5rem;
}

.cv-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    position: relative;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.cv-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.cv-section-title i {
    color: white;
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    min-width: 50px;
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-section-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.cv-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.cv-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.4);
}

.cv-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.cv-item-header h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.cv-date {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-light);
}

.cv-item-details ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.cv-item-details li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0.8;
}

.skill-item:hover::before {
    left: 0;
}

.skill-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(255,255,255,0.4);
}

.skill-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    display: inline-block;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.skill-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.skill-item h4 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.skill-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.4);
}

.contact-info-item i {
    color: white;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    padding: 1rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-info-item h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: -1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

.modal-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cv-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 1.5rem 3rem;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .artist-photo-placeholder,
    .artist-photo {
        width: 250px;
        height: 250px;
        font-size: 3rem;
        margin: 0 auto;
    }
    
    .gallery {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
    
    .gallery-filters {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cv-container {
        margin: 1.5rem;
        padding: 2rem;
    }
    
    .cv-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cv-name {
        font-size: 2.25rem;
    }
    
    .cv-title {
        font-size: 1.25rem;
    }
    
    .photo-placeholder,
    .cv-profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .cv-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-info-item i {
        margin: 0 auto;
    }
    
    .nav-container {
        padding: 1.25rem 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 0.75rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 100px 1rem 2rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .artist-photo-placeholder,
    .artist-photo {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-filters {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .item-info {
        padding: 1.5rem;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .contact-description {
        padding: 2rem;
    }
    
    .cv-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cv-header {
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .cv-name {
        font-size: 1.875rem;
    }
    
    .cv-title {
        font-size: 1.125rem;
    }
    
    .photo-placeholder,
    .cv-profile-image {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .cv-section {
        margin-bottom: 2.5rem;
    }
    
    .cv-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cv-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .skills-grid,
    .contact-info-grid {
        gap: 1.25rem;
    }
    
    .skill-item {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-info-item i {
        margin: 0 auto 0.5rem auto;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Modern Animations and Effects */
.gallery-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: modernFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }
.gallery-item:nth-child(7) { animation-delay: 0.4s; }
.gallery-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes modernFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Smooth scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Selection styling */
::selection {
    background: var(--gradient-accent);
    color: white;
}

::-moz-selection {
    background: var(--gradient-accent);
    color: white;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading animation for images */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.gallery-image {
    background: linear-gradient(90deg, 
                rgba(255,255,255,0.1) 0%, 
                rgba(255,255,255,0.2) 50%, 
                rgba(255,255,255,0.1) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

.gallery-image[src] {
    animation: none;
    background: none;
}

/* Floating animation for hero elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.artist-photo {
    animation: float 6s ease-in-out infinite;
}

/* Pulse effect for CTA button */
@keyframes pulse {
    0% { box-shadow: var(--shadow-medium); }
    50% { box-shadow: var(--shadow-heavy), 0 0 30px rgba(255,255,255,0.3); }
    100% { box-shadow: var(--shadow-medium); }
}

.cta-button {
    animation: pulse 3s ease-in-out infinite;
}

/* Subtle parallax effect for background elements */
@media (prefers-reduced-motion: no-preference) {
    .hero::before {
        animation: rotate 30s linear infinite;
    }
    
    .artist-photo-placeholder::before {
        animation: rotate 4s linear infinite;
    }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before,
    .artist-photo-placeholder::before,
    .artist-photo,
    .cta-button {
        animation: none !important;
    }
}

/* Print styles for CV */
@media print {
    .header, .footer, .hamburger {
        display: none;
    }
    
    .cv-main {
        padding-top: 0;
    }
    
    .cv-container {
        box-shadow: none;
        margin: 0;
        border-radius: 0;
    }
    
    body {
        background: white;
    }
    
    .cv-section {
        break-inside: avoid;
    }
} 