/* ---------------------------
  Fonts & Variables
--------------------------- */
@font-face {
  font-family: "Humanist521BT";
  src: url("/font/Humanist521LightBT.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CinzelDecorative-Regular";
  src: url("/font/Cinzel/CinzelDecorative-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CinzelDecorative-Bold";
  src: url("/font/Cinzel/CinzelDecorative-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CinzelDecorative-Black";
  src: url("/font/Cinzel/CinzelDecorative-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Typography Hierarchy */
h1 {
  font-family: "CinzelDecorative-Regular", serif;
}

h2 {
  font-family: "Humanist521LightBT", sans-serif;
}

h3,
h4 {
  font-family: "Humanist521BT", sans-serif;
  font-weight: 500;
}

p,
h5,
h6 body,
text-content {
  font-family: "Humanist521BT", sans-serif;
  letter-spacing: 0.5px;
}

:root {
  --hero-bg: url("/assets/images/bg-2.png");
  --logo-size: clamp(96px, 14vw, 200px);
  --logo-small: clamp(50px, 8vw, 100px);
  --highlight-color: #ffd563;
  --text-light: #ffffff;
}

/* ---------------------------
  Global Styles
--------------------------- */
html,
body {
  height: 100%;
  margin: 0px;
  scroll-behavior: smooth;
  font-family: "Humanist521BT", sans-serif;
  color: var(--text-light);
}

/* Portfolio Navigation Header */
.portfolio-header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.back-home-btn {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-home-btn:hover {
  color: var(--highlight-color);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-5px);
}

.portfolio-title {
  color: var(--text-light);
  font-family: "CinzelDecorative-Regular", serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

/*---------------------------
  Lenis Scroll
---------------------------*/

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ---------------------------
 Toaster
--------------------------- */

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.success {
  background: #4caf50;
}

.toast.error {
  background: #f44336;
}

.toast .close-btn {
  margin-left: 15px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

