/*
  Theme Name: Folio — Fiasco Dark Theme
  Restyled to match Fiasco Industries black / gold / white palette.
  NO layout or structural changes — colours only.
*/

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  --fi-black:      #000000;
  --fi-black-alt:  #0a0a0a;
  --fi-dark:       #111111;
  --fi-dark-card:  #1a1a1a;
  --fi-dark-mid:   #222222;
  --fi-border:     rgba(255,255,255,0.08);
  --fi-border-md:  rgba(255,255,255,0.15);
  --fi-gold:       #c9a84c;
  --fi-gold-light: #e0c070;
  --fi-gold-dim:   #9a7a34;
  --fi-white:      #ffffff;
  --fi-gray-1:     #dddddd;
  --fi-gray-2:     #bbbbbb;
  --fi-gray-3:     #888888;
  --fi-gray-4:     #555555;
  --fi-gray-5:     #333333;
  --fi-font:       'Poppins', helvetica, sans-serif;
  --fi-font-serif: 'Playfair Display', serif;
}

/*  General Styling
/*-----------------------------------------------------------------------------------*/

body {
  background: var(--fi-black);
  color: var(--fi-gray-2);
  font-family: var(--fi-font);
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
  color: var(--fi-white);
  font-weight: 600;
}

h4 {
  color: var(--fi-white);
  font-size: 14px;
  font-weight: 600;
}

a {
  color: var(--fi-gray-1);
  text-decoration: none !important;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

a:hover {
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

a:hover, a:focus {
  color: var(--fi-gold);
  text-decoration: underline;
}

nav ul li a {
  padding: 2px 0 0 0;
  position: relative;
  display: block;
  font-size: 12px;
  color: var(--fi-gray-3);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 14px;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

p {
  margin: 15px 0;
  padding: 0;
  font-size: 15px;
  color: var(--fi-gray-3);
  line-height: 28px;
}

::-moz-selection {
  background: var(--fi-gold);
  color: var(--fi-black);
}

::selection {
  background: var(--fi-gold);
  color: var(--fi-black);
}

.btn {
  background: var(--fi-gold);
  border: medium none;
  border-radius: 0;
  color: var(--fi-black);
  font-size: 12px;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn:hover, .btn:focus {
  background: var(--fi-gold-light);
  color: var(--fi-black);
}

.padDiv {
  padding: 30px 20px;
}

.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-control {
  background-color: var(--fi-dark-card);
  border: 1px solid var(--fi-border-md);
  border-radius: 0;
  color: var(--fi-gray-2);
  font-size: 12px;
  font-weight: 500;
  height: 50px;
  letter-spacing: 0.1em;
  padding-left: 10px;
  margin: 0 0 25px 0;
  line-height: 14px;
  text-transform: uppercase;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
  outline: 0 none;
  border-color: var(--fi-gold-dim);
  background-color: var(--fi-dark-mid);
}

.paddsection {
  padding-top: 90px;
  padding-bottom: 90px;
}

.paddsections {
  padding-top: 90px;
  padding-bottom: 90px !important;
}

.hvr-shutter-in-horizontal::before {
  background: var(--fi-dark-mid);
}

.hvr-shutter-in-horizontal:hover {
  background: var(--fi-gold);
}

.mb-30 {
  margin-bottom: 30px;
}

/*-----------------------------------------------------------------------------------*/
/*  Navbar Top
/*-----------------------------------------------------------------------------------*/

nav {
  position: fixed;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--fi-border);
  z-index: 1000;
  width: 100%;
  padding: 20px;
  display: none;
  -webkit-box-shadow: 0px 2px 92px 0px rgba(0,0,0,0.6);
  -moz-box-shadow:    0px 2px 92px 0px rgba(0,0,0,0.6);
  box-shadow:         0px 2px 92px 0px rgba(0,0,0,0.6);
}

.nav-menu {
  float: right;
  line-height: 32px;
  margin-bottom: 0;
  padding-top: 16px;
}

nav ul li {
  float: left;
  margin-right: 15px;
  font-family: var(--fi-font);
  font-size: 14px;
  margin-left: 40px;
}

nav ul li a {
  padding: 2px 0 0 0;
  position: relative;
  display: block;
  font-size: 14px;
  color: var(--fi-gray-3);
  font-family: var(--fi-font);
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

nav ul li a:hover {
  color: var(--fi-gold);
}

.logo {
  float: left;
}

.logo img {
  width: 100px;
  height: 50px;
}

.responsive {
  display: none;
  font-size: 23px;
  color: var(--fi-gray-2);
}

.active {
  color: var(--fi-gold) !important;
}

/*----------------------------------------------------------------------------------*/
/*  Header
/*-----------------------------------------------------------------------------------*/

#header {
  background: url("../images/MarshallBG.png") repeat scroll center center / cover;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 0;
  pointer-events: none;
}

#header .container { position: relative; z-index: 1; }

/* Animated gold shimmer line at bottom of hero */
#header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;

  animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
  0%   { opacity: 0; transform: scaleX(0.4); }
  50%  { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0.4); }
}

.header-content {
  height: 100vh;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.header-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--fi-white);
}

