@charset "UTF-8";
body {
  font-family: "Raleway";
  padding: 0;
  margin: 0;
}

.hidden {
  display: none;
}

.wrapper {
  background-color: #232321;
}

h1 {
  font-family: "Raleway";
}

h2 {
  color: #c27fa7;
}

h3 {
  color: #c27fa7;
}

p {
  line-height: 24px;
  margin-bottom: 20px;
}

#main-header {
  background-color: #1a1a19;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 45px;
  border-bottom: 1px solid pink;
}
#main-header #logo {
  width: 50px;
  height: 50px;
}
#main-header #ham-burger {
  display: flex;
  cursor: pointer;
}
#main-header #ham-burger img {
  height: 40px;
  width: 40px;
  transition: all 0.4s ease;
}
@media (min-width: 768px) {
  #main-header #ham-burger {
    display: none;
  }
}
#main-header #hamburger {
  display: none;
}
#main-header #hamburger:checked ~ label img {
  transform: rotate(-90deg);
}
#main-header #hamburger:checked ~ #main-nav {
  transform: translateX(0);
  opacity: 1;
}
#main-header #main-nav {
  background-color: rgba(33, 33, 35, 0.95);
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 16px;
  position: fixed;
  top: 90px;
  left: 0;
  z-index: 1;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
}
#main-header #main-nav nav ul {
  list-style-type: none;
  margin-top: 70px;
  padding: 0;
}
#main-header #main-nav nav ul li {
  margin: 30px 50px 30px 10px;
}
#main-header #main-nav nav ul li a {
  color: #EBEFE2;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 22px;
}
#main-header #main-nav nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #c27fa7;
  transition: width 0.35s ease;
}
#main-header #main-nav nav ul li a:hover::after, #main-header #main-nav nav ul li a.active::after {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #main-header #ham-burger {
    display: none;
  }
  #main-header #main-nav {
    width: auto;
    height: auto;
    position: relative;
    opacity: 1;
    transform: none;
    transition: none;
    background: none;
    top: 0;
  }
  #main-header #main-nav nav ul {
    margin-top: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 90px;
  }
  #main-header #main-nav nav ul li {
    margin: 0;
    padding: 10px;
  }
  #main-header #main-nav nav ul li a {
    font-size: 18px;
    color: #EBEFE2;
    margin-top: 15px;
    margin-bottom: 5px;
    transition: none;
  }
}
@media screen and (min-width: 1200px) {
  #ham-burger {
    display: none;
  }
  #main-header #main-nav {
    position: relative;
    width: auto;
    height: auto;
    opacity: 1;
    transform: none;
    background: none;
    top: 0;
    transition: none;
  }
  #main-header #main-nav nav ul {
    margin-top: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 90px;
  }
  #main-header #main-nav nav ul li {
    margin: 0;
    padding: 10px;
  }
  #main-header #main-nav nav ul li a {
    font-size: 18px;
    color: #EBEFE2;
    margin-top: 15px;
    margin-bottom: 5px;
    transition: none;
  }
}
.footer {
  background-color: #1a1a19;
  padding: 10px 0;
}
.footer .footer-txt {
  text-align: center;
}
.footer .social-medias {
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.footer .social-medias a{
  text-decoration: none;
}
.footer .social-medias img {
  width: 28px;
  height: 28px;
  margin-left: 10px;
}
.footer .social-medias img:hover {
  transform: scale(1.2);
}

.form-message {
  color: #EBEFE2;
  background-color: darkred;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  font-weight: 400;
  border: 1px solid rgb(194, 34, 34);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 16px;
}

.form-message::before {
  content: "⚠️ ";
  font-size: 20px;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

@media screen and (min-width: 768px) {
  .form-message {
    padding: 10px;
    font-size: 1.1rem;
  }
}
.next-link {
  text-align: center;
  text-decoration: none;
  color: #c27fa7;
  margin-bottom: 90px;
}
.next-link:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .next-link {
    font-size: 22px;
  }
}
#player-container {
  margin-top: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
}

