



html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}



@font-face {
  font-family: highway;
  src: url(/assets/fonts/RabbidHighwaySignII.otf);
}



body {
   
    background-color: #1d3d46;
    background-size: cover;
    position: relative;
    
    
    font-family: "Spline Sans", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    cursor: url('assets/images/right-arrow.png'), auto;
        
}





body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
   
    z-index: -1; 
    pointer-events: none; 
}



*, *::before, *::after {
  box-sizing: border-box;
}


header {
  background-color: #1d3d46;
  color: #faf3d9;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5159203423;
  transition: padding 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


.header-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}


.logo {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  width: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fc977e;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}


.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #1d3d46;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.8;
}


.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links li a {
  color: #faf3d9;
  text-decoration: none;
  padding: 10px;
  font-size: large;
  font-weight: 400;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  font-weight: 700;
  font-size: 1.4em;
  color: #fc977e;
}


.dropdown-toggle {
  display: none;
  background: none;
  border: none;
  color: #faf3d9;
  font-size: 1.5rem;
  cursor: pointer;
}


@media (max-width: 768px) {
  .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fc977e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
 
  .header-content {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
 
  .logo-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .dropdown-toggle {
    display: block;
  }
 
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
    background-color: #1d3d46;
    padding: 10px 0;
    position: relative;
  }
  .nav-links.open {
    display: flex;
    animation: slideDown 0.3s ease-out forwards;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}


@media (max-width: 600px) {
  .header-content {
    padding: 10px;
    max-width: 100%;
  }
}


  

  .button {
    background-color: #fc977e;
    color: #1d3d46; 
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  .button:hover {
    background-color: #de585b;
  }


  #intro {
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   
    color: #1d3d46;
    position: relative;
  }

  #intro h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 600;
  }



.timeline-box {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 10px auto;          
    border: 1px solid #faf3d9;  
    border-radius: 8px;
    overflow: hidden;            
    border: solid 2px #1d3d46;
    background-color: rgba(250, 243, 217, 1);
    transition: transform 0.3s ease-in-out;
  }
  
  .timeline-dates {
    width: 30%;                 
    max-height: 400px;           
    overflow-y: auto;           
    background-color: rgba(29, 61, 70, 0.9);
    color: #faf3d9;       
    padding: 10px;
    position: relative;
  }

  .timeline-indicator {
    position: absolute;
    top: 50%;
    left:0;
    width: 100%;
  }


  .timeline-date {
    padding: 10px;
    border-bottom: 1px solid rgba(250, 243, 217, 0.5);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 400;
  }
  
  .timeline-date:last-child {
    border-bottom: none;
  }
  
  .timeline-date:hover {
    background-color: rgba(252, 151, 126, 1);
    color: rgba(29, 61, 70, 0.9);
    font-weight: 600;
    font-size: 1.5em;
}
  
  
  .timeline-detail {
    width: 70%;                
    padding: 20px;
    background-color: #faf3d9;
    color: rgba(29, 61, 70, 0.9);
    max-height: 400px;     
    overflow-y: hidden;
    box-sizing: border-box;
    
  }

  .timeline-detail h3 {
    margin: 5px;
    font-size: 3em;
    font-weight: 800;
  }
  

 
  
  .timeline-detail h3 > .text {
   
    animation: typing 3s steps(var(--characters)) infinite;
   
    overflow: hidden;
  }
  
  .timeline-detail h3::after {
    content: "_";
    animation: blink 1s infinite;
    animation-timing-function: step-end;
  }
  
  @keyframes typing {
    75%,
    100% {
      max-width: calc(var(--characters) * 1ch);
    }
  }
  
  @keyframes blink {
    0%,
    75%,
    100% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
  }
 
  :root {
    font-size: 18px;
  }




  #start {
    padding: 5px;

    background-color:#faf3d9 ; 
    color:  #1d3d46;
    border-bottom: solid 3px #1d3d46;
  }



  


 




