@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

body{
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.7;
	color: #6b6a72;
	background-color: #f6f3f5;
	overflow-x: hidden;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}
a {
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}

/* #Primary style
================================================== */

.section {
    position: relative;
	width: 100%;
	display: block;
}
.over-hide{
	overflow: hidden;
}
.full-height {
	height: 100vh;
}

/* #Navigation
================================================== */

a,
.btn {
  transition: all 300ms ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;              /* covers 1em (~16px) + 80px nav height, plus a little buffer */
  background-color: #f6f5f3; /* same as your nav background */
  z-index: 999;              /* just below #desktop-nav's z-index: 1000 */
}

#desktop-nav,
#hamburger-nav,
.nav-links {
  display: flex;
  list-style: none;
  justify-content: center; /* Center the items horizontally */
  align-items: center; /* Center the items vertically */
  height: auto;
  margin: 0;
}

#desktop-nav {
  justify-content: space-around;
  align-items: center;
  height: 80px;
}

.nav-links {
  gap: 1rem;
  list-style: none;
  font-size: 1rem;
}

.nav-links img {
  margin-right: 7px; /* Adjust the space between logo and text */
  height: 20px; /* Adjust the height of the logo as needed */
  width: auto; /* Maintain aspect ratio */
}
a {
  color: black;
  text-decoration: none;
  text-decoration-color: white;
}

a:hover {
  color: grey;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181, 181, 181);
}
a.active {
  text-decoration: underline; /* Add underline for the active link */
  text-decoration-thickness: 2px;
  text-underline-offset: 5px; /* Adjust the distance between text and underline */
}

#desktop-nav {
  position: fixed;
  top: 1em;
  width: calc(100% - 100px);
  margin-left: 50px;
  background-color: white;
  z-index: 1000;
  align-items: center;
  background-color: #f6f5f3; 
  box-sizing: border-box;
}

.nav-links .icon {
  width: 24px; /* Adjust width of icon links */
}

.nav-links .chat {
  background-color: black;
  border-radius: 25px; /* Adjust the roundness of the corners */
  padding: 13px 20px; /* Adjust the padding to control the size of the rectangle */
  margin-right: 15px; /* Adjust the spacing from other links */
  display: flex;
  align-items: center; /* Vertical alignment in the middle */
}

.nav-links .chat a {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14.4px;
  line-height: normal;
  vertical-align: baseline;
  letter-spacing: 0px;
  word-spacing: 0px;
  color:#ffffff;
  color: rgb(255, 255, 255);
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0);
}
.logo {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  vertical-align: baseline;
  letter-spacing: 0px;
  word-spacing: 0px;
  color:#000000;
  color: rgb(0, 0, 0);
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0);
}

.logo:hover {
  cursor: default;
}

.center-links {
  display: flex;
  gap: 20px; /* Adjust space between center links */
  margin-left: auto;
  margin-right: auto;
}

.center-links .nav-item {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22.4px;
  vertical-align: baseline;
  letter-spacing: 0px;
  word-spacing: 0px;
  color:#000000;
  color: rgb(0, 0, 0);
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0); /* Adjust font size as needed */
}

.icons-and-chat {
  align-items: center; /* Align icons and chat vertically in the middle */
}

.icons-and-chat .icon img {
  width: 20px; /* Adjust the width of icons */
}

.center-links,
.icons-and-chat {
  display: flex;
  gap: 20px; /* Adjust space between center links and icons/chat */
  align-items: center; /* Align items vertically in the middle */
}
#hamburger-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #f6f5f3;
	z-index: 1000;
  }

  .center-links .nav-item a {
    position: relative;
}

.center-links .nav-item a:after {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -1px;
    left: 50%;
    width: 0;
    height: 0;
    opacity: 0;
    background-color: #FF9900;
    z-index: 1;
    transition: all 200ms linear;
}