#player-container video {
  padding-bottom: 27px;
}

.video-controls.hidden {
  display: none;
}

video {
  border-radius: 12px;
}

.video {
  margin-bottom: 100px;
}

#center-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  border: 2px solid #EBEFE2;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
  background-color: #232321;
  color: #EBEFE2;
  cursor: pointer;
}

.video-controls {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 4px;
  background: linear-gradient(to bottom, rgba(212, 122, 176, 0.5), rgba(204, 71, 151, 0.5));
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  padding: 0;
  border: 0;
  background-color: transparent;
}

#play-button,
#pause-button,
#stop-button, #change-vol, #full-screen, .fa-volume-up {
  font-size: 18px;
  color: #EBEFE2;
  margin-left: 10px;
  cursor: pointer;
}

.fa-volume-high {
  margin-left: 10px;
  color: #EBEFE2;
  font-size: 18px;
}

#full-screen {
  cursor: pointer;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  cursor: pointer;
  width: 25rem;
}

/* Removes default focus */
input[type=range]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type=range]::-webkit-slider-runnable-track {
  background-color: #EBEFE2;
  border-radius: 0.5rem;
  height: 0.5rem;
}

/* slider thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -4px; /* Centers thumb on the track */
  background-color: #EBEFE2;
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

/*********** Firefox styles ***********/
/* slider track */
input[type=range]::-moz-range-track {
  background-color: #1a1a19;
  border-radius: 0.5rem;
  height: 0.5rem;
}

/* slider thumb */
input[type=range]::-moz-range-thumb {
  background-color: #1a1a19;
  border: none; /*Removes extra border that FF applies*/
  border-radius: 0.5rem;
  height: 1rem;
  width: 1rem;
}

input[type=range]:focus::-moz-range-thumb {
  outline: 3px solid #1a1a19;
  outline-offset: 0.125rem;
}

@media screen and (min-width: 768px) {
  #play-button,
  #pause-button,
  #stop-button, #change-vol, #full-screen, .fa-volume-up {
    font-size: 20px;
    color: #EBEFE2;
    margin-left: 40px;
  }
  .fa-volume-high {
    margin-left: 180px;
    color: #EBEFE2;
    font-size: 20px;
  }
  .video-controls {
    padding: 15px;
  }
  #full-screen {
    cursor: pointer;
  }
  #player-container video {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  #play-button,
  #pause-button,
  #stop-button, #change-vol, #full-screen, .fa-volume-up {
    font-size: 20px;
    color: #EBEFE2;
    margin-left: 40px;
  }
  .fa-volume-high {
    margin-left: 180px;
    color: #EBEFE2;
    font-size: 20px;
  }
  .video-controls {
    padding: 15px;
  }
  #full-screen {
    margin-left: 250px;
    cursor: pointer;
  }
}
.featured-projects h2 {
  text-align: center;
  margin: 7em 0 2em 0;
  font-size: 30px;
}

#slider-container {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

#image-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-image {
  height: auto;
}

#prev-btn, #next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background-color: #c27fa7;
}

#prev-btn {
  left: 0px;
}

#next-btn {
  right: 0px;
}

@media screen and (min-width: 768px) {
  .featured-projects h2 {
    font-size: 40px;
  }
}
.intro {
  margin-top: 16rem;
  font-weight: 900;
  font-size: 60px;
  text-align: center;
}

.name {
  font-weight: 900;
  font-size: 50px;
  text-align: center;
}

.role {
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  color: #c27fa7;
}

.intro-des {
  color: #EBEFE2;
  text-align: center;
  margin-top: 60px;
}

.cta {
  background-color: #1a1a19;
  padding: 10px;
  border: none;
  color: #EBEFE2;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 50px;
  margin-top: 50px;
}
.cta:hover {
  background-color: #EBEFE2;
  color: #1a1a19;
}