.header-content p {
  font-size: 13px;
  letter-spacing: 5px;
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: var(--fi-gray-1);
  font-weight: 500;
}

.header-content .list-social li {
  float: left;
  margin-right: 20px;
}

.header-content .list-social li i {
  color: var(--fi-white);
  font-size: 15px;
}

.header-content .list-social li i:hover {
  color: var(--fi-gold);
}

/*-----------------------------------------------------------------------------------*/
/*  About-us
/*-----------------------------------------------------------------------------------*/

#about {
  width: 100%;
  height: auto;
  background: var(--fi-dark);
  padding-top: 190px;
}

#about .div-img-bg {
  padding-bottom: 30px;
  border: 20px solid var(--fi-gold);
}

#about .div-img-bg .about-img img {
  width: 100%;
  box-shadow: 0px 0px 85px 0px rgba(0,0,0,0.5);
  margin-top: -60px;
  margin-left: 40px;
  height: 400px;
  object-fit: cover;
}

#about .about-descr .p-heading {
  font-family: var(--fi-font-serif);
  font-size: 28px;
  text-align: left;
  color: var(--fi-white);
}

#about .about-descr .separator {
  max-width: 80%;
  margin-bottom: 0;
  text-align: left;
  color: var(--fi-gray-2);
}

/*-----------------------------------------------------------------------------------*/
/*   Services
/*-----------------------------------------------------------------------------------*/

#services {
  background: var(--fi-dark);
  position: relative;
  padding-bottom: 80px;
}

.owl-item {
  float: left;
}

.services-block span {
  margin: 10px 0;
  position: relative;
  font-size: 13px;
  color: var(--fi-white);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}

.services-block .separator {
  margin: 0;
  font-size: 13px;
  line-height: 22px;
  color: var(--fi-gray-3);
}

.services-block i {
  font-size: 44px;
  color: var(--fi-gold);
  line-height: 44px;
}

.services-carousel .owl-stage-outer {
  overflow: hidden;
}

.services-carousel .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.services-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: 0;
  padding: 0 !important;
  background-color: var(--fi-gray-5);
  cursor: pointer;
}

.services-carousel .owl-dot.active {
  background-color: var(--fi-gold);
}

.owl-nav {
  display: none;
}

/*-----------------------------------------------------------------------------------*/
/*  Portfolio
/*-----------------------------------------------------------------------------------*/

#portfolio {
  position: relative;
  padding-bottom: 50px;
  background: var(--fi-black-alt);
}

#portfolio .portfolio-list {
  margin-bottom: 50px;
}

#portfolio .portfolio-list .nav {
  display: inline-block;
  margin: 0;
}

#portfolio .portfolio-list .nav li {
  margin: 0 40px 0 0;
  float: left;
  font-size: 14px;
  color: var(--fi-gray-3);
  line-height: 16px;
  cursor: pointer;
  font-family: var(--fi-font);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#portfolio .portfolio-list .nav li:hover,
#portfolio .portfolio-list .nav li.filter-active {
  color: var(--fi-gold);
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#portfolio .portfolio-container {
  display: inline-block;
  margin-bottom: 50px;
  width: 100%;
}

.portfolio-thumbnail {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.portfolio-thumbnail:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 10px 32px rgba(201,168,76,0.12), 0 4px 14px rgba(0,0,0,0.5);
}

.portfolio-thumbnail img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
}

.portfolio-thumbnail:hover img {
  transform: scale(1.04);
}

/*-----------------------------------------------------------------------------------*/
/*  Journal
/*-----------------------------------------------------------------------------------*/

#journal, #journal-blog {
  height: auto;
  width: 100%;
  background: var(--fi-dark);
  padding-bottom: 60px;
  position: relative;
}

#journal-blog {
  background: var(--fi-black-alt);
  padding-bottom: 30px;
}

#journal .journal-block {
  display: inline-block;
  height: auto;
  width: 100%;
}

#journal .journal-block .journal-info {
  position: relative;
}

.journal-block .journal-info img {
  max-width: 100%;
}

.journal-block .journal-info .journal-txt {
  padding: 25px 0px;
  position: relative;
}

.journal-block .journal-info .journal-txt h4 a {
  display: block;
  font-size: 19px;
  line-height: 24px;
  margin: 0 0 13px 0;
  font-weight: 500;
  color: var(--fi-white);
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.journal-block .journal-info .journal-txt h4 a:hover {
  color: var(--fi-gold);
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.journal-block .journal-info .journal-txt p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--fi-gray-3);
}

/*-----------------------------------------------------------------------------------*/
/*  Contact
/*-----------------------------------------------------------------------------------*/