.center-links .nav-item.active-nav a:after {
    height: 2px;
    opacity: 1;
    left: 0;
    width: 100%;
}
  
  
.hamburger-menu {
position: relative;
display: inline-block;
}

.cd-header {

    width: 100%;
    background-color: #f6f5f3;
	position: relative;
    z-index: 999;
}
.header-wrapper{
    position: relative;
	width: calc(100% - 100px);
	margin-left: 50px;
} 
.logo-wrap {
	position: absolute;
	display:block;
	top: 40px;
}
.logo-wrap {
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 0.5px;
	color: #000;
	transition : all 0.3s ease-out;
    text-decoration: none;
}
.logo-wrap:hover {
	opacity: 0.9;
}
.nav-but-wrap{ 
	position: relative;
	float: right;
	padding-left: 15px;
	padding-top: 15px;
	margin-top: 26px;
	transition : all 0.3s ease-out;
}
.menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 10001;
	cursor: pointer;
	display: block;
}
.menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: #000;
	margin-bottom: 7px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
	width: 16.5px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon__line-right {
	width: 16.5px;
	float: right;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
	width: 30px;
}
.nav {
	position: fixed;
	z-index: 98;
}
.nav:before, .nav:after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(20, 21, 26,0.6);
	border-bottom-left-radius: 200%;
	z-index: -1;
	-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	-webkit-transform: translateX(100%) translateY(-100%);
          transform: translateX(100%) translateY(-100%);
}
.nav:after {
	background: rgba(9,9,12,1);
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav:before {
	-webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.nav__content {
	position: fixed;
	visibility: hidden;
	top: 50%;
	margin-top: 20px;
	-webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
	width: 100%;
	text-align: center;
}
.nav__list {
	position: relative;
	padding: 0;
	margin: 0;
	z-index: 2;
}
.nav__list-item {
	position: relative;
	display: block;
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
	opacity: 0;
	text-align: center;
	color: #fff;
	overflow: hidden; 
	font-family: 'Montserrat', sans-serif;
	font-size: 8vh;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 3px;
	-webkit-transform: translate(100px, 0%);
          transform: translate(100px, 0%);
	-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, transform .3s ease;
	transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
	margin-top: 0;
	margin-bottom: 0;
}
.nav__list-item a{ 
	position: relative;
	text-decoration: none;
	color: rgba(255,255,255,0.6);
	overflow: hidden; 
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: 900;
	z-index: 2;
	display: inline-block;
	text-transform: uppercase;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list-item a:after{ 
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -2px;
	left: 50%;
	width: 0;
	height: 0;
	opacity: 0;
	background-color: #FF9900;
	z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list-item a:hover:after{ 
	height: 4px;
	opacity: 1;
	left: 0;
	width: 100%;
}
.nav__list-item a:hover{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a:after{ 
	height: 4px;
	opacity: 1;
	left: 0;
	width: 100%;
}
body.nav-active .cd-header {
    background-color: transparent;
}
body.nav-active .nav__content {
	visibility: visible;
}
body.nav-active .menu-icon__line {
	background-color: #fff;
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}
body.nav-active .nav {
	visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
	-webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
	border-radius: 0;
}
body.nav-active .nav:after {
	-webkit-transition-delay: .1s;
          transition-delay: .1s;
}
body.nav-active .nav:before {
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.nav-active .nav__list-item {
	opacity: 1;
	-webkit-transform: translateX(0%);
          transform: translateX(0%);
	-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
	-webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(1) {
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(2) {
	-webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(3) {
	-webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(4) {
	-webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(5) {
	-webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(6) {
	-webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(7) {
	-webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(8) {
	-webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(9) {
	-webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(10) {
	-webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

/* GLOBAL BOX SIZING */
*, *::before, *::after {
    box-sizing: border-box;
}


/* RESET & LAYOUT FIXES */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Stops horizontal scrollbars */
  min-height: 100%;
}

/* Add this to your body tag to force page elements to stretch */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* PUSH FOOTER DOWN */
main {
    flex: 1;
	padding-top: 100px;
}

/* FOOTER SECTION */
footer {
  width: calc(100% - 100px);
  margin-left: 50px;
  margin-right: 50px;
  margin-top: auto;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 22.4px;
  color: #000000;
  font-weight: 300;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000000;
  padding-top: 10px;
}

.role {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.social-icons img {
  width: 20px;
  margin: 0 5px;
}



/* Profile + About Me — side by side (photo left, content right)
================================================== */

/* HOME / INTRO SECTION */

#home {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
}
#intro {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 20px 0 20px;
}

.home-profile {
    flex: 0 0 32%;
    position: sticky;
    top: 100px;
	align-self: flex-start;
}

.home-profile img {
    width: 100%;
	max-height: 560px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(15%);
}

.about-me-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.paragraph {
    padding:26px 0;
    border-top: 1px solid #e5e5e5;
}

.paragraph:first-child {
    border-top: none;
    padding-top: 0;
}

.paragraph .title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    color: #1d1d1f;
    line-height: 1.2;
}

.paragraph .description {
    margin: 0;
    line-height: 1.75;
    font-size: 15.5px;
    color: #6e6e73;
    font-weight: 400;
}

/* ==================================================
   EXPERIENCE PAGE — photo left (sticky), timeline right
   ================================================== */
#experience {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
}
.experience-page {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 20px 0 20px;
}

/* ---------- Left: profile ---------- */

.experience-profile {
    flex: 0 0 32%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.experience-photo-wrap {
    width: 100%;
    background-color: #e8e6e1;   /* the "rectangle" behind the cutout */
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;        /* Remove max-height so aspect ratio holds naturally */
}

.experience-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Alignment changed from 'center bottom' to 'center top' */
    filter: grayscale(15%);
    display: block;
}

.experience-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    line-height: 1.2;
    margin: 20px 0 4px;
}

.experience-role {
    font-size: 15.5px;
    font-weight: 400;
    color: #6e6e73;
    margin: 0 0 18px;
}

.experience-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.experience-contact a {
    font-size: 14px;
    color: #6e6e73;
    text-decoration: none;
    transition: color 0.2s ease;
}

.experience-contact a:hover {
    color: #1d1d1f;
}

.experience-socials {
    display: flex;
    gap: 14px;
}

.experience-socials img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.experience-socials img:hover {
    opacity: 1;
}

/* ---------- Right: timeline ---------- */

.experience-timeline-wrap {
    flex: 1;
}

.experience-title {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    line-height: 1;
    margin: 0 0 25px;
}

.experience-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.experience-timeline::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 5px;
    width: 1px;
    background: #e5e5e5;
}

.timeline-item {
    position: relative;
    padding: 0 0 40px 34px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #1d1d1f;
}

.timeline-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.resume-download-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14.4px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.resume-download-btn:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
}

/* 100% Dark */
.timeline-role {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

/* 90% Dark */
.timeline-company {
    font-size: 16px;
    font-weight: 550;
    color: #1d1d1f;
    opacity: 0.90;
}

/* 80% Dark */
.timeline-date {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
    opacity: 0.80;
}

/* Divider scaled relative to text */
.timeline-divider {
    color: #1d1d1f;
    opacity: 0.45;
    font-size: 14px;
    font-weight: 300;
}
/* PROJECTS SECTION */

#projects {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
}

.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    padding: 20px 0 20px;
}

.project-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.project-card .image-wrap {
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.06);
}

.project-card .card-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-card h2 {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 12px;
    color: #000;
    line-height: 1.3;
}

.project-card p {
    margin: 0 0 18px;
    line-height: 1.7;
    font-size: 14.5px;
}

.project-card .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tech-tag {
    background-color: #f6f3f5;
    color: #333;
    font-size: 12.5px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #e5e2e4;
}


/* CONTACT SECTION */

/* Default styling for chat and form sections */

/* CONTACT SECTION (Layout aligned with Index/Profile)
================================================== */

/* Matches #home container dimensions */
#contact {
  width: calc(100% - 100px);
  margin-left: 50px;
  margin-right: 50px;
}

/* Matches #intro layout structure & spacing */
#chat-form-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 40px 0 40px; /* Reduced top padding to 40px */
  margin-top: 0;         /* Clear any old margin-top like 130px */
}

/* Matches .home-profile width proportion & alignment */
#chat {
  flex: 0 0 35%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  text-align: left;
}

/* Matches .about-me-content proportion */
#contact-form {
  flex: 1;
  text-align: left;
}

.reach-out-title {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 27.2px;
  margin-bottom: 20px;
  line-height: 33px;
  color: #000000;
}

.reach-out {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 17.6px;
  margin-bottom: 20px;
  line-height: 24.6px;
  color: #000000;
}

form {
  width: 100%;
}

form div {
  margin-bottom: 16px;
}

form .name-section {
  margin-bottom: 20px;
}

form .name-fields {
  display: flex;
  gap: 16px;
}

form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 17.6px;
  margin-bottom: 8px;
  line-height: 24.6px;
  color: #000000;
}

form input,
form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 10px; /* Increased from 8px for taller inputs */
  font-size: 16px;    /* Increased input text size */
  margin-bottom: 8px;
  border: none;
  border-bottom: 1px solid #333;
  outline: none;
  transition: background-color 0.3s, border-color 0.3s;
  background-color: #f6f5f3;
}

form .name-fields input {
  margin-bottom: 0; /* Keeps name fields aligned inside their flex wrapper */
}

form input:hover,
form textarea:hover {
  background-color: #ffffff;
}

form input:focus,
form textarea:focus {
  border-bottom: 2px solid black;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

form .required-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.4px;
  margin-bottom: 20px;
  line-height: 20px;
  color: #000000;
  font-weight: 300;
}

form button {
  background-color: #000000;
  border: none;
  border-radius: 25px;
  padding: 8px 16px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
}
/* Utility class for toggling element visibility */
.hidden {
  display: none !important;
}

/* Success Box Styles */
.success-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
}

.success-title {
  color: #15803d;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.success-text {
  color: #166534;
  font-size: 1rem;
  margin: 0;
}

/* #Light
================================================== */

body.light{
	background-color: #fff;
}
body.light .cursor,
body.light .cursor2,
body.light .cursor3{
	mix-blend-mode: normal;
}
body.light .cursor2{
	border: 2px solid #1f2029;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
body.light .cursor2.hover{
	background: rgba(0,0,0,0.06);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	border-color: transparent;
}
body.light .logo-wrap a {
	color: #1f2029;
}
body.light .menu-icon__line {
	background-color: #1f2029;
}
body.light .nav:before {
	background: rgba(235, 235, 235,0.6);
}
body.light .nav:after {
	background: rgba(250,250,250,1);
}
body.light .nav__list-item a{ 
	color: rgba(0,0,0,0.6); 
}
body.light .nav__list-item a:hover{
	color: #1f2029;
}
body.light .nav__list-item.active-nav a{
	color: #1f2029;
}
body.light .switch-wrap h1 {
	color: #000;
}
body.light .switch-wrap p span:nth-child(2):before {
	opacity: 1;
	background-color: #000;
}
body.light .switch-wrap p span:nth-child(1):before {
	opacity: 0;
}

/* #Link to page
================================================== */

.link-to-portfolio {
	  position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 200;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 3px;
    background-position: center center;
    background-size: 65%;
  background-repeat: no-repeat;
    background-image: url('https://assets.codepen.io/1462889/fcy.png');
    box-shadow: 0 0 0 2px rgba(255,255,255,.1);
    transition: opacity .2s, border-radius .2s, box-shadow .2s;
    transition-timing-function: ease-out;
}
.link-to-portfolio:hover {
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(255,255,255,.1);
}