.scroll-icon {
  width: 36px;
  height: 60px;
  border: 2px solid #6b6a6a;
  border-radius: 50px;
  position: relative;
  margin: 0 auto;
}

.dot {
  background-color: #c27fa7;
  width: 7px;
  height: 10px;
  border-radius: 50%;
  top: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    top: 10px;
  }
  50% {
    top: 20px;
    opacity: 0;
  }
  100% {
    top: 10px;
  }
}
.tools {
  margin-top: 200px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
}

.tools-logos {
  text-align: center;
  margin-bottom: 100px;
}
.tools-logos img {
  padding: 20px 10px;
  width: 90px;
  height: 90px;
  margin-left: 9px;
  margin-bottom: 40px;
  cursor: pointer;
  transition: transform 0.3s;
}
.tools-logos img:hover {
  transform: scale(1.1);
}

.work {
  font-size: 30px;
  text-align: center;
  font-weight: 400;
  color: #EBEFE2;
}
.work a {
  color: inherit;
  text-decoration: none;
}
.work:hover a {
  text-decoration: underline;
}

.featured-projects {
  text-align: center;
}
.featured-projects .sub-title {
  font-size: 18px;
  color: #EBEFE2;
  margin-bottom: 60px;
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}
.project-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.project-card .project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 30px;
}
.project-card h3 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
}
.project-card p {
  margin: 5px 0;
  font-size: 16px;
}
.project-card p.view {
  margin-top: 15px;
  font-weight: 500;
  text-decoration: underline;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-card:hover .project-overlay {
  opacity: 1;
}

.featured-cta {
  margin-top: 60px;
  text-align: center;
}
.featured-cta .project-cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #c27fa7;
  color: #c27fa7;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.featured-cta .project-cta:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .featured-projects .sub-title {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .project-card h3 {
    font-size: 18px;
  }
  .project-card p {
    font-size: 14px;
  }
  .project-cta {
    font-size: 16px;
    padding: 10px 24px;
  }
}
@media screen and (min-width: 768px) {
  .intro {
    margin-top: 17rem;
    font-weight: 900;
    font-size: 80px;
    text-align: center;
  }
  .name {
    font-weight: 900;
    font-size: 50px;
    text-align: center;
  }
  .role {
    font-weight: 900;
    font-size: 30px;
    text-align: center;
    color: #c27fa7;
  }
  .work {
    font-size: 25px;
    font-size: 40px;
  }
  .tools {
    font-size: 40px;
  }
  .tools-logos img {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .name {
    font-weight: 900;
    font-size: 50px;
  }
  .role {
    font-weight: 900;
    font-size: 30px;
    color: #c27fa7;
  }
  .work {
    font-size: 40px;
    margin-left: 60px;
  }
}
#contact {
  text-align: center;
  color: #c27fa7;
  margin-top: 140px;
}

#contact-txt {
  color: #EBEFE2;
}

.contact-section {
  background-color: #1a1a19;
  margin-bottom: 60px;
  padding: 19px;
  border-radius: 10px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}
.contact-section h3 {
  text-align: center;
}
.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 7px;
  background-color: #EBEFE2;
  border: none;
  border: 10px;
  border-radius: 5px;
}
.contact-section button[type=submit] {
  width: 20%;
  padding: 8px;
  background-color: #c27fa7;
  color: #EBEFE2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.contact-section button[type=submit]:hover {
  background-color: #EBEFE2;
  color: #c27fa7;
}

#contact-form label {
  color: #c27fa7;
  line-height: 2;
}

#feedback p {
  color: #EBEFE2;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .contact h2 {
    font-size: 30px;
  }
  .contact p {
    font-size: 18px;
  }
  #contact {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .contact h2 {
    font-size: 40px;
  }
  .contact p {
    font-size: 20px;
  }
  #contact {
    text-align: center;
    margin-top: 170px;
  }
}
.about-content p {
  color: #EBEFE2;
  line-height: 1.5;
}
.about-content h2 {
  margin-top: 50px;
  text-align: center;
}

