* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #EFE6EC;
}
nav {
  background: #623950;
  box-shadow: 2px 0.2px 10px #58374A;
  position: fixed;
  width: 100%;
  z-index: 5;  
}
nav:after {
  content: '';
  clear: both;
  display: table;
}
nav .logo {
  float: left;
  font-size: 30px;
   font-weight: bold;
  line-height: 70px;
  padding-left: 35px;
}
nav ul {
  float: right;
  list-style: none;
  margin-right: 100px;
  position: relative;
  gap: 25px;
}
nav ul li {
  float: left;
  display: inline-block;
  background: #623950;
  margin: 0 25px;
}

nav ul li a {
  color: #EFE6EC;
  text-decoration: none;
  line-height: 70px;
  font-size: 20px;
  padding: 10px 15px;
  font-family: Anton SC;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: #EFE6EC;
  border-radius: 5px;
  box-shadow: 0 0 5px #DCC4D0,
              0 0 5px #D2B2C2;
}

nav ul ul li a:hover {
  color: #E0CCD6;
  box-shadow: none;
}

nav ul ul {
  position: absolute;
  top: 90px;
  border-top: 3px solid #B98DA4;
  opacity: 0;
  visibility: hidden;
  transition: top 0.3s ease, opacity 0.3s ease;
}
nav ul li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
}

