/*--------------------------------------------------------------
  style.css — Site-specific layout for florianrampin.fr
  Requires: neobrutalism.css (loaded before this file)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--nb-yellow);
  width: 50px;
  height: 50px;
  border-radius: var(--nb-radius);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
  transition: all var(--nb-transition);
}
.back-to-top i {
  font-size: 28px;
  color: var(--nb-text);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--nb-peach);
  color: var(--nb-text);
  box-shadow: var(--nb-shadow);
  transform: translate(-2px, -2px);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.3s;
  height: 80px;
  background: var(--nb-lavender);
  border-bottom: var(--nb-border-width) solid var(--nb-border-color);
}
#header.header-transparent {
  background: transparent;
  border-bottom: none;
}
#header.header-scrolled {
  height: 70px;
  background: var(--nb-lavender);
  border-bottom: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: 0 4px 0px var(--nb-border-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: var(--nb-text);
  white-space: nowrap;
  transition: var(--nb-transition);
  font-size: 13px;
  font-family: var(--nb-font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid transparent;
  background: transparent;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--nb-text);
  background: var(--nb-yellow);
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
  text-decoration: none;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  margin: 0;
  padding: 8px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--nb-bg-white);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
  transition: var(--nb-transition);
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 600;
  color: var(--nb-text);
  letter-spacing: 0;
  border: none;
}
.navbar .dropdown ul a:hover {
  background: var(--nb-mint);
  box-shadow: none;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--nb-text);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(255, 248, 240, 0.97);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px; right: 15px; bottom: 15px; left: 15px;
  padding: 20px;
  background-color: var(--nb-bg-white);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 12px 20px;
  font-size: 16px;
  color: var(--nb-text);
  border: none;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--nb-text);
  background: var(--nb-yellow);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--nb-bg-white);
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: var(--nb-pink);
  position: relative;
  border-bottom: var(--nb-border-width) solid var(--nb-border-color);
}
#hero:before {
  content: "";
  background: none;
  position: absolute;
  bottom: 0; top: 0; left: 0; right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0; top: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 72px;
  font-family: var(--nb-font-heading);
  font-weight: 700;
  color: var(--nb-text);
  text-transform: uppercase;
  letter-spacing: -2px;
  background: var(--nb-yellow);
  padding: 10px 30px;
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-xl);
  display: inline-block;
}
#hero h2 {
  color: var(--nb-text);
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--nb-bg-white);
  padding: 8px 20px;
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
#hero .btn-scroll {
  transition: var(--nb-transition);
  color: var(--nb-text);
  animation: nb-up-down 1s ease-in-out infinite alternate-reverse both;
}
#hero .btn-scroll i {
  font-size: 48px;
}
#hero .btn-scroll:hover {
  color: var(--nb-text);
  transform: scale(1.2);
}
#hero .img-fluid {
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
  background: var(--nb-bg-white);
  padding: 8px;
}
@media (max-width: 575px) {
  #hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
    padding: 8px 16px;
    box-shadow: var(--nb-shadow);
  }
  #hero h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}
.section-bg {
  background-color: var(--nb-bg);
}
.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--nb-text);
  position: relative;
  z-index: 2;
  display: inline-block;
  background: var(--nb-mint);
  padding: 8px 24px;
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
.section-title span {
  display: none;
}
.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-size: 16px;
  margin-top: 15px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: var(--nb-peach);
  border-bottom: var(--nb-border-width) solid var(--nb-border-color);
  min-height: 40px;
  margin-top: 78px;
}
@media (max-width: 992px) {
  .breadcrumbs { margin-top: 70px; }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 { margin: 0 0 10px 0; }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.breadcrumbs ol li + li { padding-left: 10px; }
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--nb-text);
  content: "?";
}

/*--------------------------------------------------------------
# About Me
--------------------------------------------------------------*/
.about {
  background: var(--nb-bg);
}
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--nb-text);
  text-transform: uppercase;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.about .content ul strong { margin-right: 10px; }