.about-section {
  margin-bottom: 200px;
  text-align: center;
  margin-top: 4rem;
}

.situ-img img {
  border-radius: 9px;
  margin-top: 150px;
}

.btn {
  margin-top: 100px;
}

.resume-btn {
  padding: 10px 30px;
  background-color: #1a1a19;
  color: #EBEFE2;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.btn a:hover {
  background-color: #EBEFE2;
  color: #1a1a19;
}

.line-separator2 {
  margin-top: 100px;
  border-top: solid 2px #EBEFE2;
  width: 80%;
  padding-top: 10px;
  margin-bottom: 150px;
}

.bg h2 {
  text-align: center;
  margin-top: 90px;
  font-size: 30px;
}

.skills-box {
  background-color: #EBEFE2;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  margin-top: 80px;
}
.skills-box a {
  text-decoration: none;
}
.skills-box h3 {
  color: #232321;
}
.skills-box h3, .skills-box p {
  text-align: center;
}
.skills-box p {
  color: #1a1a19;
}

.facts-image {
  display: none;
}

.facts-box {
  margin-bottom: 100px;
}
.facts-box h3 {
  margin-top: 90px;
  text-align: center;
  font-size: 28px;
  margin-bottom: 70px;
}
.facts-box p {
  color: #EBEFE2;
  line-height: 1.5;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .about-content h2 {
    font-size: 35px;
    margin-top: 160px;
    margin-bottom: 30px;
  }
  .about-content h2, .about-content p {
    text-align: left;
  }
  .about-content p {
    font-size: 18px;
  }
  .bg h2 {
    font-size: 40px;
  }
  .facts-image {
    display: block;
  }
  .facts-box h3 {
    text-align: left;
    margin-bottom: 0px;
  }
  .facts-box p {
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  .about-content {
    margin-top: 10px;
  }
  .about-content h2, .about-content p {
    text-align: left;
  }
  .service-section h2 {
    text-align: left;
  }
  .facts-box h3 {
    text-align: left;
    font-size: 30px;
  }
  .facts-box p {
    font-size: 20px;
    line-height: 2;
  }
}
.project-content {
  margin-top: 50px;
}
.project-content p {
  color: #EBEFE2;
  font-size: 18px;
}
.project-content h2 {
  margin-top: 150px;
  text-align: center;
  font-size: 30px;
}

.pjt-html {
  margin-top: 150px;
}
.pjt-html p {
  color: #EBEFE2;
  font-size: 18px;
}
.pjt-html h2 {
  margin-top: 50px;
  text-align: center;
  font-size: 30px;
}

.project-section {
  margin-bottom: 50px;
  text-align: center;
}

.line-separator {
  margin-top: 100px;
  border-top: solid 2px #EBEFE2;
  width: 100%;
  padding-top: 10px;
}

.logout {
  margin: 70px 0px 0 40px;
  background-color: #1a1a19;
  color: #EBEFE2;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 7px;
  text-align: center;
  display: inline-block;
}

.add-btn {
  background-color: #c27fa7;
  color: #EBEFE2;
  text-decoration: none;
  padding: 10px;
  border-radius: 7px;
  text-align: center;
  display: inline-block;
  margin-top: 80px;
}

.pjt-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.edit-btn, .delete-btn {
  background-color: #1a1a19;
  color: #EBEFE2;
  text-decoration: none;
  padding: 10px;
  border-radius: 7px;
  text-align: center;
  display: inline-block;
}

.edit-btn:hover {
  background-color: green;
}

.delete-btn:hover {
  background-color: red;
}

.projectimg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}

.projectimg img {
  border-radius: 10px;
}

.project-names {
  margin-bottom: 50px;
}

.project-info {
  text-align: center;
  color: #EBEFE2;
  text-decoration: none;
  font-size: 16px;
}

