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

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #0f0f0f;
    color: #e0e0e0;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left side - Video section (50%) */
.video-section {
    flex: 1;
    width: 50%;
    position: relative;
    overflow: hidden;
}

#portfolioVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.placeholder-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Right side - Content section (50%) */
.content-section {
    flex: 1;
    width: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Logo styling */
.logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

h1, h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.5px;
}

h1 {
    line-height: 1.1;
}

h2 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing:2px;
    font-weight: 400;
}

.job-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #8b5cf6;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.welcome-text, .contact-text {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-text {
    margin-top: 2rem;
}

/* Skills container and tags */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.skill-tag {
    background: #f8f9fa;
    color: #666;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.skill-tag:hover {
    background: #e9ecef;
    color: #333;
}

/* Skills text with purple separators */
.skills-text {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-align: center;
}

.purple-separator {
    color: #8b5cf6;
    font-weight: 500;
}

.purple-bold {
    color: #8b5cf6;
    font-weight: 600;
}

.email-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #a78bfa;
}


/* Access button styling */
.access-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #5f27cd;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    color: white;
}

.access-btn:active {
    transform: translateY(-1px);
}

/* Contact form styling */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

input[type="email"]:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

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

/* Success message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    animation: fadeIn 0.3s ease;
}

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

@keyframes pulse {
    0%, 85% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(95, 39, 205, 0.3);
    }
    90% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(95, 39, 205, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(95, 39, 205, 0.3);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        overflow-y: auto;
    }
    
    .video-section,
    .content-section {
        width: 100%;
        flex: none;
    }
    
    .video-section {
        height: 50vh;
    }
    
    .content-section {
        height: auto;
        min-height: 50vh;
        padding: 1.5rem;
        padding-bottom: 5rem; /* Add space for fixed button */
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Fixed button at bottom on mobile */
    .access-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        z-index: 1000;
        box-shadow: 0 8px 30px rgba(95, 39, 205, 0.4);
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
}
