/* Password Protection Styles */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0c0c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.password-container {
    background: rgba(31, 41, 55, 0.95);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.password-content h2 {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.password-content p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.password-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Mobile responsive for password protection */
@media (max-width: 480px) {
    .password-container {
        padding: 2rem 1.5rem;
        max-width: 320px;
    }
    
    .password-content h2 {
        font-size: 1.5rem;
    }
    
    .password-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    #password-input {
        width: 100%;
    }
    
    #password-submit {
        width: 100%;
        padding: 14px 24px;
    }
}

#password-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

#password-input:focus {
    outline: none;
    border-color: #FFFF90;
    background: rgba(255, 255, 255, 0.1);
}

#password-submit {
    padding: 12px 24px;
    background: #FFFF90;
    color: #0b0c0c;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#password-submit:hover {
    background: #FFFFB0;
    transform: translateY(-1px);
}

.password-error {
    color: #ff6b6b;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.show {
    opacity: 1;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    background-color: #0b0c0c;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-family: "deuterium-variable", sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 3px;
}

.nav-logo .first-name {
    font-weight: 500;
}

.nav-logo .last-name {
    font-weight: 200;
}

.nav-logo a:hover {
    color: #60a5fa;
}

.nav-menu {
    display: none;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #60a5fa;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #0b0c0c url('./public/hero-bg.png') no-repeat center center;
    background-size: cover;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-description {
    font-size: 21px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #1f2937;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1f2937;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.jsc-overlay {
    position: absolute;
    bottom: -15px;
    left: -45px;
    width: 120px;
    height: auto;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.hero-photo {
    width: 425px;
    height: 425px;
    object-fit: cover;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUpPhoto 0.8s ease-out 0.2s forwards;
}

/* Client Showcase */
.clients {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.separator {
    width: 100px;
    height: 4px;
    background-color: #FFFF90;
    margin: 0 auto 3rem auto;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-image {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
}

/* Amazon Music Section */
.amazon-music-section {
    padding: 80px 0;
    position: relative;
}

.amazon-music-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    max-width: calc(100% - 40px);
    height: 1px;
    background-color: rgba(255, 255, 144, 0.75);
}

.amazon-music-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.amazon-music-text {
    text-align: left;
}

.amazon-music-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.amazon-music-cta {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.amazon-music-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.amazon-music-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 400;
}

.amazon-music-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.amazon-music-photo {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Red Bull Section */
.red-bull-section {
    padding: 80px 0;
    position: relative;
}

.red-bull-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    max-width: calc(100% - 40px);
    height: 1px;
    background-color: rgba(255, 255, 144, 0.75);
}

.red-bull-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.red-bull-text {
    text-align: left;
}

.red-bull-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.red-bull-cta {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.red-bull-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.red-bull-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.red-bull-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-bull-photo {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Lady Gaga Section */
.gaga-section {
    padding: 80px 0;
    position: relative;
}

.gaga-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    max-width: calc(100% - 40px);
    height: 1px;
    background-color: rgba(255, 255, 144, 0.75);
}

.gaga-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gaga-text {
    text-align: left;
}

.gaga-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gaga-cta {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.gaga-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gaga-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gaga-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gaga-photo {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.case-study-card {
    background: #2d3748;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.case-study-content p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-study-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.case-study-link:hover {
    color: #2563eb;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1.1rem;
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #2d3748;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #d1d5db;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        grid-template-areas: 
            "image"
            "content";
    }
    
    .hero-image {
        grid-area: image;
    }
    
    .hero-content {
        grid-area: content;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-photo {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .jsc-overlay {
        width: 80px;
        bottom: -10px;
        left: -30px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .client-logo {
        padding: 0.75rem;
    }
    
    .logo-image {
        max-height: 30px;
    }
    
    .amazon-music-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .amazon-music-text {
        text-align: center;
    }
    
    .amazon-music-title {
        font-size: 2rem;
    }
    
    .amazon-music-tags {
        justify-content: center;
    }
    
    .red-bull-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .red-bull-text {
        text-align: center;
    }
    
    .red-bull-title {
        font-size: 2rem;
    }
    
    .red-bull-tags {
        justify-content: center;
    }
    
    .gaga-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .gaga-text {
        text-align: center;
    }
    
    .gaga-title {
        font-size: 2rem;
    }
    
    .gaga-tags {
        justify-content: center;
    }
    
    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .client-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-tags {
        justify-content: center;
    }
}

/* Hero Section Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpPhoto {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 