*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
  color: #7FA1C3;
}
a:hover{
  color: #7FA1C3;
  cursor: pointer;
}
p, a, i{
  font-size: .9rem;
  line-height: normal;
}
h1, h2, h3{
  line-height: 1.2;
  font-family: 'Bricolage Grotesque', sans-serif;
}
ul{
  list-style: none;
}
hr{
  border: 2px solid #7FA1C3;
  margin: .5rem;
}
button{
  font-family: 'Changa', sans-serif;
  background-color: #7FA1C3;
  color: #333333;
  border: 2px solid #7FA1C3;
  box-shadow: 0 5px 5px rgba(0, 102, 204, 0.1);
  outline: none;
  border-radius: .7rem;
  padding: .45rem;
  margin: .5rem 0;
  font-size: .9rem;
  cursor: pointer;
}
button:hover{
  color: #F5EDED;
  background-color: #20806B;
  border-color: #20806B;
  box-shadow: 0 5px 5px rgba(0, 102, 204, 0.75);
}
button:focus{
  transform: scale(0.95);
}
body{
  font-family: 'Changa', sans-serif;
  line-height: normal;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #333333;
  background-color: #F5EDED;
  font-size: .9rem;
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.63rem 1.25rem;
  background-color: #E1E4E6;
  color: #F5EDED;
  position: relative;
  z-index: 10;
  transition: background-color 0.01s ease-in;
}
.logo{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80px;
  margin: .5rem 0 0 0;
}
.logo img{
  width: 80%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hamburger{
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  position: relative;
}
.hamburger div{
  width: 100%;
  height: 3px;
  background-color: #7FA1C3;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
}
.hamburger.active div:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active div:nth-child(2){
  opacity: 0;
}
.hamburger.active div:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}
.hamburger.active div{
  background-color: #20806B;
}
.nav-links{
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #7FA1C3;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  text-align: center;
}
.nav-links li{
  margin: 1rem 0;
}
.nav-links a{
  color: #333333;
  text-decoration: none;
  font-size: 1.3rem;
}
.nav-links a:hover{
  text-decoration: underline;
  text-decoration-color: #7FA1C3;
}
.nav-links.open{
  display: flex;
}
.social-links a{
  margin: 0 1rem;
}
.social-links i{
  color: #F5EDED;
  padding: .2rem;
  font-size: 1.25rem;
  border-radius: .4rem;
}
.social-links i:hover{
  color: #333333;
  background-color: #7FA1C3;
}
.dropdown{
  display: none;
}
#scrollTopBtn{
  display: none;
  position: fixed;
  bottom: 60px;
  right: 25px;
  z-index: 99;
  font-size: 1.35rem;
  color: #7FA1C3;
  background-color: #E1E4E6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border-radius: 7rem;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  transition: opacity 0.3s;
  text-align: center;
  line-height: 24px;
}
#scrollTopBtn:hover{
  background-color: #20806B;
  border-color: #20806B;
  color: #E1E4E6;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.portfolioHero {
  background-color: #E1E4E6;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.portfolioHero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  animation: fadeInUp 1s ease-out;
}
.portfolioHero hr {
  width: 75%;
  height: 3px;
  background-color: #7FA1C3;
  border: none;
  margin: 0.75rem auto;
  animation: fadeInUp 1.2s ease-in-out;
}
.portfolioHero h3 {
  color: #7FA1C3;
  margin: 0.4rem auto;
  width: 75%;
  font-size: 1rem;
  animation: fadeInUp 1.4s ease-out;
}
.portfolioContent{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 2rem 3rem;
}
.ProjectGrid{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Project Cards — shared styles */
.designaCarsProject, .PawlyProject, .CrestProject {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #e5e5e5;
}
.designaCarsProject img, .PawlyProject img, .CrestProject img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.designaCarsProject::before, .PawlyProject::before, .CrestProject::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.designaCarsProject:hover::before, .PawlyProject:hover::before, .CrestProject:hover::before {
  opacity: 1;
}
.designaCarsProject h2, .PawlyProject h2, .CrestProject h2 {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  z-index: 2;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}
.designaCarsProject h3, .PawlyProject h3, .CrestProject h3 {
  position: absolute;
  top: 2.2rem;
  left: 1.25rem;
  z-index: 2;
  font-size: 1.4rem;
  font-weight: 600;
  color: #20806B;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.designaCarsProjectContent, .PawlyProjectCardContent, .CrestProjectCardContent {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 1.5rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.designaCarsProject:hover .designaCarsProjectContent, .PawlyProject:hover .PawlyProjectCardContent, .CrestProject:hover .CrestProjectCardContent {
  opacity: 1;
  transform: translateY(0);
}
.designaCarsProjectContent p, .PawlyProjectCardContent p, .CrestProjectCardContent p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.designaCarsProjectContent a, .PawlyProjectCardContent a, .CrestProjectCardContent a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.06rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}
.designaCarsProjectContent a:hover,
.PawlyProjectCardContent a:hover,
.CrestProjectCardContent a:hover {
  transform: translateX(7.5px);
  color: #155346;
}

/* Card-specific h2 color differences */
.designaCarsProject h2 {
  color: #F5EDED;
}
.PawlyProject h2,
.CrestProject h2 {
  color: #333333;
}

/* Footer Styles */
footer{
  background-color: #7FA1C3;
  color: #F5EDED;
  text-align: center;
  padding: 1rem 1rem 0 1rem;
}
.footerSections{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: .5rem;
}
.footerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.footerLogo img{
  width: 75px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footerLinks{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.footerNav{
  display: flex;
  justify-content: space-around;
  padding: 1rem auto;
  margin: auto;
  width: fit-content;
  gap: 10px;
}
.footerNav a{
  color: #333333;
  font-size: 1.15rem;
}
.footerNav a:hover{
  color: #20806B;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #333333;
}
.footerSocials{
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  width: fit-content;
  gap: 5px;
}
.footerSocials a{
  font-size: 1rem;
  color: #333333;
}
.footerSocials a:hover{
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #20806B;
}
footer small{
  font-size: .65rem;
}