.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--nb-text);
  line-height: 0;
}
.about .content p:last-child { margin-bottom: 0; }
.about .content .count-box {
  width: 100%;
  background: var(--nb-blue);
  padding: 25px;
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
  transition: all var(--nb-transition);
}
.about .content .count-box:hover {
  box-shadow: var(--nb-shadow-lg);
  transform: translate(-2px, -2px);
}
.about .content .count-box i {
  display: block;
  font-size: 36px;
  color: var(--nb-text);
  float: left;
  line-height: 0;
}
.about .content .count-box span {
  font-size: 42px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: var(--nb-text);
  margin-left: 50px;
}
.about .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: var(--nb-font);
  font-size: 14px;
  color: var(--nb-text-mid);
  font-weight: 500;
}
.about .content .count-box a {
  font-weight: 700;
  display: block;
  margin-top: 20px;
  color: var(--nb-text);
  font-size: 15px;
  transition: ease-in-out var(--nb-transition);
}
.about .content .count-box a:hover { color: var(--nb-text-mid); }
.about .image {
  background: url("../img/me.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
}
.about .skills-content { margin-top: 30px; }
.about .skills-content .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.about .skills-content .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  color: var(--nb-text);
}
.about .skills-content .progress .skill .val {
  float: right;
  font-style: normal;
}
.about .skills-content .progress-bar-wrap {
  background: var(--nb-bg-white);
  border: 2px solid var(--nb-border-color);
}
.about .skills-content .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--nb-coral);
}

/*--------------------------------------------------------------
# My Resume
--------------------------------------------------------------*/
.resume {
  background: var(--nb-yellow);
  border-top: var(--nb-border-width) solid var(--nb-border-color);
  border-bottom: var(--nb-border-width) solid var(--nb-border-color);
}
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--nb-text);
  text-transform: uppercase;
  display: inline-block;
  background: var(--nb-bg-white);
  padding: 6px 16px;
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 4px solid var(--nb-border-color);
  position: relative;
}
.resume .resume-item h4 {
  line-height: 22px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nb-text);
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 14px;
  background: var(--nb-peach);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 10px;
  border: 2px solid var(--nb-border-color);
  box-shadow: 2px 2px 0px var(--nb-border-color);
}
.resume .resume-item ul { padding-left: 20px; }
.resume .resume-item ul li {
  padding-bottom: 10px;
  font-weight: 500;
}
.resume .resume-item:last-child { padding-bottom: 0; }
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 0;
  left: -10px;
  top: 0;
  background: var(--nb-pink);
  border: 3px solid var(--nb-border-color);
}

/*--------------------------------------------------------------
# My Services / Compétences
--------------------------------------------------------------*/
.services {
  background: var(--nb-bg);
}
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: var(--nb-bg-white);
  box-shadow: var(--nb-shadow);
  transition: all var(--nb-transition);
  text-align: center;
  border: var(--nb-border-width) solid var(--nb-border-color);
  height: 100%;
}
.services .icon-box:hover {
  box-shadow: var(--nb-shadow-lg);
  transform: translate(-2px, -2px);
}
.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 0;
  width: 72px;
  height: 72px;
  background: var(--nb-lavender);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: var(--nb-text);
}
.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: var(--nb-text);
  transition: var(--nb-transition);
}
.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 600;
}
.services .icon-box:hover .title a { color: var(--nb-text); }