.project-title {
  text-align: center;
  font-size: 20px;
}

.case-study-cta {
  text-align: center;
}

.case-study-cta a {
  background-color: #c27fa7;
  color: #EBEFE2;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 7px;
  text-align: center;
  display: inline-block;
  margin: 0px auto;
}

.pjt-contact {
  margin-top: 80px;
  text-align: center;
}
.pjt-contact h2 {
  font-size: 30px;
}
.pjt-contact a {
  text-decoration: none;
  color: #EBEFE2;
  font-size: 20px;
  margin-bottom: 60px;
}
.pjt-contact a:Hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .project-content {
    margin-top: 100px;
  }
  .project-content h2, .project-content p {
    text-align: center;
  }
  .project-content p {
    margin-top: 50px;
  }
  .pjt-html {
    margin-top: 100px;
  }
  .pjt-html h2, .pjt-html p {
    text-align: center;
  }
  .pjt-html p {
    margin-top: 10px;
  }
  .project-title {
    font-size: 24px;
  }
  .pjt-contact {
    text-align: center;
  }
  .pjt-contact h2 {
    font-size: 40px;
  }
  .pjt-contact a {
    text-decoration: none;
    color: #EBEFE2;
    font-size: 30px;
    margin-bottom: 30px;
  }
  .pjt-contact a:Hover {
    text-decoration: underline;
  }
  .add-btn {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .project-content {
    margin-top: 10px;
  }
  .project-content p {
    color: #EBEFE2;
    font-size: 20px;
  }
  .project-content h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 40px;
  }
  .pjt-html {
    margin-top: 150px;
  }
  .pjt-html p {
    color: #EBEFE2;
    font-size: 20px;
  }
  .pjt-html h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 40px;
  }
  .project-names {
    margin-top: 130px;
  }
}
.back-link {
  margin-top: 130px;
  color: #EBEFE2;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px;
}
.back-link:hover {
  text-decoration: underline;
}

.line-separator3 {
  border-top: solid 1px #EBEFE2;
  margin-bottom: 60px;
}

.rebranding {
  text-align: center;
}
.rebranding h2 {
  margin-top: 100px;
  text-align: center;
  margin-left: 30px;
}
.rebranding p {
  margin-top: 30px;
  font-weight: 400;
  font-size: 17px;
  text-align: left;
  line-height: 1.5;
  color: #EBEFE2;
}
.rebranding p strong {
  color: #c27fa7;
}

.billy-poster img {
  border-radius: 10px;
  margin: 100px 0px 100px 0px;
}

.info-box h3 {
  text-align: center;
  font-size: 25px;
}
.info-box p {
  color: #EBEFE2;
  font-size: 15px;
}

.challenge {
  margin-bottom: 40px;
}

.working-period {
  color: #c27fa7;
  margin-top: 50px;
}

.sketch img {
  border-radius: 10px;
  margin-bottom: 70px;
}

.billy-design h2 {
  text-align: center;
  font-size: 28px;
}

