@font-face {
  font-family: "Agraham";
  src: url(agraham/Agraham.otf);

  font-family: "Antic";
  src: url(Antic/Antic-Regular.ttf);
  font-size: large;

  font-family: "ElaineKinandhita";
  src: url(elainekinandhita/ElaineKinandhita.ttf);

  font-family: "The Seasons";
    src: url(The\ Seasons\ Font/)

}

.julius-sans-one-regular {
font-family: "Julius Sans One", sans-serif;
font-weight: 400;
font-style: normal;
}

.antic-regular {
font-family: "Antic", sans-serif;
font-weight: 400;
font-style: normal;
}

.livvic-thin {
font-family: "Livvic", sans-serif;
font-weight: 100;
font-style: normal;
}

.livvic-extralight {
font-family: "Livvic", sans-serif;
font-weight: 200;
font-style: normal;
}

.livvic-light {
font-family: "Livvic", sans-serif;
font-weight: 300;
font-style: normal;
}

.livvic-regular {
font-family: "Livvic", sans-serif;
font-weight: 400;
font-style: normal;
}

.livvic-medium {
font-family: "Livvic", sans-serif;
font-weight: 500;
font-style: normal;
}

.livvic-semibold {
font-family: "Livvic", sans-serif;
font-weight: 600;
font-style: normal;
}

.livvic-bold {
font-family: "Livvic", sans-serif;
font-weight: 700;
font-style: normal;
}

.livvic-black {
font-family: "Livvic", sans-serif;
font-weight: 900;
font-style: normal;
}

.livvic-thin-italic {
font-family: "Livvic", sans-serif;
font-weight: 100;
font-style: italic;
}

.livvic-extralight-italic {
font-family: "Livvic", sans-serif;
font-weight: 200;
font-style: italic;
}

.livvic-light-italic {
font-family: "Livvic", sans-serif;
font-weight: 300;
font-style: italic;
}

.livvic-regular-italic {
font-family: "Livvic", sans-serif;
font-weight: 400;
font-style: italic;
}

.livvic-medium-italic {
font-family: "Livvic", sans-serif;
font-weight: 500;
font-style: italic;
}

.livvic-semibold-italic {
font-family: "Livvic", sans-serif;
font-weight: 600;
font-style: italic;
}

.livvic-bold-italic {
font-family: "Livvic", sans-serif;
font-weight: 700;
font-style: italic;
}

.livvic-black-italic {
font-family: "Livvic", sans-serif;
font-weight: 900;
font-style: italic;
}


* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "Antic";
  background-color: #FFE7D4;
  color: #4d2e1d;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
position: sticky;
top: 0;
z-index: 1000;
background-image: linear-gradient(to right, #FFE7D4, #FFCBA3);
background-repeat: no-repeat;
opacity: 95%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5%;
margin: 2% 10%;
border-radius: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
margin-top: 5px;
}

.logo img {
max-width: 100%;
height: auto;
}

nav {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
}

nav a {
margin: 0 15px;
padding: 10px 15px;
border-radius: 10px;
background: #4d2e1d;
color: #fff;
font-family: "Livvic";
font-weight: 200;
font-size: 18px;
font-weight: light;
opacity: 100%;
display: inline-block;
transition: all 0.3s ease;
white-space: nowrap;
}

