/* varibles */
:root {
  --bg-color: #121212;
  --primary-text: #eaeaea;
  --secondary-text: #b3b3b3;
  --primary-accent: #6c63ff;
  --card-bg: #1e1e1e;
  --border-color: #333333;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;  
  background-color: var(--bg-color);
  color: var(--primary-text);
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1,h2,h3,h4 {
  color: var(--primary-text);
  line-height: 1.2;
}

h2.section-title {
  font-size: 40px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

h2.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-accent);
  border-radius: 2px;
}

a {
  color: var(--primary-accent);
  text-decoration: none;
}

/* buttons*/
input[type="submit"]{
  background-color: var(--primary-accent);
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}
input[type="submit"]:hover{
background-color: #574bda;
  color: white;
  transform: translateY(-2px);
}
.btn {
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: white;
}

.btn-primary:hover {
  background-color: #574bda;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
}

.btn-outline:hover {
  background-color: var(--primary-accent);
  color: white;
  transform: translateY(-2px);
}

/* header */
.site-header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  background-color: #121212;
  opacity: 0.9;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.logo-sub {
  color: var(--primary-accent);
}

.main-nav a {
  margin-left: 25px;
  color: var(--secondary-text);
  font-weight: 500;
}

.main-nav a.cta {
  color: var(--primary-accent);
}

.main-nav a:hover {
  color: var(--primary-text);
}

/* work status */
.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 9.6px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 12px 6px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.status-circle {
  width: 12px;
  height: 12px;
  background-color: var(--primary-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(108, 99, 255, 1);
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--secondary-text);
  text-transform: uppercase;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(108, 99, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
  }
}

/* hero */

#tal-hero {
  color: #574bda;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}

h1.stacked {
  font-family: 'Syne', sans-serif;
  font-size: 96px;
  font-weight: 800; 
  line-height: 1.1;
  margin: 0;
}

.hero-lead {
  font-size: 19.2px;
  margin: 32px 0;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-right {
  width: 100%;
  height: 650px;
}

spline-viewer {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  outline: none;
}


/* projects */
.projects{
  padding: 120px 0px;
}

.projects-grid-page{
  padding-top: 120px ;
  padding-right:120px;
    padding-left:120px;
      padding-bottom: 120px ;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.card {
  position: relative;
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  min-height: 250px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--secondary-text);
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-bg-text-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: max-content;
  z-index: 1;
}

.card-bg-text {
  font-size: 128px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 16px;
}

.card h3{
  position: absolute;
  
  left: 24px;
}

.card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  margin: 0;
  font-size: 24px;
  transform: translateY(0%);
}

  .coreflow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 0; 
  opacity: 0.6; 
  filter: blur(3px);
}

.planner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 0; 
  opacity: 0.6; 
  filter: blur(3px);
}

.progress-badge {
  position: absolute;
  padding: 8px 20px;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid var(--primary-accent); 
  border-radius:20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-text);
  backdrop-filter: blur(4px); 
}

.progress-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(108, 99, 255, 1);
  animation: pulse 2s infinite;
}

/* services */
.services {
  padding: 80px 0;
  background-color: var(--card-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service {
  text-align: center;
  position: relative;
}
.branding-img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.graphic-img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  }

  .coding-img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  }

  .web-img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  }

.service-img {
  width: 200px;
  height: 200px;
  background-color: var(--secondary-text);
  border-radius: 50%;
  margin: 0 auto 16px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--primary-accent);
}

.service-img::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--secondary-text);
  border-radius: 50%;
  background-color: var(--primary-accent);
  opacity: 0.5; 
  mix-blend-mode: multiply; 
  z-index: 2;
  pointer-events: none;
}

.service h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* contact */
.contact {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: -210px;
  position: relative;
  z-index: 10;
}

.contact-image {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--bg-color);
}

#contact .section-title {
  margin-bottom: 0;
}

