/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

:root {
  --bg: #FDFCF8;
  --color-black-rgb: 0, 0, 0;
  /* RGB tuple for Elles Bailey style variables */
  --alpha-bg: 0.4;
  /* Alpha value as seen in reference */
  --text-head: #2A2725;
  /* Slightly deeper Charcoal */
  --text-body: #4F4B48;
  /* Slightly deeper Bronze */
  --accent: #C5A059;
  --accent-gradient: linear-gradient(135px, #D4B475 0%, #C5A059 100%);
  --white-glass: rgba(255, 255, 255, 0.72);
  /* More translucent for better glass feel */
  --shadow: rgba(0, 0, 0, 0.04);
  --border-glass: rgba(255, 255, 255, 0.4);
  --section-pad: 80px;
  /* More compact flow */
  --font-head: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.8;
  /* Fixed background that shows 'all the way thru' */
  background-image: url("../images/pashag.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--text-head);
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* UTILS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

.main-content-container {
  background: rgba(var(--color-black-rgb), var(--alpha-bg));
  padding: 40px;
  /* More compact vertical/horizontal padding */
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  /* Global light text inside the box */
  position: relative;
  z-index: 5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.main-content-container p,
.main-content-container span,
.main-content-container li,
.main-content-container h1,
.main-content-container h2,
.main-content-container h3,
.main-content-container h4,
.main-content-container a:not(.btn-more):not(.project-card) {
  color: #fff !important;
}

/* Ensure accent highlights still pop */
.main-content-container .accent-text,
.main-content-container .subtitle {
  color: var(--accent) !important;
}

.section-title {
  font-size: 25px;
  letter-spacing: 0.35em;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-head);
  margin-bottom: 40px;
  /* Tighter gap after title */
}

@media (max-width: 600px) {
  .section-title {
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 0.25em;
  }
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(253, 252, 248, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), background 0.3s ease;
  will-change: transform;
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav.nav-scrolled {
  background: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo {
  letter-spacing: 0.3em;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-head);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo-link:hover .logo {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-head);
  font-size: 24px;
  cursor: pointer;
  z-index: 60;
}

.menu a {
  color: var(--text-head);
  text-decoration: none;
  margin-left: 24px;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 1;
  /* Ensure full visibility */
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  /* Slightly bolder for better visibility */
}

.menu a:hover,
.menu a.active {
  opacity: 1;
  color: #000;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HERO */
.hero {
  height: 100vh;
  /* background comes from body attachment fixed */
}

/* PARALLAX STRIP */
.parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  /* Ground text at the bottom */
  justify-content: center;
  padding: 0 0 120px;
  /* Space from the bottom edge */
  /* background comes from body */
}

/* We don't need .parallax-bg anymore because background-attachment: fixed on .parallax 
   provides the 'True Parallax' effect the client wants */
.parallax-bg {
  display: none;
}

/* removed dark wash for cleaner hero text */
.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.parallax-box {
  position: relative;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  text-align: center;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  max-width: none;
  animation: fadeInUp 1.2s var(--transition);
}

.parallax-box h1 {
  font-size: 42px;
  letter-spacing: 0.15em;
  color: var(--text-head);
  margin-bottom: 8px;
}

.parallax-box h2 {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.35em;
  font-weight: 300;
  color: var(--text-body);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FEATURE ROW */
.feature {
  padding: var(--section-pad) 0;
  background: transparent;
}

.feature-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  /* Poster left, Video right */
  align-items: center;
  gap: 80px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 40px 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  width: 100%;
  animation: fadeInUp 1.2s var(--transition);
}

.feature-left,
.feature-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poster {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
  /* Natural aspect ratio */
  box-shadow: 0 15px 45px var(--shadow);
  border-radius: 4px;
  filter: sepia(0.05) saturate(1.1) contrast(1.02);
}

/* DUAL FEATURE (Equal Height) */
.dual-feature {
  padding: 0 0 var(--section-pad);
  background: transparent;
}

.dual-feature-inner {
  display: grid;
  grid-template-columns: 25% 75%;
  /* Fixed 30/70 split */
  gap: 15px;
  align-items: stretch;
  /* Match heights perfectly */
  width: 100%;
}

.dual-feature-left,
.dual-feature-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Allow children to fill vertical space */
  overflow: hidden;
  /* For zoom effect */
}

.dual-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  /* Force height matching */
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 45px var(--shadow);
  border: 1px solid rgba(197, 160, 89, 0.1);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.dual-feature-left:hover .dual-img {
  transform: scale(1.08);
}

.dual-feature .video-shell {
  width: 100%;
  height: auto;
  /* Let aspect ratio define height */
  margin: 0;
}

.dual-feature-left {
  display: flex;
  align-self: stretch;
  /* Match height of right column */
}

.video-shell {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Cinematic standard */
  border: 1px solid rgba(197, 160, 89, 0.15);
  background: #000;
  display: block;
  overflow: hidden;
  box-shadow: 0 15px 45px var(--shadow);
  border-radius: 4px;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
}

/* ON DECK */
.ondeck {
  padding: var(--section-pad) 0;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 5;
}

.on-deck-inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 40px 0;
  /* Reduced to sit well in container */
  border-radius: 0;
  box-shadow: none;
  border: none;
  width: 100%;
  animation: fadeInUp 1.2s var(--transition);
}

.ondeck h2.section-title {
  margin-bottom: 64px;
}

.deck-grid-home {
  margin-top: 0;
}

.view-more-container {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.btn-more {
  display: inline-block;
  padding: 18px 56px;
  background: var(--text-head);
  /* Unified Black Background */
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  font-weight: 600;
  border-radius: 4px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-more:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
}

/* Ensure Home page button follows same style */
.on-deck-inner .btn-more,
.view-more-container .btn-more {
  background: var(--text-head);
  color: #fff;
  border: none;
}

.deck-grid {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.deck-item img {
  height: 360px;
  width: auto;
  opacity: 0.88;
  transition: transform 180ms ease, opacity 180ms ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.deck-item img:hover {
  transform: translateY(-6px);
  opacity: 1;
}

/* Hide mobile footer on desktop - MUST BE ABOVE MEDIA QUERY */
.menu-footer {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dual-feature-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dual-img {
    height: 400px;
    /* Natural height on mobile */
  }

  .parallax-box {
    padding: 34px 28px;
  }

  /* MOBILE MENU */
  .menu-toggle {
    display: block;
    color: var(--accent);
    /* Burger icon in Golden Tan */
  }

  .nav {
    padding: 14px 20px;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    transition: right 0.3s ease-in-out;
    z-index: 55;
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 15px var(--shadow);
  }

  .menu.active {
    right: 0;
  }

  .menu a {
    margin: 0;
    margin-bottom: 32px;
    font-size: 16px;
    letter-spacing: 0.2em;
    width: 100%;
  }

  /* Compact padding for the main box on phones */
  @media (max-width: 600px) {
    .main-content-container {
      padding: 20px;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .feature-inner {
      gap: 32px;
    }

    .subpage-header {
      padding: 16px 0;
    }
  }

  .menu-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }

  .menu-phone {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--text-head);
    text-decoration: none;
    opacity: 0.9;
    font-weight: 500;
  }

  .menu-phone i {
    margin-right: 10px;
    font-size: 12px;
    color: var(--accent);
  }

  .menu-socials {
    display: flex;
    gap: 20px;
  }

  .menu-socials a {
    margin: 0 !important;
    font-size: 20px !important;
    width: auto !important;
    opacity: 1;
    color: var(--accent) !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide mobile footer in portrait view on small screens */
  @media (orientation: portrait) and (max-width: 480px) {
    .menu-footer {
      display: none;
    }
  }
}




/* LORE PAGE */
.lore-section {
  padding: var(--section-pad) 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: transparent;
  position: relative;
}

.lore-container {
  width: 100%;
  position: relative;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  box-shadow: none;
  animation: fadeInUp 1.2s var(--transition);
}

@media (max-width: 900px) {
  .lore-container {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .lore-container {
    padding: 0;
    /* Let main-content-container handle it */
    gap: 32px;
  }
}

.lore-left {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.lore-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.lore-container p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  font-weight: 400;
}

.lore-emphasis {
  font-size: 18px;
  color: var(--text-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 12px 0;
  display: block;
  text-align: left;
}

.lore-highlight {
  color: #fff;
  font-weight: 500;
  font-style: italic;
  opacity: 1;
}

.lore-list {
  margin: 0;
  padding: 32px;
  list-style: none;
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.lore-list li {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-left: 2px solid #000;
  padding-left: 16px;
}

.lore-outro {
  grid-column: 1 / -1;
  margin-top: 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.lore-outro p {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-head);
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  margin-top: auto;
  background: var(--white-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 10;
}

.footer p {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-head);
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.8;
}

/* CONTACT PAGE */
.contact-section {
  padding: var(--section-pad) 0;
  min-height: 80vh;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  width: 100%;
  position: relative;
  z-index: 2;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  animation: fadeInUp 1.2s var(--transition);
}

.contact-left h2,
.contact-right h2 {
  font-size: 14px;
  letter-spacing: 0.25em;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--accent);
  /* Clearer border */
  color: var(--text-head);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  border-radius: 6px;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--text-head);
  background: #fff;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.captcha-group {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.9);
  /* Opaque White */
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.captcha-group label {
  color: #000 !important;
  /* Force Black */
  font-weight: 600;
  opacity: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.captcha-group .form-input {
  max-width: 140px;
  text-align: center;
  background: #fff;
  border-color: #000;
  color: #000 !important;
  /* Force Black Input Text */
  font-weight: 600;
}

.captcha-group .form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.btn-submit {
  background: var(--text-head);
  /* Unified Black Background */
  color: #fff;
  border: none;
  padding: 18px 56px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
  transition: var(--transition);
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.info-block h3 {
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-block p,
.info-block a {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  text-decoration: none;
  font-weight: 400;
  display: block;
}

.info-block a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  font-size: 24px;
  color: var(--accent);
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--text-head);
  transform: translateY(-3px);
}

.map-section-outer {
  padding: var(--section-pad) 0 0;
  background: transparent;
}

.map-full-width {
  width: 100%;
}

.map-wrapper {
  width: 100%;
  background: black;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 500px;
  display: block;
  filter: grayscale(0.6) invert(0.9) hue-rotate(180deg) brightness(0.85) contrast(1.1);
  opacity: 0.85;
  transition: all 0.6s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0.1) invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(1.1);
  opacity: 1;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .contact-container {
    gap: 40px;
  }
}

.subpage-header {
  padding: 24px 0;
  /* More compact header */
  background: transparent;
  border-bottom: none;
  position: relative;
  z-index: 10;
  width: 100%;
}

.subpage-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centering content */
  text-align: center;
  gap: 16px;
}

.subpage-header .section-title {
  font-size: 25px;
  letter-spacing: 0.2em;
  color: var(--text-head);
  margin: 0;
  font-weight: 700;
}

.breadcrumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centering items */
  gap: 12px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--text-body);
  opacity: 0.5;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--accent);
}

.breadcrumb .sep {
  opacity: 0.3;
}

.breadcrumb .current {
  font-weight: 700;
}


/* PROJECTS PAGE */
.projects-section {
  padding: 60px 0 160px;
  min-height: 80vh;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card:nth-child(1) {
  animation-delay: 0.1s;
}

.project-card:nth-child(2) {
  animation-delay: 0.2s;
}

.project-card:nth-child(3) {
  animation-delay: 0.3s;
}

.project-card:nth-child(4) {
  animation-delay: 0.4s;
}

.project-media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--shadow);
  border-radius: 8px 8px 0 0;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  filter: sepia(0.05) saturate(1.1);
}

.project-card:hover .project-media {
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.25);
}

.project-card:hover .project-media img {
  transform: scale(1.08);
}

.project-info {
  margin-top: 0;
  padding: 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  /* Subtle dark wash for separation within the box */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

.project-info h3 {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.project-info .subtitle {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  color: #fff;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .projects-section {
    padding: 40px 0;
  }
}

/* DearFlip Z-Index Fix */
.df-container {
  z-index: 9999 !important;
}