nav a:hover {
transform: translateY(-5%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn {
background: #F8B9B1;
color: #4d2e1d;
margin: 0 15px;
padding: 10px 15px;
border-radius: 10px;
font-family: "Livvic";
font-weight: 200;
font-size: 18px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
white-space: nowrap;
}

.contact-btn:hover { 
transform: translateY(-5%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.projects {
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease forwards;
}

.projects-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
}


.leftbranch, .rightbranch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.leftbranch {
  left: 0;left: 0;
  background-image: url(Group\ 1.png);
}

.rightbranch {
  right: 0;
  background-image: url(Group\ 37.png);
}

.projects h2 {
  font-size: 40px;
  font-family: "Agraham";
  font-weight: 400;
  color: #4d2e1d;
  margin: 0;
  padding: 30px;
  z-index: 2;
  position: relative;
}

.project-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #4d2e1d;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.preview1 {
  width: 100%;
  height: 200px;
  background-image: url(Kartu\ Nama\ Mockup.png);
  background-color: #FFE7D4;
  opacity: 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.preview2 {
  width: 100%;
  height: 200px;
  background-image: url(2.png);
  background-color: #FFE7D4;
  opacity: 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.preview3 {
  width: 100%;
  height: 200px;
  background-image: url(ilus3copy.png);
  background-color: #FFE7D4;
  opacity: 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.card h3 {
  position: relative;
  font-size: 22px;
  margin-bottom: 40px;
  margin-top: -50px;
  color:white;
  font-family: "Agraham";
  font-weight: 100;
  padding: 0 20px;
}

.card-btn {
  display: inline-block;
  margin: 0 20px 20px 20px;
  padding: 10px 20px;
  background-color: #FFE7D4;
  color: #4d2e1d;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-size: 20px;
}

.card-btn:hover {
  transform: scale(1.05);
}

.card-btn::after {
  content: " ▶";
  font-size: 12px;
}

footer {
  background: #4d2e1d;
  color: white;
  text-align: center;
  padding: 30px 10px;
  font-family: "Antic";
}

footer p {
  margin: 5px;
}

footer .social-icons a img {
  margin: 10px;
}

.social-icons a img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* Tablet Styles */
@media (max-width: 800px) {
  body {
    font-size: 15px;
  }

  header {
    margin: 2% 5%;
    padding: 20px 3%;
    flex-direction: column;
    gap: 15px;
  }

  .logo img {
    width: 120px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a, .contact-btn {
    padding: 8px 12px;
    font-size: 16px;
  }

  .leftbranch, .rightbranch {
    width: 200px;
    height: 50px;
  }

  .projects {
    padding: 40px 3%;
  }

  .projects h2 {
    font-size: 32px;
    padding: 20px;
  }

  .project-cards {
    gap: 20px;
  }

  .card {
    width: 300px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  header {
    width: calc(100% - 20px);
    margin: 5px;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    gap: 10px;
    text-align: center;
  }

  .logo img {
    width: 120px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  nav a {
    width: 100%;
    max-width: 200px;
    padding: 8px 16px;
    font-size: 14px;
    margin: 0;
    border-radius: 12px;
    text-align: center;
    background: #4d2e1d;
    color: #fff;
  }

  .contact-btn {
    width: 100%;
    max-width: 200px;
    padding: 8px 16px;
    font-size: 14px;
    margin: 0;
    border-radius: 12px;
    text-align: center;
    background: #F8B9B1;
    color: #4d2e1d;
  }

  .projects {
    padding: 30px 15px;
  }

  .projects-header {
    margin-bottom: 40px;
  }
  
  .leftbranch, .rightbranch {
    display: none;
  }

  .projects h2 {
    font-size: 28px;
    padding: 15px;
  }

  .project-cards {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .preview {
    height: 180px;
    font-size: 20px;
  }

  .card h3 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: -40px;
  }

  .card-btn {
    font-size: 18px;
    padding: 8px 16px;
  }

  footer {
    padding: 20px 15px;
    font-size: 14px;
  }

  .social-icons a img {
    width: 22px;
    height: 22px;
    margin: 8px;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 375px) {
  header {
    margin: 5px;
    padding: 12px;
  }

  .logo img {
    width: 120px;
  }

  nav a {
    max-width: 180px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .contact-btn {
    max-width: 180px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .projects {
    padding: 20px 10px;
  }

  .projects h2 {
    font-size: 24px;
    padding: 10px;
  }

  .card {
    max-width: 280px;
  }

  .preview {
    height: 160px;
    font-size: 18px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card-btn {
    font-size: 16px;
    padding: 6px 14px;
  }

  footer {
    padding: 15px 10px;
    font-size: 13px;
  }
}