.billy-video {
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .rebranding h2 {
    font-size: 33px;
  }
  .rebranding p {
    font-size: 18px;
  }
  .info-box h3 {
    text-align: left;
    font-size: 36px;
  }
  .info-box p {
    color: #EBEFE2;
    font-size: 16px;
  }
  .challenge {
    text-align: left;
  }
  .billy {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .rebranding h2 {
    font-size: 36px;
  }
}
.earbuds {
  text-align: center;
  color: #EBEFE2;
}
.earbuds p {
  margin-top: 90px;
  font-weight: 400;
  font-size: 17px;
  text-align: left;
  line-height: 1.9;
  color: #EBEFE2;
}
.earbuds p strong {
  color: #c27fa7;
}
.earbuds img {
  border-radius: 10px;
}

.poster img {
  border-radius: 10px;
  margin: 100px 0px 100px 0px;
}

.design h2 {
  text-align: center;
  font-size: 28px;
}

.earbuds-video {
  margin-bottom: 100px;
}

@media screen and (min-width: 1200px) {
  .earbuds h2 {
    margin-right: 120px;
  }
}
.cartoon {
  text-align: center;
  color: #EBEFE2;
  margin-top: 60px;
}
.cartoon p {
  margin-top: 90px;
  font-weight: 400;
  font-size: 17px;
  text-align: left;
  line-height: 1.9;
  color: #EBEFE2;
}
.cartoon p strong {
  color: #c27fa7;
}
.cartoon img {
  border-radius: 10px;
}

.animation img {
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.kids-video {
  margin-bottom: 100px;
}

@media screen and (min-width: 1200px) {
  .cartoon h2 {
    margin-right: 40px;
  }
}
.seven {
  text-align: center;
  color: #EBEFE2;
  margin-top: 60px;
}
.seven p {
  margin-top: 90px;
  font-weight: 400;
  font-size: 17px;
  text-align: left;
  line-height: 1.9;
  color: #EBEFE2;
}
.seven p strong {
  color: #c27fa7;
}
.seven img {
  border-radius: 10px;
}

.seven-poster img {
  border-radius: 10px;
  margin: 100px auto 100px auto;
  display: block;
}

.seven-design h2 {
  text-align: center;
}

.seven-design img {
  border-radius: 10px;
  margin: 100px auto 100px auto;
  display: block;
}

.seven-video {
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .seven h2 {
    margin-right: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .seven h2 {
    margin-right: 150px;
  }
}
.login-form h2 {
  color: #232321;
  text-align: center;
  margin: 100px 0 20px 0;
}
.login-form button {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 6px;
  background-color: #232321;
  color: #EBEFE2;
  font-size: 16px;
  cursor: pointer;
}
.login-form button:hover {
  background-color: #c27fa7;
}

.login-info {
  margin-bottom: 20px;
}
.login-info label {
  font-weight: 700;
  color: #c27fa7;
}
.login-info input[type=text], .login-info input[type=password] {
  width: 100%;
  padding: 5px;
  border: 1px solid #1a1a19;
  border-radius: 8px;
  font-size: 20px;
  margin-top: 5px;
}

.create-heading {
  text-align: center;
  margin-top: 10rem;
}

.create-form {
  background-color: #1a1a19;
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}
.create-form label {
  font-weight: 400;
  color: #c27fa7;
}
.create-form input, .create-form textarea {
  width: 100%;
  padding: 7px;
  background-color: #EBEFE2;
  border: none;
  border: 10px;
  border-radius: 5px;
  margin: 10px 0 20px 0;
}
.create-form button[type=submit] {
  width: 100%;
  padding: 8px;
  background-color: #c27fa7;
  color: #EBEFE2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.create-form button[type=submit]:hover {
  background-color: #EBEFE2;
  color: #c27fa7;
}

.project-images.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-images.hero img {
  max-width: 99%;
  height: auto;
  border-radius: 10px;
}

.details-box {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 12px;
}

.details-box p {
  margin: 0;
  font-size: 0.95rem;
}

.details-box strong {
  color: #e48bb3;
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.info-layout {
  margin: 80px 0;
  gap: 20px;
}

.info-box {
  background: #1a1a19;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  transition: 0.3s ease;
}

.repo-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border: 1px solid #e48bb3;
  border-radius: 30px;
  color: #e48bb3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.repo-link:hover {
  background: #e48bb3;
  color: #000;
}

.info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.info-box p {
  line-height: 1.6;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #c27fa7;
  border-radius: 16px 0 0 16px;
}

@media (max-width: 768px) {
  .info-layout {
    margin: 50px 0;
  }
  .info-box {
    padding: 20px;
  }
}
.left-ani img,
.right-ani img,
.sketch img,
.design img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .project-images.hero img {
    max-width: 45%;
  }
}/*# sourceMappingURL=main.css.map */