#contact {
  height: auto;
  width: 100%;
  background: var(--fi-dark);
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  padding-bottom: 10px;
  color: var(--fi-gray-2);
}

#contact input, #contact textarea {
  width: 100%;
  background: var(--fi-dark-card);
  color: var(--fi-gray-2);
  border: 1px solid var(--fi-border-md);
}

#contact #sendmessage {
  color: #22c55e;
  border: 1px solid #22c55e;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin: 15px;
}

#contact #errormessage {
  color: #ef4444;
  display: none;
  border: 1px solid #ef4444;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin: 15px;
}

#contact #sendmessage.show, #contact #errormessage.show, #contact .show {
  display: block;
}

#contact .validation {
  color: #ef4444;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

/*-----------------------------------------------------------------------------------*/
/*  Footer
/*-----------------------------------------------------------------------------------*/

#footer {
  background: var(--fi-dark);
  border-top: 1px solid var(--fi-border);
  padding-top: 50px;
  padding-bottom: 50px;
}

#footer .socials-media {
  width: 100%;
}

#footer .socials-media ul {
  display: inline-block;
  float: none;
  margin: 0 0 20px 0;
}

#footer .socials-media ul li {
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}

#footer .socials-media ul li a {
  font-size: 24px;
  color: var(--fi-gray-4);
  letter-spacing: 0.1em;
  font-weight: 500;
  background: transparent;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#footer .socials-media ul li a:hover {
  color: var(--fi-gold);
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

#footer p {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0;
  text-transform: uppercase;
  color: var(--fi-gray-4);
}

@media (max-width: 768px) {
  .about-descr {
    width: auto !important;
    max-width: 100%;
  }
}

.credits {
  font-size: 13px;
  color: var(--fi-gray-4);
}

/* =========================================================================
   FIASCO MARSHALL — GLASS, PARALLAX & CURSOR ENHANCEMENTS
   No structural or layout changes. Visual layer only.
   ========================================================================= */

/* ── CUSTOM CURSOR ────────────────────────────────────────────────────── */
* { cursor: none !important; }

#m-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--fi-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, background 0.3s ease;
  will-change: transform;
}

#m-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.25s ease, height 0.25s ease,
              border-color 0.25s ease, background 0.25s ease;
  will-change: transform;
}

/* Ring expands over clickable elements */
body.cursor-hover #m-cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--fi-gold);
  background: rgba(201,168,76,0.06);
}

body.cursor-hover #m-cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
  background: var(--fi-gold-light);
}

/* ── HEADER PARALLAX OVERLAY ─────────────────────────────────────────── */
#header {
  position: relative;
  overflow: hidden;
}

#header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 0;
  pointer-events: none;
}

#header .container { position: relative; z-index: 1; }

/* Animated gold shimmer line at bottom of hero */
#header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--fi-gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
  0%   { opacity: 0; transform: scaleX(0.4); }
  50%  { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0.4); }
}

/* ── SECTION TITLE GOLD ACCENT ───────────────────────────────────────── */
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 2px;
  background: var(--fi-gold);
  border-radius: 2px;
}

/* ── GLASS CARD — SERVICES ───────────────────────────────────────────── */
.services-block {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px 24px !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.services-block:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 12px 36px rgba(201,168,76,0.10), 0 4px 16px rgba(0,0,0,0.4);
}

/* ── GLASS CARD — PORTFOLIO THUMBNAILS ───────────────────────────────── */
.portfolio-thumbnail {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.portfolio-thumbnail:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 10px 32px rgba(201,168,76,0.12), 0 4px 14px rgba(0,0,0,0.5);
}

.portfolio-thumbnail img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
}

.portfolio-thumbnail:hover img {
  transform: scale(1.04);
}

/* ── GLASS CARD — ABOUT DESCRIPTION ─────────────────────────────────── */
.about-descr {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-descr:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ── GLASS CARD — CONTACT BLOCK ──────────────────────────────────────── */
.contact-block1 {
  background: linear-gradient(135deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 40px;
  transition: border-color 0.3s ease;
}

.contact-block1:hover {
  border-color: rgba(201,168,76,0.2);
}

/* ── AMBIENT GOLD GLOW — section accents ─────────────────────────────── */
#about::before,
#services::before,
#portfolio::before,
#contact::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

#about, #services, #portfolio, #contact {
  position: relative;
}

#about > .container,
#services > .container,
#portfolio > .container,
#contact > .container {
  position: relative;
  z-index: 1;
}

/* ── SOCIAL ICON HOVER GLOW ──────────────────────────────────────────── */
.list-social li a i,
#footer .socials-media ul li a {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.list-social li a i:hover,
#footer .socials-media ul li a:hover {
  color: var(--fi-gold) !important;
  text-shadow: 0 0 12px rgba(201,168,76,0.5);
}

/* ── NAV LINK ACTIVE UNDERLINE ───────────────────────────────────────── */
nav ul li a {
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--fi-gold);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}