/*--------------------------------------------------------------
# My Portfolio
--------------------------------------------------------------*/
.portfolio {
  background: var(--nb-mint);
  border-top: var(--nb-border-width) solid var(--nb-border-color);
  border-bottom: var(--nb-border-width) solid var(--nb-border-color);
}
.portfolio .section-title h2 { background: var(--nb-yellow); }
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 8px 10px 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 16px;
  text-transform: uppercase;
  color: var(--nb-text);
  transition: all var(--nb-transition);
  border: 2px solid var(--nb-border-color);
  background: var(--nb-bg-white);
  box-shadow: var(--nb-shadow-sm);
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--nb-text);
  background: var(--nb-pink);
  box-shadow: var(--nb-shadow);
  transform: translate(-2px, -2px);
}
.portfolio .portfolio-item { margin-bottom: 30px; }
.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
  background: var(--nb-bg-white);
}
.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px; bottom: 0; right: 15px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: var(--nb-yellow);
  border-top: var(--nb-border-width) solid var(--nb-border-color);
  padding: 12px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: var(--nb-text);
  font-weight: 700;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info p {
  color: var(--nb-text-mid);
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 600;
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: var(--nb-text);
  transition: var(--nb-transition);
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  transform: scale(1.2);
}
.portfolio .portfolio-item .portfolio-info .details-link { right: 10px; }
.portfolio .portfolio-item:hover .portfolio-img img { transform: scale(1.05); }
.portfolio .portfolio-item:hover .portfolio-info { opacity: 1; }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details { padding-top: 40px; }
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: var(--nb-bg-white);
  opacity: 1;
  border: 2px solid var(--nb-border-color);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--nb-pink);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  background: var(--nb-blue);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--nb-border-color);
  text-transform: uppercase;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
}
.portfolio-details .portfolio-info ul li + li { margin-top: 10px; }
.portfolio-details .portfolio-description { padding-top: 30px; }
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.portfolio-details .portfolio-description p {
  padding: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/
.contact { background: var(--nb-bg); }
.contact .info-box {
  color: var(--nb-text);
  text-align: center;
  padding: 25px 15px 30px 15px;
  background: var(--nb-bg-white);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
  transition: all var(--nb-transition);
}
.contact .info-box:hover {
  box-shadow: var(--nb-shadow-lg);
  transform: translate(-2px, -2px);
}
.contact .info-box i.bx {
  font-size: 24px;
  color: var(--nb-text);
  padding: 15px;
  background: var(--nb-peach);
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
.contact .info-box h3 {
  font-size: 18px;
  color: var(--nb-text);
  font-weight: 700;
  margin: 15px 0 8px 0;
  text-transform: uppercase;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
}
.contact .social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.contact .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nb-text);
  line-height: 1;
  padding: 12px;
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
  background: var(--nb-bg-white);
  transition: all var(--nb-transition);
  width: 46px;
  height: 46px;
}
.contact .social-links a:hover {
  color: var(--nb-text);
  background: var(--nb-lavender);
  box-shadow: var(--nb-shadow);
  transform: translate(-2px, -2px);
  text-decoration: none;
}
.contact .contact-form {
  background: var(--nb-bg-white);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow);
  padding: 30px;
}
.contact .contact-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 600;
  font-size: 13px;
}
.contact .contact-form .error-message {
  display: none;
  color: var(--nb-text);
  background: var(--nb-coral);
  text-align: left;
  padding: 15px;
  font-weight: 700;
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
.contact .contact-form .error-message br + br { margin-top: 25px; }
.contact .contact-form .sent-message {
  display: none;
  color: var(--nb-text);
  background: var(--nb-mint);
  text-align: center;
  padding: 15px;
  font-weight: 700;
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
}
.contact .contact-form .loading {
  display: none;
  background: var(--nb-bg-white);
  text-align: center;
  padding: 15px;
}
.contact .contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 0;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--nb-border-color);
  border-top-color: var(--nb-mint);
  animation: nb-spin 1s linear infinite;
}
.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border: 2px solid var(--nb-border-color);
  font-family: var(--nb-font);
  font-weight: 500;
}
.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  background-color: var(--nb-yellow);
  border-color: var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
  outline: none;
}
.contact .contact-form input { padding: 10px 15px; }
.contact .contact-form textarea { padding: 12px 15px; }
.contact .contact-form button[type=submit],
.contact .contact-form .btn {
  background: var(--nb-pink);
  border: var(--nb-border-width) solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
  padding: 10px 28px;
  color: var(--nb-text);
  transition: var(--nb-transition);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: var(--nb-font);
}
.contact .contact-form button[type=submit]:hover,
.contact .contact-form .btn:hover {
  background: var(--nb-coral);
  box-shadow: var(--nb-shadow);
  transform: translate(-2px, -2px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--nb-lavender);
  color: var(--nb-text);
  font-size: 14px;
  text-align: center;
  padding: 60px 0;
  position: relative;
  border-top: var(--nb-border-width) solid var(--nb-border-color);
}
#footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: none;
}
#footer .container { position: relative; }
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--nb-text);
  position: relative;
  font-family: var(--nb-font-heading);
  padding: 0;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}
#footer p {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 30px 0;
}
#footer .social-links { margin: 0 0 30px 0; }
#footer .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nb-bg-white);
  color: var(--nb-text);
  line-height: 1;
  margin-right: 8px;
  text-align: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
  transition: var(--nb-transition);
}
#footer .social-links a:hover {
  background: var(--nb-pink);
  color: var(--nb-text);
  text-decoration: none;
  box-shadow: var(--nb-shadow);
  transform: translate(-2px, -2px);
}
#footer .copyright {
  margin: 0 0 5px 0;
  font-weight: 600;
}
#footer .credits {
  font-size: 13px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Error Page
--------------------------------------------------------------*/
.text-danger {
  color: var(--nb-text) !important;
  background: var(--nb-coral);
  display: inline-block;
  padding: 6px 16px;
  border: 2px solid var(--nb-border-color);
  box-shadow: var(--nb-shadow-sm);
  margin-bottom: 10px;
}