/*=========================================
        GOOGLE FONTS
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');
/*=========================================
        ROOT
=========================================*/ :root {
  --primary: #111111;
  --secondary: #b88a44;
  --light: #f8f8f8;
  --border: #e7e7e7;
  --text: #666666;
  --white: #ffffff;
  --heading: 'Cormorant Garamond', serif;
  --body: 'Jost', sans-serif;
  --shadow: 0 18px 45px rgba(0, 0, 0, .08);
  --radius: 24px;
}
/*=========================================
        RESET
=========================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  font-size: 17px;
  color: var(--text);
  background: #fafafa;
  overflow-x: hidden;
  line-height: 1.8;
}
img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
section {
  padding: 100px 0;
}
.container {
  max-width: 1280px;
}
/*=========================================
        TYPOGRAPHY
=========================================*/
h1, h2, h3, h4, h5 {
  font-family: var(--heading);
  color: #111;
}
.archive-hero h1 {
  font-size: 74px;
  font-weight: 700;
  line-height: 1.05;
  margin: 20px 0;
}
.archive-hero p {
  max-width: 700px;
  margin: auto;
  color: #777;
  font-size: 20px;
}
.hero-subtitle {
  display: inline-block;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
/*=========================================
        HERO
=========================================*/
.archive-hero {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 120px 0 110px;
  position: relative;
}
.archive-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}
.archive-hero h1 {
  color: #fff;
}
/*=========================================
        PROJECT SECTION
=========================================*/
.archive-section {
  padding: 20px 0;
}
/*=========================================
        PROJECT CARD
=========================================*/
.archive-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  transition: .4s;
}
.archive-card:hover {
  transform: translateY(-8px);
}
.archive-image {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.archive-image img {
  height: 100%;
  object-fit: cover;
  transition: .6s;
}
.archive-card:hover .archive-image img {
  transform: scale(1.08);
}
/*=========================================
        CONTENT
=========================================*/
.archive-content {
  padding: 25px;
}
.project-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.archive-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.archive-content p {
  color: #666;
  margin: 15px 0;
}
/*=========================================
        TAGS
=========================================*/
.project-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.project-tags span {
  padding: 8px 18px;
  border-radius: 40px;
  background: #f4f4f4;
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
/*=========================================
        PROJECT LINKS
=========================================*/
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #f7f7f7;
  color: #111;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: .35s;
}
.project-links a i {
  transition: .35s;
}
.project-links a:hover {
  background: var(--secondary);
  color: #fff;
}
.project-links a:hover i {
  transform: translateX(6px);
}
/*=========================================
        MINI PROJECTS
=========================================*/
.mini-projects {
  padding-top: 0;
  padding-bottom: 100px;
}
.mini-card {
  display: block;
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: .35s;
  position: relative;
  overflow: hidden;
}
.mini-card:hover {
  transform: translateY(-8px);
}
.mini-number {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 18px;
  font-weight: 600;
}
.mini-card h4 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}
.mini-card p {
  margin-bottom: 25px;
  color: #777;
}
.mini-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 600;
}
.mini-card span i {
  transition: .35s;
}
.mini-card:hover span i {
  transform: translateX(6px);
}
/*=========================================
        HOVER BORDER EFFECT
=========================================*/
.mini-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: var(--secondary);
  transition: .4s;
}
.mini-card:hover::before {
  height: 100%;
}
/*=========================================
        FOOTER
=========================================*/
.footer-section {
  background: #111;
  padding: 80px 0 30px;
}
.footer-section h3 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 12px;
}
.footer-section p {
  color: #999;
}
.footer-section hr {
  border-color: rgba(255, 255, 255, .12);
  margin: 45px 0 25px;
}
.copyright {
  color: #888;
  font-size: 15px;
}
/*=========================================
        SOCIAL ICONS
=========================================*/
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d1d1d;
  color: #fff;
  transition: .35s;
}
.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}
/*=========================================
        IMAGE CURSOR
=========================================*/
.archive-image img {
  cursor: pointer;
}
/*=========================================
        SELECTION
=========================================*/ ::selection {
  background: var(--secondary);
  color: #fff;
}
/*=========================================
        SCROLLBAR
=========================================*/ ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #ececec;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 20px;
}
/*=========================================
        RESPONSIVE - LARGE DEVICES
=========================================*/
@media (max-width:1200px) {
  .archive-hero h1 {
    font-size: 60px;
  }
  .archive-content {
    padding: 45px;
  }
  .archive-content h2 {
    font-size: 40px;
  }
  .project-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}
/*=========================================
        TABLET
=========================================*/
@media (max-width:991px) {
  section {
    padding: 80px 0;
  }
  .archive-hero {
    padding: 90px 0;
  }
  .archive-hero h1 {
    font-size: 48px;
  }
  .archive-hero p {
    font-size: 18px;
  }
  .archive-card {
    margin-bottom: 50px;
  }
  .archive-image {
    height: 380px;
  }
  .archive-content {
    padding: 35px;
  }
  .archive-content h2 {
    font-size: 36px;
  }
  .project-links {
    gap: 12px;
  }
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
    margin-top: 25px;
  }
}
/*=========================================
        MOBILE
=========================================*/
@media (max-width:767px) {
  section {
    padding: 60px 0;
  }
  .archive-hero {
    padding: 70px 0;
  }
  .archive-hero h1 {
    font-size: 36px;
    line-height: 1.15;
  }
  .archive-hero p {
    font-size: 16px;
  }
  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .archive-image {
    height: 260px;
  }
  .archive-content {
    padding: 25px;
  }
  .archive-content h2 {
    font-size: 30px;
  }
  .archive-content p {
    font-size: 15px;
  }
  .project-number {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }
  .project-tags {
    gap: 8px;
  }
  .project-tags span {
    font-size: 11px;
    padding: 6px 12px;
  }
  .project-links {
    flex-direction: column;
    gap: 10px;
  }
  .project-links a {
    width: 100%;
    justify-content: space-between;
  }
  .mini-card {
    padding: 25px;
  }
  .mini-card h4 {
    font-size: 28px;
  }
  .footer-section {
    padding: 60px 0 25px;
  }
  .footer-section h3 {
    font-size: 32px;
  }
}
/*=========================================
        SMALL MOBILE
=========================================*/
@media (max-width:480px) {
  .archive-hero h1 {
    font-size: 30px;
  }
  .archive-content {
    padding: 20px;
  }
  .archive-content h2 {
    font-size: 26px;
  }
  .archive-image {
    height: 220px;
  }
  .mini-card {
    padding: 20px;
  }
  .mini-card h4 {
    font-size: 24px;
  }
  .footer-social {
    gap: 10px;
  }
  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}
/*=========================================
        ANIMATIONS
=========================================*/
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all .8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/*=========================================
        CARD HOVER
=========================================*/
.archive-card {
  position: relative;
}
.archive-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--secondary);
  transition: .4s;
}
.archive-card:hover::after {
  width: 100%;
}
/*=========================================
        IMAGE OVERLAY
=========================================*/
.archive-image {
  position: relative;
}
.archive-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .20), transparent);
  opacity: 0;
  transition: .35s;
  z-index: 1;
}
.archive-card:hover .archive-image::before {
  opacity: 1;
}
/*=========================================
        UTILITY
=========================================*/
.text-gold {
  color: var(--secondary);
}
.bg-light-custom {
  background: #fafafa;
}
.shadow-hover {
  transition: .35s;
}
.shadow-hover:hover {
  box-shadow: 0 20px 55px rgba(0, 0, 0, .12);
}
/*=========================================
        END
=========================================*/