@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #e38b29;
  --secondary-color: #f1a661;
  --tertiary-color: #4b4b4b;
  --background-color: #fdeedc;
  --font-base: "Poppins", sans-serif;
}

body {
  font-family: var(--font-base);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

.full-width {
  width: 100%;
}

.text-brand {
  color: var(--primary-color);
}

.text-base {
  color: var(--tertiary-color);
}

.btn-brand {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-brand:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* link custom */
.link-custom {
  font-weight: 500;
  position: relative;
  padding-bottom: 0;
}

.link-custom::after {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  background-color: var(--primary-color);
  left: 0;
  top: 100%;
  transition: all 0.4s;
}

.link-custom:hover::after {
  width: 100%;
}

/* navbar */
.navbar {
  background-color: rgba(253, 238, 220, 0.9);
}

.navbar .navbar-brand {
  color: var(--primary-color);
}

.navbar .navbar-brand:hover {
  transform: rotate(-5deg);
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--tertiary-color);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color);
}

/* full height */
.full-height {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* hero */
.hero-text {
  min-height: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
}

.hero-text .hero-text-start,
.hero-text .hero-text-end {
  color: var(--tertiary-color);
}

.hero-text .hero-text-name {
  font-size: 3rem;
  color: var(--primary-color);
}

.hero-image {
  margin: 50px 0;
  min-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.hero-image img {
  border: 5px solid var(--primary-color);
}

.hero-link {
  margin-top: 30px;
}

/* portfolio */
#portfolio {
  background-color: var(--background-color);
  padding: 100px 0;
  text-align: center;
}

/* card */
.card-custom {
  text-align: start;
}

.card-custom .card-custom-image {
  overflow: hidden;
}

.card-custom .card-custom-image img {
  transition: all 0.4s ease;
}

.card-custom:hover .card-custom-image img {
  transform: scale(1.1);
}

/* shadow */
.shadow-effect {
  transition: all 0.4s;
}

.shadow-effect:hover {
  box-shadow: -5px 5px 0 0 var(--secondary-color);
}

/* transform effect */
.transform-effect {
  transition: all 0.4s;
}

.transform-effect:hover {
  transform: translate(0, -10px);
}

/* blog */
#blog {
  padding: 100px 0;
  text-align: center;
}

/* contact */
#contact {
  background-color: var(--background-color);
  padding: 100px 0;
}

#contact .link-contact {
  color: var(--tertiary-color);
}

#contact .link-contact:hover {
  color: var(--primary-color);
}

#contact .form-control {
  background-color: transparent;
  border-color: var(--tertiary-color);
}

#contact .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}
