/* Light Theme (Default) */
:root {
    --primary: #b9b9b9;
    --secondary: #b9b9b9;
    --accent: #96bd81;
    --light: #3a3a3a;
    --dark: #1e1e1e;
    --text: #e0e0e0;
    --text-light: #cfcfcf;
    --background: #252525;
    --card: #3d3d3d;
    --border: #646464;
    --hex: #212121;
}
/* Base Styles */
body {
    font-family: 'Michroma';
    line-height: 1.8;
    color: var(--text);
    background-color: var(--background);
    margin: 0;
    padding: 0;
    font-weight: 300;
    transition: background-color 1s ease, color 1s ease;
}


body {
  --s: 37px; /* control the size */
  --c: #0000,var(--background) 0.5deg 119.5deg, #0000 120deg;
  --g1: conic-gradient(from 60deg at 56.25% calc(425% / 6), var(--c));
  --g2: conic-gradient(from 180deg at 43.75% calc(425% / 6), var(--c));
  --g3: conic-gradient(from -60deg at 50% calc(175% / 12), var(--c));
  background: var(--g1), var(--g1) var(--s) calc(1.73 * var(--s)), var(--g2),
    var(--g2) var(--s) calc(1.73 * var(--s)), var(--g3) var(--s) 0,
    var(--g3) 0 calc(1.73 * var(--s)) var(--hex);
  background-size: calc(2 * var(--s)) calc(3.46 * var(--s));
}


h1, h2, h3, h4 {
    font-family: 'Orbitron';
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    transition: color 1s ease;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

h2 {
    font-size: 1.6rem;
    color: var(--accent);
    margin-top: 0;
    font-style: italic;
    font-weight: 400;
    transition: color 1s ease;
}

h3 {
    font-size: 1.4rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: border-color 1s ease;
}

h4 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
    color: var(--secondary);
    transition: color 1s ease;
}

/* Layout */
.container {
    max-width: 1000px;
    min-height: 250px;
    margin: 2rem auto;
    background-color: var(--card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 1s ease;
    display: flex;
    overflow: hidden;
}

.container .thumbnail {
background-color: var(--card);
background-image: url('smart.png');
background-size: cover;
flex: 0 0 33%;
}
.container .description {
background-color:var(--accent);
flex: 0 0 67%;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    transition: border-color 1s ease;
}

.tagline {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    transition: color 1s ease;
}

.columns {
    display: flex;
    gap: 4rem;
}

.experience {
    flex: 2;
}

.skills-education {
    flex: 1;
}

/* Sections */
.job {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.job:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    height: calc(100% - 1rem);
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transition: background 0.3s ease;
}

.company, .school {
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Orbitron';
    letter-spacing: 2px;
    transition: color 1s ease;
}

.date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-style: italic;
    transition: color 1s ease;
}

ul {
    padding-left: 1.5rem;
    list-style-type: none;
}

li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    transition: color 1s ease;
    font-size: .8rem;
    letter-spacing: 1px;
}

li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: .5;
    transition: color 1s ease;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: all 1s ease;
}

.contact p {
    margin: 0.5rem 0;
    letter-spacing: 0.5px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 1s ease;
}

a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Theme Toggle */
.theme-toggle-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

#themeToggle {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#themeToggle:hover {
    transform: scale(1.1);
}

.toggle-icon {
    font-size: 1.2rem;
}
/* Responsive Design */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .container {
        /* padding: 2rem; */
        margin: 0;
        border: none;
        box-shadow: none;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .theme-toggle-container {
        top: 10px;
        right: 10px;
    }

}

/* Special Elements */
.about {
    font-size: 1rem;
    line-height: 1.9;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.job h4 {
    position: relative;
    display: inline-block;
}

.job h4:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transition: background 1s ease;
}

/* From Uiverse.io by boryanakrasteva */ 
@-webkit-keyframes honeycomb {
  0%,
  20%,
  80%,
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  30%,
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes honeycomb {
  0%,
  20%,
  80%,
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  30%,
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.honeycomb {
  height: 100px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.honeycomb div {
  -webkit-animation: honeycomb 2.1s infinite backwards;
  animation: honeycomb 2.1s infinite backwards;
  background: #f3f3f3;
  height: 12px;
  margin-top: 6px;
  position: absolute;
  width: 24px;
}

.honeycomb div:after, .honeycomb div:before {
  content: '';
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
}

.honeycomb div:after {
  top: -6px;
  border-bottom: 6px solid #f3f3f3;
}

.honeycomb div:before {
  bottom: -6px;
  border-top: 6px solid #f3f3f3;
}

.honeycomb div:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  left: -28px;
  top: 0;
}

.honeycomb div:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  left: -14px;
  top: 22px;
}

.honeycomb div:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  left: 14px;
  top: 22px;
}

.honeycomb div:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  left: 28px;
  top: 0;
}

.honeycomb div:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  left: 14px;
  top: -22px;
}

.honeycomb div:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  left: -14px;
  top: -22px;
}

.honeycomb div:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  left: 0;
  top: 0;
}