
:root {
    --r-background-color: #0a0e27;
    --r-main-color: #e8e8e8;
    --r-heading-color: #42c5f5;
    --r-link-color: #42c5f5;
    --r-selection-background-color: #42c5f5;
}

.reveal {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.reveal h1, .reveal h2, .reveal h3 {
    text-transform: none;
    font-weight: 600;
}

.reveal h1 {
    font-size: 2.5em;
    margin-bottom: 0.3em;
}

.reveal h2 {
    font-size: 1.8em;
    color: #42c5f5;
    margin-bottom: 0.5em;
}

.reveal h3 {
    font-size: 1.3em;
    color: #6dd5ff;
    margin-bottom: 0.3em;
}

.reveal ul {
    margin-top: 0.5em;
}

.reveal li {
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.highlight {
    color: #42c5f5;
    font-weight: 600;
}

.name-block {
    background: #dde0ed;
    padding: 20px 0 0;
    border-bottom: white 5px solid;
    margin-bottom: 20px;
    height: 350px;
}
.name-block img {
    position: absolute;
    width: 350px;
    margin: 0;
    margin-left: -175px;
}
.name-block h3 {
    color: black;
}
.name-block h4 {
    color: black;
}
.name-block h5 {
    color: black;
}

.quote {
    font-style: italic;
    color: #aaa;
    border-left: 3px solid #42c5f5;
    padding-left: 20px;
    margin: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: rgba(66, 197, 245, 0.1);
    border: 2px solid #42c5f5;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-size: 3em;
    color: #42c5f5;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}

.contact-data {
    font-size: 0.75em; 
    text-align: left;
    margin: 20px 16px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    gap: 8px;
}

.contact-data a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 12px;
    margin: 20px 0;
}

.skill-tag {
    /* background: rgba(66, 197, 245, 0.2); */
    /* border: 1px solid #42c5f5; */
    /* border-radius: 5px; */
    padding: 0px 20px;
    font-size: 0.75em;
    text-align: left;
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.skill-title {
    flex: 1;
    font-size: 0.9em;
}

.skill-rating {
    min-width: 170px;
    max-width: 170px;
    text-align: left;
    display: flex;
    align-items: center;
    color: #6dd5ff;
}

.skill-description {

    font-size: 0.7em;
    color: #aaa;
}

.project-card {
    background: rgba(66, 197, 245, 0.05);
    border-left: 4px solid #42c5f5;
    padding: 20px;
    margin: 15px;
    text-align: left;
}

.project-card h4 {
    color: #42c5f5;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    background: #42c5f5;
    color: #0a0e27;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.7em;
    font-weight: bold;
    margin: 5px;
}

.placeholder {
    background: rgba(255, 193, 7, 0.1);
    border: 2px dashed #ffc107;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    color: #ffc107;
}

.placeholder-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.value-prop {
    background: linear-gradient(135deg, rgba(66, 197, 245, 0.1) 0%, rgba(109, 213, 255, 0.1) 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 30px;
}

.contact-info {
    font-size: 0.9em;
    margin-top: 20px;
}

.contact-info a {
    color: #42c5f5;
    text-decoration: none;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.fragment {
    margin: 10px 0;
}

.small-text {
    font-size: 0.7em;
    color: #aaa;
}

.timeline-item {
    border-left: 3px solid #42c5f5;
    padding-left: 20px;
    margin: 15px 0;
    position: relative;
    padding-top: 1.3em;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #42c5f5;
}

.timeline-item ul {
    font-size: 0.8em;  
}

.timeline-item p {
    font-size: 0.8em;  
    text-align: left;
}

.timeline-dates {
    font-size: 0.6em;
    justify-self: flex-start;
    margin-top: -2.55em;
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: -1em;
}

.only-print {
    display: none;
  }
@media print {
    .no-print {
      display: none !important;
    }
    .only-print {
      display: unset !important;
    }
}