/* footer*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  font-size: 14.4px;
  color: var(--secondary-text);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.social-links a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}
.social-links .behance-link img {
  width: 20px;
  height: 25px;
}

/* projects page */

.projects-page-header {
    padding-top: 100px; 
    padding-bottom: 64px;
    text-align: center;
}

.projects-page-header .stacked {
    font-size: 64px; 
}

.projects-page-header .hero-lead {
    margin: 16px auto 0 auto;
    font-size: 17.6px;
}

.full-projects-gallery {
    padding-bottom:128px;
}



.project-page .site-header {
  position: static;
  backdrop-filter: none;
  background-color: var(--bg-color);
}

.project-hero {
  padding-top: 64px;
  padding-bottom: 64px;
}

.project-title-card {
  padding: 3rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 48px;
}

.project-title-card h1 {
  font-family: "Syne", sans-serif;
  font-size: 56px;
  margin: 0;
  font-weight: 800;
}

.project-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
  color: var(--secondary-text);
  font-family: 'Inter', sans-serif;
}

.project-hero-image {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(108, 99, 255) 0%, rgba(30, 30, 30, 0) 60%), #1a1a1a;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.placeholder-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.3;
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-top: 4rem;
  padding-bottom: 128px;
  border-top: 1px solid var(--border-color);
}

.project-column-left h3, .project-column-right h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 19.2px;
  color: var(--primary-accent);
  margin-top: 0;
}

.project-column-right p {
  font-size: 17.6px;
  color: var(--secondary-text);
  line-height: 1.7;
}

.project-footer {
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 64px 0;
  transition: background-color 0.3s ease;
}

.project-footer:hover {
  background-color: var(--card-bg);
}

.project-footer a {
  text-decoration: none;
}

.project-footer span {
  font-size: 16px;
  color: var(--secondary-text);
  font-family: 'Inter', sans-serif;
}

.project-footer h3 {
  font-family: "Syne", sans-serif;
  font-size: 48px;
  color: var(--primary-text);
  margin: 0.5rem 0 0 0;
  font-weight: 800;
}


.resume-page .site-header {
  position: static;
  backdrop-filter: none;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

.resume-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-top: 4rem;
  
}

.resume-sidebar {
  position: relative;
}

.sidebar-content {
  position: sticky;
  top: 4rem; 
}

.sidebar-content .stacked {
  font-size: 3rem;
  line-height: 1;
}

.sidebar-content .hero-lead {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.sidebar-content .btn {
  width: 100%;
  text-align: center;
}

.resume-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-accent);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.skills-list,
.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: var(--secondary-text);
  line-height: 1.8;
  font-size: 0.9rem;
}

.contact-list li {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
}

.resume-main-content {
  padding-top: 1rem;
}

.resume-section {
  margin-bottom: 3rem;
}

.resume-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.resume-item {
  margin-bottom: 2.5rem;
}

.resume-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
}

.resume-subhead {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin: 0.25rem 0 0.75rem 0;
}

.resume-item p {
  color: var(--secondary-text);
  line-height: 1.7;
  margin: 0;
}


.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 4rem;
    padding-top: 140px; 
    padding-bottom: 100px;
    align-items: start;
    min-height: 80vh; 
}


.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;  
}


.contact-avatar {
    width: 280px; 
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 32px;
    filter: grayscale(100%); 
    border: 1px solid var(--border-color); 
}

.contact-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin: 0 0 24px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); 
    width: 60px;
    height: 5px;
    background-color: var(--primary-accent);
    border-radius: 4px;
}

.contact-info .hero-lead {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-subtext {
    color: var(--secondary-text);
    margin-bottom: 2rem;
    font-size: 16px;
}


.direct-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-link {
    font-size: 18px;
    color: var(--primary-text);
    font-weight: 600;
    border-bottom: 1px solid var(--primary-accent);
    padding-bottom: 2px;
}

.contact-link:hover {
    color: var(--primary-accent);
}


.styled-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--primary-text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}