.about-card {
  display: flex;
  flex-wrap: wrap;
  background: #faf3d9;
 
 
  padding-bottom: 60px;
  overflow: hidden;
  margin-bottom: 60px;
  border-bottom: 1px solid #1d3d46;
  justify-content: center;
}
.about-image {
  flex: 1 1 300px;
  max-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 5px solid #1d3d46;
}
.about-info {
  flex: 2 1 400px;
  padding: 20px;
  color: #1d3d46;
}
.about-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
 
}
.about-info ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 1.2rem;
}
.about-info li {
  margin-bottom: 10px;
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }
  
  .about-image {
    margin-bottom: 20px;
  }
  
  .about-info {
    text-align: center;
  }
}



.highlighted {
  background: #fc977e;  
  color: #1d3d46;       
  font-weight: bold;
  position: relative;
 
}



::selection {
  background: #fc977e;  
  color: #1d3d46;       
}




#word-map {
 
  display: flex;
    align-items: center;
    justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
 
  z-index: -1;
  overflow-x: hidden;
}


.word {
  position: absolute;
  color: #fc977e;
  white-space: nowrap;
  opacity: 0;
}



.word > .text {
 
  animation: typing 3s steps(var(--characters)) infinite;
 
  overflow: hidden;
}

.word::after {
  content: "_";
  animation: blink 1s infinite;
  animation-timing-function: step-end;
}

#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow-x: hidden;
}


.bars-container {
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  z-index: 3;
}


.bar {
  background: #faf3d9;
  color: #1d3d46;
  padding: 20px 40px;
  font-size: 4rem;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.top-bar {
  transform-origin: right center;
}
.bottom-bar {
  transform-origin: left center;
  font-size: 2.7rem;
}


.scroll-indicator {
  margin-top: 20px; 
  font-size: 1.5rem;
  color: #faf3d9;
  opacity: 0.8;
  animation: bounce 2s infinite;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}


@media (max-width: 600px) {
  .bar {
    font-size: 1.7rem;
    padding: 15px 30px;
  }
  .scroll-indicator {
    font-size: 1.25rem;
  }
}







.about-synopsis {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  padding-bottom: 60px;
  background: #faf3d9;
 
  border-bottom: 1px solid #1d3d46;
}

.synopsis-heading {
  font-size: 2.5rem;
  margin-bottom: 10px;
 

  color: #1d3d46;
}

.synopsis-text {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Spline Sans', sans-serif;
  color: #1d3d46;
}



.timeline-heading {
 
  font-size: 3rem;
  color: #1d3d46;                         
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}


.timeline-heading::after {
  content: "";
  display: block;
  width: 50vw;
  max-width: 400px;
  height: 4px;
  background: #fc977e;                     
  margin: 0.5rem auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}





#skills {
  padding: 40px 20px;
  background: #faf3d9;  
  color: #1d3d46;       
  text-align: center;
}

#skills h2 {
 
  font-size: 2.5rem;
  margin-bottom: 30px;
}


.skills-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}



.skill-item {
  background: #fff;
  border: 2px solid #1d3d46;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-in-out;
 
}

.skill-item:hover {
  transform: scale(1.1);
 
  color: #1d3d46;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}


.skill-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}


.skill-item p {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1rem;
  margin: 0;
}


@media (max-width: 600px) {
  #skills h2 {
    font-size: 2rem;
  }
  .skill-item {
    padding: 15px;
  }
  .skill-item img {
    width: 60px;
    height: 60px;
  }
  .skill-item p {
    font-size: 0.9rem;
  }
}



.page-break {
  height: 30vh;
  background-color: #1d3d46; 
  display: flex;
  align-items: end;
  padding-bottom: 50px;
  justify-content: center;
  overflow: hidden;
}

.skills-title {
  font-size: 3rem;         
  color: #1d3d46;          
  margin: 0;
 
  white-space: nowrap;
}


@media (max-width: 600px) {
  .skills-title {
    font-size: 2rem;
  }
}


.full-width-section {
  width: 100%;
  background: #faf3d9;
  padding: 40px 0;    
}


.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.section-heading {
  text-align: center;
 
  font-size: 2.5rem;
  color: #1d3d46;
  margin-bottom: 40px;
}


