@import url(https://fonts.googleapis.com/css?family=Varela+Round);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);

/* ===== PROFILE LANDING PAGE ===== */
.profile-landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
}

.profile-landing-container {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.profile-landing-picture {
  margin-bottom: 2rem;
}

.profile-landing-picture img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #66cc99;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(102, 204, 153, 0.3);
}

.profile-landing-name {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin: 1rem 0 0.5rem;
  font-family: 'Varela Round', sans-serif;
  font-weight: 700;
}

.profile-landing-title {
  font-size: 1.1rem;
  color: #66cc99;
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.profile-landing-contact {
  margin: 2rem 0;
  text-align: left;
}

.contact-item {
  margin: 0.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-weight: 600;
  color: #4a4e51;
  font-size: 0.9rem;
}

.contact-value {
  color: #666;
  word-break: break-all;
}

.contact-value:hover {
  color: #66cc99;
}

.profile-landing-bio {
  color: #666;
  font-size: 0.95rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.profile-landing-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}

.social-link {
  padding: 0.6rem 1rem;
  background: #f0f0f0;
  color: #66cc99;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-link:hover {
  background: #66cc99;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 204, 153, 0.4);
}

.profile-landing-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #827777;
  box-shadow: 0 10px 20px rgba(102, 100, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(102, 100, 234, 0.5);
}

.btn-secondary {
  background: #f0f0f0;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .profile-landing-container {
    padding: 2rem 1.5rem;
  }

  .profile-landing-name {
    font-size: 1.8rem;
  }

  .profile-landing-picture img {
    width: 120px;
    height: 120px;
  }

  .profile-landing-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ===== RESUME STYLES ===== 
/* Variables compiled to static values */
/* ===== LANDING OPTIONS STYLES ===== */
.landing-hero {
  min-height: 100vh;
  background: linear-gradient(120deg,#0f172a 0%, #1e293b 60%);
  color: #ffffff;
  padding: 2.5rem 1rem;
}

.landing-layout { display:flex; gap:2rem; align-items:flex-start; max-width:1200px; margin:0 auto; }

.sidebar {
  width: 260px;
  flex: 0 0 260px;
  display:flex;
  flex-direction:column;
  gap:1.6rem;
  align-items:flex-start;
}

.landing-avatar-wrap { padding:6px; }
.landing-avatar { width:96px; height:96px; border-radius:50%; border:3px solid rgba(255,255,255,0.12); object-fit:cover; display:block; }

.options-vertical { display:flex; flex-direction:column; gap:10px; width:100%; }
.option-btn {
  position:relative;
  display:flex; align-items:center; gap:0.9rem; width:100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  padding: 0.9rem 1rem; border-radius:12px; color:#fff; text-decoration:none; box-shadow: 0 8px 30px rgba(2,6,23,0.6);
  border: 1px solid rgba(255,255,255,0.04); transform-origin:left center; transition: transform .18s ease, box-shadow .18s ease;
}
.option-btn:hover { transform: translateX(6px); box-shadow: 0 14px 40px rgba(2,6,23,0.7); }
.option-btn:focus { outline: 2px solid rgba(102,204,153,0.2); }
.btn-icon { font-size: 2.8rem; width:72px;height:72px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.02); }
.btn-label { font-weight:700; font-size:1.05rem; color: #e6eef8; }
.btn-ripple { position:absolute; left:50%; top:50%; width:36px; height:36px; background: rgba(102,204,153,0.18); border-radius:50%; transform:translate(-50%,-50%); pointer-events:none; }
.landing-main { flex:1 1 auto; padding:2.2rem 1.6rem; }
.landing-inner { max-width:820px; }
.landing-title { font-family: 'Varela Round', sans-serif; font-size:2.6rem; margin:0 0 0.4rem; color:#66cc99; }
.landing-sub { color: #e6eef8; margin:0 0 1rem; }
.landing-note { color: rgba(230,238,248,0.75); margin-top:0.8rem; font-size:1rem; }

/* Icon coloring controlled via currentColor on SVG */
.option-btn .btn-icon { color: #66cc99; transition: color .18s ease, background .18s ease; }
.option-btn .btn-icon svg { display:block; width: 100%; height: 100%; }
.option-btn:hover .btn-icon { color: #ffffff; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.option-btn:focus .btn-icon { color: #ffffff; }

/* Avatar subtle float to match resume animation feel */
.landing-avatar { display:block; }
.landing-avatar-wrap { display:inline-block; }
@keyframes avatarFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.landing-avatar { animation: avatarFloat 3.5s ease-in-out infinite; }

@media (max-width: 900px) {
  .landing-layout { flex-direction:column; align-items:center; }
  .sidebar { width:100%; flex:0 0 auto; align-items:center; }
  .options-vertical { flex-direction:row; gap:0.8rem; flex-wrap:wrap; justify-content:center; }
  .option-btn { width:auto; padding:0.8rem 1rem; }
}

@media (max-width: 480px) {
  .landing-title { font-size:1.4rem; }
  .btn-icon { width:56px;height:56px;font-size:1.8rem; }
}

*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

a {
  color: #66cc99;
  text-decoration: none;
}

.clearfix::after, .clearfix::before {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.bold {
  color: #4a4e51;
  font-weight: 400;
}

.resume-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
}

.container {
  min-height: 600px;
}

.profile {
  background: #fff;
  width: 40%;
  float: left;
  color: #9099a0;
}

@media (max-width: 850px) {
  .profile {
    width: 100%;
  }
}

.profile .name-wrapper {
  float: left;
  width: 60%;
}

.profile h1 {
  font-size: 2.5em;
  text-align: left;
  font-family: 'Varela Round', sans-serif;
  color: #4a4e51;
  text-transform: uppercase;
  line-height: 1em;
  padding-top: 40px;
}

@media (max-width: 1200px) {
  .profile h1 {
    padding-top: 20px;
  }
}

@media (max-width: 450px) {
  .profile h1 {
    font-size: 1.8em;
    padding-top: 20px;
  }
}

.profile li {
  margin-bottom: 10px;
}

.profile .picture-resume-wrapper {
  width: 40%;
  display: block;
  float: left;
}

@media (max-width: 1200px) {
  .profile .picture-resume-wrapper {
    width: 100%;
  }
}

.profile .picture-resume {
  width: 220px;
  height: 220px;
  background-size: cover;
  border-radius: 50%;
  margin-right: 0px;
  display: table;
  position: relative;
  vertical-align: middle;
}

.profile .picture-resume span {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  margin: 0 auto;
  z-index: 10;
  text-align: center;
}

.profile .picture-resume img {
  border-radius: 50%;
  width: 130px;
}

@media (max-width: 1500px) {
  .profile .picture-resume img {
    width: 80px;
  }
}

@media (max-width: 1200px) {
  .profile .picture-resume img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 1500px) {
  .profile .picture-resume {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1200px) {
  .profile .picture-resume {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 450px) {
  .profile .picture-resume {
    width: 180px;
    height: 180px;
  }
}

.profile .contact-info {
  margin-top: 100px;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .profile .contact-info {
    margin-top: 70px;
  }
}

@media (max-width: 450px) {
  .profile .contact-info {
    margin-top: 50px;
  }
}

.profile .list-titles {
  float: left;
  text-align: left;
  font-weight: 600;
  width: 40%;
  color: #4a4e51;
}

.profile .list-content {
  float: left;
  width: 60%;
  text-align: left;
  font-weight: 300;
}

.profile .contact-presentation {
  text-align: left;
  font-weight: 300;
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 1200px) {
  .profile .contact-presentation {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media (max-width: 850px) {
  .profile .contact-presentation {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.profile svg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.profile .st0, .profile .st1 {
  fill: #f82323;
}

.experience {
  background: #3d3e42;
  width: 60%;
  float: left;
  position: relative;
  color: #66cc99;
  font-weight: 500;
  min-height: 100%;
  min-height: 100vh;
}

@media (max-width: 850px) {
  .experience {
    width: 100%;
  }
}

.experience h3.experience-title {
  color: #66cc99;
  text-align: left;
  text-transform: uppercase;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 400;
}

.experience .company-wrapper {
  width: 30%;
  float: left;
  text-align: left;
  padding-right: 5%;
  margin-bottom: 60px;
}

@media (max-width: 450px) {
  .experience .company-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
}

.experience .job-wrapper {
  width: 70%;
  float: left;
  text-align: left;
  padding-right: 5%;
  margin-bottom: 60px;
}

@media (max-width: 450px) {
  .experience .job-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}

.experience .experience-title {
  color: white;
  margin-bottom: 15px;
}

.section-padding {
  padding: 60px 60px 40px 40px;
}

@media (max-width: 850px) {
  .section-padding {
    padding: 80px 15% 40px 10%;
  }
}

@media (max-width: 450px) {
  .section-padding {
    padding: 40px 10% 20px 5%;
  }
}

.section-wrapper {
  width: 70%;
  float: left;
  text-align: left;
  color: #9099a0;
  font-weight: 300;
  margin-bottom: 20px;
}

@media (max-width: 450px) {
  .section-wrapper {
    width: 100%;
  }
}

.section-wrapper:nth-child(3) {
  padding-right: 8%;
}

.section-wrapper h3.section-title {
  color: #66cc99;
  text-align: left;
  text-transform: uppercase;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 400;
}

.section-wrapper .skill-percentage {
  margin-bottom: 10px;
  position: relative;
}

.section-wrapper .skill-percentage::after {
  content: "";
  width: 100%;
  height: 6px;
  background: #4a4e51;
  display: block;
  margin-top: 3px;
}

.section-wrapper .skill-percentage::before {
  content: "";
  height: 6px;
  background: #66cc99;
  position: absolute;
  margin-top: 3px;
  bottom: 0;
}

.section-wrapper .skill-percentage:nth-child(1)::before {
  width: 90%;
  animation: skill_1 0.6s ease;
}

.section-wrapper .skill-percentage:nth-child(2)::before {
  width: 70%;
  animation: skill_2 0.6s ease;
}

.section-wrapper .skill-percentage:nth-child(3)::before {
  width: 80%;
  animation: skill_3 0.6s ease;
}

.section-wrapper .skill-percentage:nth-child(4)::before {
  width: 70%;
  animation: skill_4 0.6s ease;
}

.section-wrapper .skill-percentage:nth-child(5)::before {
  width: 60%;
  animation: skill_5 0.6s ease;
}

.section-wrapper .skill-percentage:nth-child(6)::before {
  width: 70%;
  animation: skill_6 0.6s ease;
}

.section-wrapper .skill-percentage:nth-child(7)::before {
  width: 80%;
  animation: skill_6 0.6s ease;
}

@keyframes skill_1 {
  from {
    width: 0%;
  }
  to {
    width: 90%;
  }
}

@keyframes skill_2 {
  from {
    width: 0%;
  }
  to {
    width: 70%;
  }
}

@keyframes skill_3 {
  from {
    width: 0%;
  }
  to {
    width: 80%;
  }
}

@keyframes skill_4 {
  from {
    width: 0%;
  }
  to {
    width: 70%;
  }
}

@keyframes skill_5 {
  from {
    width: 0%;
  }
  to {
    width: 60%;
  }
}

@keyframes skill_6 {
  from {
    width: 0%;
  }
  to {
    width: 70%;
  }
}

@keyframes skill_7 {
  from {
    width: 0%;
  }
  to {
    width: 80%;
  }
}