nav ul ul li {
  position: relative;
  margin: 0px;
  width: 195px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

nav ul ul li a {
  font-size: 18px;
  line-height: 50px;
  font-family: Anton SC;
  letter-spacing: 1px;
}

nav ul ul ul {
  border-top: none;
}

nav ul ul ul li {
  position: relative;
  left: 195px;
  top: -70px;
}

span .fa-plus {
  margin-right:   30px;
  font-size:  18px;
}

.show, .icon, input {
  display: none;
}

/* Portfolio Section Styling */
.portfolio-section {
  min-height: 100vh;
  background-color: #EFE6EC;

}

.portfolio-section .section-content {
  display: flex;
  align-items: center;
  min-height: 100vh;
  color: #4B2F40;
  justify-content: space-between;
  padding-left: 120px;
}

.portfolio-section .portfolio-details .title {
  font-size: 80px;
  max-width: 95%;
  font-family:  Anton SC;
  letter-spacing:   2px;
  word-spacing:   3px;
  line-height:  90px;
  font-weight:  bolder;
}
.portfolio-section .portfolio-details .subtitle {
  margin-top: 8rem;
  margin-bottom: 10px;
  font-size: 17px;
  font-family:  Carrois Gothic;
  font-weight:  bolder;
}

.portfolio-section .portfolio-details .description {
  margin: 30px 0 40px;
  max-width: 100%;
  font-size: 1.45rem;
  font-family:  Roboto Condensed;

}

.portfolio-section .portfolio-image-wrapper {
    max-width: 100%;
    padding-top:  55px;
    padding-right: 35px;
}

.portfolio-section .portfolio-image-wrapper img{
  transition:   transform 0.3s ease;
}

.portfolio-image-wrapper img:hover {
  transform: scale(1.05) rotate(-2deg);
}


.portfolio-section .portfolio-details .tagline {
  margin-top: 30px;
  font-size: 2rem;
  font-family:  Roboto Condensed;
  font-weight:  bolder;
  letter-spacing:  1px;
}

#design-word, #craft-word {
  font-family: Anton SC;
  letter-spacing:  1.8px;
  background: linear-gradient(90deg, #B8819E 0%, #C6A4D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

.cta-buttons {
    display: flex;
    flex-wrap:  wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Primary CTA */
.btn-primary {
  margin-top: 1.5rem;
  margin-bottom:  3rem;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  border-radius:  50px;
  text-decoration:  none;
  transition:   all 0.3s ease;
  cursor:  pointer;
  background-color: #B8819E;
  color: #EFE6EC;
  border: none;
  font-family:  Anton SC;
  letter-spacing:   1px;
}

.btn-primary:hover {
  background-color: #C6A4D4;
}

/* Secondary CTA */
.btn-sec {
  margin-top:   1.5rem;
  margin-bottom:  3rem;
  margin-left:  1.8rem;
  padding:  1rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius:  50px;
  text-decoration:  none;
  transition:   all 0.3s ease;
  cursor:  pointer;
  background-color:  transparent;
  border: 2px solid #8F5774;
  color:  #8F5774;
  font-family:  Anton SC;
  letter-spacing:   1px;
}

.btn-sec:hover {
  background-color: #DDC8E5;
}

/* Section Header */
.section-Header {
  height: 10rem;
  display: flex;
  position: relative;
  padding: 2rem 13vw;
  box-shadow: 0px 1vh #78546A, 0px 2vh #5F4253;
  z-index: 2;
  width: 100%;
  background-color:   #845C75;
}

.header-title {
  font-size: 28px;
  word-spacing: 5px;
  font-weight: bold;
  font-family: Anton SC;
  letter-spacing: 2px;
  color: #fff;
  margin: -50px;

}

.section-content {
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  padding: 50px 0 30px;
  text-transform: uppercase;
  font-size: 35px;
  word-spacing: 1px;
  font-family:  Anton SC;
  letter-spacing:   2px;
}

.section-title::after {
  content: "";
  width: 120px;
  height: 5px;
  display: block;
  margin: 10px auto 0; 
  border-radius: 5px;
  background-color: #B8819E;
}

/* About Section Styling */
.about-section {
  padding: 70px 0;
  background: #EADDE1;
  min-height: 100vh;
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  width: 400px;
  height: 400px;
  margin-left: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.about-section .about-details .section-title {
  padding: 0;
  color: #4B2F40;
}

.about-section .about-details {
  max-width: 55%;
  margin-right: 50px;
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 20px 0 30px;
  text-align: center;
  font-size: 17px;
  font-family: Roboto Condensed;
}
.about-section .contact-list {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.about-section .contact-list .contact-link {
  font-size: 22px;
  color: #70405B;
  transition: 0.2s ease;
  margin-top: -10px;
}

.about-section .contact-list .contact-link:hover {
  color: #B8819E;
  cursor: pointer;
  transform: scale(1.3);
  transition: transform 0.3 ease, color 0.3s ease;
}

/* Experiences Section */
.exp-Header {
  height: 6rem;
  display: flex;
  position: relative;
  padding: 2rem 13vw;
  box-shadow: 0px 1vh #78546A, 0px 2vh #5F4253;
  z-index: 2;
  width: 100%;
  background-color:   #845C75;
}

.exp-Header .header-title {
  font-size: 28px;
  word-spacing: 5px;
  font-weight: bold;
  font-family: Anton SC;
  letter-spacing: 2px;
  color: #fff;
  margin-top: -55px;

}

.experiences-section {
  padding: 60px 0;
  min-height: 38vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #E0CCD2;
}
.experiences-badges img {
  height: 45px;
  position: relative;
}
.experiences-badges img:hover {
    transition: transform 0.2s ease;
    transform: scale(1.1);
}

iframe {
  display: block;
  margin: 0 auto;
  margin-top: -30px;
}

/* Personal Statement */
.statement-Header {
  height: 6rem;
  display: flex;
  position: relative;
  padding: 2rem 13vw;
  box-shadow: 0px 1vh #78546A, 0px 2vh #5F4253;
  z-index: 2;
  width: 100%;
  background-color:   #845C75;
}

.statement-Header .header-title {
  font-size: 28px;
  word-spacing: 5px;
  font-weight: bold;
  font-family: Anton SC;
  letter-spacing: 2px;
  color: #fff;
  margin-top: -55px;

}

.statement-section {
  background-color: #5F4253;
  padding: 60px 0;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.statement-section .statement-details .text1 {
  text-align: center;
  font-size: 20px;
  font-family: Roboto Condensed;
  font-style: italic;
  color: #EFE6EC;
}

.statement-section .statement-details .text2 {
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  font-family: Roboto Condensed;
  padding-top:  35px;
  color: #EFE6EC;
}

/* Goals Section Styling */
.goals-section {
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.goals-section .goal-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  color: #4B2F40;
}
.goals-section .goal-details .goal-embed {
  justify-content:  center;
  margin-right:   auto;
  margin-left:  auto;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.goals-section .goal-details .goal-embed iframe {
  aspect-ratio: 1;
  padding-left: 20px;
  padding-right: 20px;
  object-fit: contain;
}

.goals-section .goal-details .goal-embed .section-subtitle {
  font-size: 27px;
  margin-top:   40px;
  margin-bottom: 60px;
  text-align: center;
  font-family: Anton SC;
  letter-spacing: 1px;
  color: #4B2F40;
}

/* Resume Section Styling */
.resume-section {
  background-color: #5F4253;
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.resume-embed {
    justify-content:  center;
    margin-right:   auto;
    margin-left:  auto;
    align-items: center;
    text-align: center;
    display: block;
    width: 100%;
    height: auto;
}

.resume-embed iframe {
    width: 1200px;
    height: 700px;
    margin-top:  20px;
}


/* Responsive media query code and max-width 900px */
.portfolio-section .portfolio-details .title {
}

@media all and (max-width: 968px) {
  nav ul {
    margin-right: 0px;
    float: left;
  }
  nav .logo {
    padding-left: 30px; 
    width: 100%;
  }
  nav ul li, nav ul ul li {
    display: block;
    width: 100%;
  }
  nav ul li a {
    cursor: pointer;
    color: white;
    font-size: 18px;
  }

  nav ul ul {
    top: 70px;
    position: static;
    border-top: none;
    float: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  nav ul ul li {
    border-bottom: 0px;
  }

  nav ul ul a {
    padding-left: 40px;
  }

  .show {
    display: block;
    color: white;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .show:hover {
    color: #E5CEDC;
  }
  .icon {
    display: block;
    color: white;
    position: absolute;
    right: 40px;
    line-height: 70px;
    font-size: 20px;
    cursor: pointer;
  }
  nav ul li a:hover {
    box-shadow: none;
    color: #E5CEDC;

  }
  .show + a, ul {
    display: none;
  }
  [id^=btn]:checked + ul {
    display: block;
  }

  /* Portfolio Media Query */
  .portfolio-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .portfolio-section .portfolio-details :is(.subtitle, .description),
  .about-section .about-details {
    max-width: 100%;
  }

  .about-section .section-content {
    gap: 70px;
    flex-direction: column-reverse;
  }
  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    margin-left: -10px;
    max-width: 250px;
    aspect-ratio: 1;
  }

  /* Goals Media Query */
  .goals-section .goal-details {
      gap: 10px;
  }

  .goals-section .goal-details .goal-embed .section-subtitle {
  font-size: 22px;
  margin-top: -20px;
  margin-bottom: 60px;
  text-align: center;
}

  /* Resume Media Query */
  .resume-embed iframe {
    width: 600px;
    height: 700px;
}
}