.experience-item {
  margin-bottom: 60px;
  padding: 20px;
  border-bottom: 1px solid #1d3d46;
}


.experience-header {
  display: flex;
  align-items: center;
  gap: 15px; 
  margin-bottom: 10px;
  height: 10vh;
}


.company-logo {
  width: 200px;        
  height: auto;       
  object-fit: contain;
}


.experience-item h3 {
 
  font-size: 2rem;
  color: #1d3d46;
  margin: 0;          
}


.experience-item p {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #1d3d46;
  margin-bottom: 10px;
}


.experience-gallery {
  display: flex;
  gap: 10px;
  overflow-x: hidden;
  padding-bottom: 10px;
}

.experience-gallery img {
  flex-shrink: 0;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
  .company-logo {
    width: 150px;
  }
  
  .experience-header {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    height: auto;
  }
}



#game-section {
  padding: 40px 20px;
  background-color: #faf3d9; 
  color: #1d3d46;          
  text-align: center;
}
.game-details {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}


.game-info {
  flex: 1;
  max-width: 500px;
}
.game-title {
  font-size: 2rem;
  margin: 0 0 10px;
  font-family: highway;
  color: #1d3d46;
}
.game-description {
  font-family: "Comfortaa", serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
  color: #1d3d46;
}
.phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
}



.game-prompt {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #1d3d46;
  animation: bob 2s infinite;
  white-space: nowrap;
}


@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}


.phone-frame {
  position: relative;
  width: 300px;
  height: 600px;
}


.game-inner {
  position: absolute;
  top: 4%;
  left: 3.5%;
  width: 92%;
  height: 92%;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}


.game-inner iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}
.phone-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/smart-phone-blank-screen-template-free-vector-removebg.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}


@media (min-width: 768px) {
  .game-details {
    flex-direction: row; 
    align-items: center;
    text-align: left;
  }
  .game-info {
    text-align: left;
    margin-right: 20px;
  }
  .phone-container {
    margin-top: 0;
  }
  .phone-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}






@media (max-width: 767px) {
 
  #game-section {
    display: block;
    text-align: center;
    padding: 20px;
  }
  .phone-container {
    margin-top: 20px;
  }
 
  .phone-frame {
    width: 80vw;          
    height:auto;         
    aspect-ratio: 300 / 600; 
    margin: 0 auto;
  }
  .game-prompt {
    position: relative;
    top: 0;
    margin-top: 10px;
   
   
   
    transform: none;
  }

}



*, *::before, *::after {
  box-sizing: border-box;
}




#contact {
  padding: 40px 20px;
  text-align: center;
  background-color: #1d3d46; 
  color: #1d3d46;          
}


.contact-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: #faf3d9;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}


.contact-box h2 {
 
  font-size: 2.5rem;
  margin-bottom: 20px;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  border: 1px solid #1d3d46;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Spline Sans', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fc977e;
  box-shadow: 0 0 5px rgba(252, 151, 126, 0.5);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background-color: #1d3d46;
  color: #faf3d9;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background-color: #fc977e;
  transform: scale(1.05);
}


#form-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.spinner {
  border: 4px solid #1d3d46;
  border-top: 4px solid #fc977e;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.form-response {
  font-family: 'Spline Sans', sans-serif;
  font-size: 1.2rem;
  margin-top: 20px;
  color: #1d3d46;
  opacity: 0;
  transition: opacity 0.5s ease;
}


@media (max-width: 767px) {
  .grecaptcha-badge,
  .rc-anchor {
    display: none !important;
  }
}




.contact-social {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
  color: #1d3d46;
  font-family: 'Spline Sans', sans-serif;
}

.contact-social p {
  margin: 0 0 10px;
}

.contact-social a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-social a:hover {
  transform: scale(1.1);
}

.linkedin-icon {
  width: auto; 
  border-radius: 5px;
  height: 40px;
  vertical-align: middle;
  border: solid 2px #1d3d46;
  padding: 5px;
}
.linkedTitle {
  font-family: 'Spline Sans', sans-serif;
}