/* COMPLETE style.css - LARGER HOVER MESSAGE BOX */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f23;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 60px 60px;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 15px 25px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    text-decoration: none;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.linkedin {
    background: linear-gradient(135deg, #0077b5, #00c6ff);
    color: white !important;
    border: none !important;
}

/* FIXED HEADSHOT WITH FULL-SIZE HOVER MESSAGE */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
}

.headshot {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
}

.image-container:hover .headshot {
    transform: scale(1.02);
    border-color: #00d4ff;
    box-shadow: 0 50px 100px rgba(0, 212, 255, 0.3);
}

/* FULL-SIZE HOVER MESSAGE - COVERS ENTIRE IMAGE */
.hover-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85), 
        rgba(0, 153, 204, 0.2)
    );
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.image-container:hover .hover-message {
    opacity: 1;
}

/* NAVIGATION */
.nav {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 10px 60px;
    margin: 0 60px;
    margin-bottom: 40px;
    display: flex;
    gap: 10px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-btn {
    flex: 1;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover, .nav-btn.active {
    color: white;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Main Content */
.main {
    padding: 0 60px 80px;
}

.section {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.section.active {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.card-item {
    background: rgba(26, 26, 46, 0.7);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card-item:hover::before {
    transform: scaleX(1);
}

.card-item:hover {
    transform: translateY(-12px);
    border-color: #00d4ff;
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.25);
}

.card-item h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.card-date {
    color: #00d4ff;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 12px;
}

.card-item p {
    color: #94a3b8;
    font-size: 1rem;
}

/* ABOUT OVERLAY - DARK SMOKE EFFECT */
.about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15,15,35,0.4) 0%, rgba(0,0,0,0.97) 65%);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.5s ease-out;
}

.about-overlay.hidden {
    display: none;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-overlay-content {
    background: rgba(26,26,46,0.95);
    border-radius: 24px;
    border: 1px solid rgba(0,212,255,0.4);
    max-width: 950px;
    max-height: 85vh;
    width: 90%;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(20px);
    overflow-y: auto;
}

.about-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-close:hover {
    color: #00d4ff;
    background: rgba(0,212,255,0.2);
}

.about-overlay-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-overlay-image {
    width: 220px;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    opacity: 0.13;
    filter: grayscale(100%) brightness(0.35) blur(0.8px);
    border: 2px solid rgba(0,212,255,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-overlay-text {
    flex: 1;
}

.about-overlay-text h2 {
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 45px;
}

.about-stats {
    display: flex;
    gap: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat span:last-child {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* ORIGINAL MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: rgba(26, 26, 46, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    max-width: 800px;
    max-height: 80vh;
    width: 100%;
    padding: 50px;
    position: relative;
    backdrop-filter: blur(20px);
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

#modal-body {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

#modal-body h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

#modal-body p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

#modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

#modal-body li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #cbd5e1;
}

#modal-body li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 30px 40px;
        gap: 40px;
    }
    
    .nav {
        margin: 0 20px;
        padding: 8px 20px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .nav-btn {
        flex: 1 1 45%;
        padding: 14px 12px;
        font-size: 0.9rem;
    }
    
    .main {
        padding: 0 20px 60px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-overlay-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .about-overlay-image {
        width: 180px;
        height: 230px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hover-message {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-contact { gap: 10px; }
    .contact-btn { padding: 12px 20px; font-size: 0.9rem; }
    .nav { margin: 0 10px; }
    .nav-btn { flex: 1 1 100%; }
    .modal-content, .about-overlay-content { padding: 30px 20px; margin: 20px; }
}
.project-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 40px;
    justify-content: center;
}

.video-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.video-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    color: white;
}

.report-btn {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: 1px solid rgba(79, 172, 254, 0.4);
}

.report-btn:hover {
    background: linear-gradient(135deg, #2196f3, #4facfe);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    color: white;
}

/* Responsive for buttons */
@media (max-width: 768px) {
    .project-buttons {
        flex-direction: column;
    }
    
    .project-btn {
        width: 100%;
    }
}