/* PREMIUM DARK GLASSMORPHISM STYLES */

:root {
    --bg-gradient: linear-gradient(135deg, #0d1117, #161b22);
    --glass-bg: rgba(22, 27, 34, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: #8b949e;
    --primary-color: #58a6ff;
    --highlight-cyan: #00ffcc;
    --highlight-bg: rgba(0, 255, 204, 0.1);
    --font-heading: 'Georgia', serif;
    --font-body: 'Arial', sans-serif;
}

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

body {
    background: var(--bg-gradient);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================
   STATE 1: RECEPTION DESK
   ========================================= */
.reception-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at top left, rgba(88, 166, 255, 0.15), transparent 40%),
                radial-gradient(circle at bottom right, rgba(0, 255, 204, 0.1), transparent 40%);
}

.reception-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.reception-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 1px;
}

.reception-header p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 30px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--highlight-cyan);
    background: rgba(0, 255, 204, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

.corporate-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
}

.corporate-btn:hover {
    background: #468ee5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 166, 255, 0.6);
}

/* =========================================
   STATE 2: RESUME PORTFOLIO
   ========================================= */
.resume-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(0, 255, 204, 0.15), transparent 50%),
                radial-gradient(circle at bottom left, rgba(88, 166, 255, 0.1), transparent 50%);
}

.resume-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 100%;
    max-width: 850px;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.resume-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-cyan));
}

@media (max-width: 600px) {
    .resume-container {
        padding: 30px 15px;
    }
    .reception-card {
        padding: 25px 20px;
    }
    .resume-name {
        font-size: 2rem !important;
        letter-spacing: 1px !important;
    }
    .profile-photo {
        width: 100px;
        height: 100px;
    }
    .reception-header h2 {
        font-size: 1.6rem;
    }
    .experience-block {
        padding: 15px;
    }
}

/* Header & Profile Photo */
.resume-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 25px;
}

.profile-photo-container {
    margin-bottom: 20px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--highlight-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.resume-name {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.contact-band {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.contact-band a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-band a:hover {
    color: var(--highlight-cyan);
}

/* Banner */
.welcome-banner {
    background: var(--highlight-bg);
    border-left: 4px solid var(--highlight-cyan);
    padding: 15px 20px;
    margin-bottom: 35px;
    font-size: 1.05rem;
    color: #fff;
    border-radius: 0 8px 8px 0;
}

/* Sections */
.resume-section {
    margin-bottom: 40px;
}

.section-band {
    background: rgba(255,255,255,0.03);
    color: var(--highlight-cyan);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    letter-spacing: 2px;
}

/* Title & Skills */
.resume-title-header {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.skills-highlight {
    text-align: center;
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 25px;
}

/* Highlights */
mark {
    background-color: transparent;
    color: var(--highlight-cyan);
    font-weight: bold;
}

/* Summary */
.summary-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #c9d1d9;
}

/* Experience Blocks */
.experience-block {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.experience-block:hover {
    transform: translateY(-3px);
    border-color: rgba(88, 166, 255, 0.5);
}

.premium-highlight-block {
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.05), rgba(0,0,0,0.2));
    border-color: rgba(0, 255, 204, 0.3);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.exp-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exp-date {
    color: var(--text-dim);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

.exp-role {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.exp-bullets {
    padding-left: 20px;
    color: #c9d1d9;
}

.exp-bullets li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.resume-link {
    display: inline-block;
    margin-top: 5px;
    color: var(--highlight-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.resume-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Floating Action Button (WhatsApp) */
.wa-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366; 
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

.wa-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 600px) {
    .wa-fab {
        bottom: 20px;
        right: 20px;
        padding: 15px;
        border-radius: 50%;
    }
    .wa-fab span {
        display: none; 
    }
}
