@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  min-height: 100vh;
  background: url(../images/bg.jpg) no-repeat;
  background-size: cover;
}
.portfolio-main {
  min-height: 100vh;
  background: linear-gradient(
    153.28deg,
    rgba(255, 255, 255, 0.4) 1.19%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(42px);
  
}

.container {
  width: 100%;
  padding: 0 200px;
}
.logo {
  display: flex;
  align-items: center; 
  gap: 10px; 
}

.logo img {
  width: 70px;
  height: auto;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #242226;
}

/* Navbar */
header {
  padding-top: 35px; 
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.navigation-bar ul {
  padding: 0;
  margin: 0;
}

.navigation-bar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 25px;
}
.navigation-bar ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #292423;
  text-transform: capitalize;
  transition: all 0.3s;
}
.navigation-bar ul li a:hover {
  opacity: 0.5;
}
.navigation-bar ul li.hire-btn {
  margin-left: 125px !important;
}
.navigation-bar ul li.hire-btn a {
  padding: 10px 32px;
  background: #fff;
  border-radius: 50px;
  font-weight: 500;
}
.navigation-bar ul li.hire-btn a:hover {
  background: #292423;
  color: #fff;
  opacity: 1;
}

/* main content */
.main-content-wrapper {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.col-left span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  color: #292423;
  margin-bottom: 10px;
}
.col-left h1 {
  font-size: 40px;
  font-weight: 800;
  color: #292423;
  line-height: 41px;
  margin-bottom: 15px;
}
.col-left p {
  width: 85%;
  font-weight: normal;
  font-size: 16px;
  line-height: 145%;
  color: #292423;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
a.btn-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 25px;
  background: #292423;
  width: 190px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
a.btn-main:hover {
  background: #fff;
  color: #292423;
}
a.btn-main span {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: #35343d;
  border-radius: 50px;
  margin: 0 0 0 12px;
  transition: all 0.3s;
  text-align: center;
}
a.btn-main span img {
  margin: 0 0 8px 0;
}
a.btn-main:hover span {
  background: #ccc;
}

/* Toggle bar */
.toggle-bar {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  cursor: pointer;
}

.toggle-bar span {
  display: block;
  width: 100%;
  height: 3px;
  background: #292423;
  border-radius: 10px;
  margin-bottom: 4px;
}

@media (min-width: 1200px) {
  .toggle-bar {
    display: none;
  }
}

@media (max-width: 1200px) {
  .navigation-bar {
    display: none;
  }
  .navigation-bar {
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(42px);
    border-radius: 10px;
    text-align: center;
    z-index: 2;
  }
  .navigation-bar ul {
    padding: 10px 0 20px;
  }
  .navigation-bar ul li {
    padding: 10px 30px;
    display: block;
    margin: 0;
    text-align: center;
  }
  .navigation-bar ul li.hire-btn {
    margin-left: 0 !important;
  }
  .navigation-bar ul li.hire-btn a {
    background: #292423;
    color: #fff;
  }
}

@media (min-width: 1200px) {
  .navigation-bar {
    display: block !important;
  }
}

/* Skills */
.skills-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #292423;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}


.skills-section {
  width: 100%;
  padding: 40px 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(42px);
  border-radius: 10px;
}
.skills-inner {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;       
  gap: 30px;                     
  flex-wrap: wrap;
}
.skills-inner .col {
  flex: 1;               
  max-width: 220px;      
  text-align: left;      
}

.skills-inner .col h3 {
  font-size: 25px;
  color: #292423;
  font-weight: 700;
  margin-bottom: 5px;
}
.skills-inner .col p {
  font-size: 16px;
  color: #292423;
  font-weight: 300;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  header {
    padding-top: 15px;
  }
  .container {
    padding: 0 20px;
  }
  .skills-inner {
    margin-top: 50px;
    height: auto;
    flex-direction: column-reverse;
  }
  .portfolio-main {
    height: auto;
    
  }
  .col-left {
    margin-top: 50px;
  }
  .col-left span {
    font-size: 16px;
    line-height: normal;
  }
  .col-left h1 {
    font-size: 30px;
  }
  .col-left p {
    width: 100%;
  }
  a.btn-main span img {
    margin: 0px 0 4px 0;
  }
  .skills-section {
    margin-top: 50px;
    padding: 0;
    background: transparent;
  }
  .skills-inner {
    flex-direction: column;
    text-align: center;
  }
  .skills-inner .col {
    width: 100%;
    padding: 40px 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(42px);
    border-radius: 10px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}
.skills-wrapper {
  min-height: 70vh;
}

/* Work */
.work-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #292423;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}
.work__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
  margin-top: 30px;
}
.work__img img {
  transition: 1s;
  width: 100%;
  display: block;
  border-radius: 10px;
}
.work__img img:hover {
  transform: scale(1.1);
}
.work-title {
  text-align: center;
  margin-bottom: 15px;
}

.work__container {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  margin: 0 auto;
}
.styled-text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}
.work-paragraph {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.work-section{
  min-height: 200vh;
}

/* contact */
.contact-title{
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #292423;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}
.section-title, .section-paragraph {
  text-align: center; 
  margin-bottom: 15px;
}

.contact__container {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto; /* Centers the form */
}
.contact-section {
  padding: 60px 40px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  border-radius: 15px;
  margin: 60px auto;
  max-width: 800px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #292423;
  margin-bottom: 10px;
}
.section-paragraph {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact__container {
  display: flex;
  justify-content: center;
}
.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__input {
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  background-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s;
}

.contact__input:focus {
  border-color: #292423;
}
.contact__button {
  padding: 14px 20px;
  background-color: #292423;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact__button:hover {
  background-color: #000;
}

.contact-section{
  min-height: 70vh;
}

/* footer */
.footer {
  background-color: var(--second-color);
  color: #070707;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}
.footer__social {
  margin-bottom: var(--mb-4);
  display: flex;
  gap: 20px; 
  justify-content: center;
  margin-top: 20px; 
}
.footer__icon {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 var(--mb-2);
}
.footer__copy {
  font-size: var(--smaller-font-size);
}