/* Mokko Theme Integration specifically for Eco-Brique New Pages */

:root {
  --mokko-bg: #111111;
  --mokko-text: #ffffff;
  --mokko-accent-1: #22d3ee;
  --mokko-accent-2: #4ade80;
  --mokko-border: rgba(255,255,255,0.1);
  --mokko-gray: #888888;
}

body.mokko-page {
  background-color: var(--mokko-bg);
  color: var(--mokko-text);
  font-family: inherit; /* Inherits whatever fonts index.html is using, maybe Inter/San Francisco */
}

/* =========================================
   Typography
========================================= */
.mokko-hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.mokko-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--mokko-gray);
  max-width: 800px;
  line-height: 1.5;
}

.mokko-section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.text-accent {
  background: linear-gradient(135deg, var(--mokko-accent-1), var(--mokko-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   Layout Grids
========================================= */
.mokko-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 4vw;
}

.mokko-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mokko-full-img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mokko-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.mokko-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mokko-img-wrapper:hover img {
  transform: scale(1.05);
}

/* =========================================
   Animations (GSAP Setup)
========================================= */
.reveal-text-wrap {
  overflow: hidden;
}

.reveal-text {
  display: inline-block;
  transform: translateY(110%);
}

.reveal-img {
  opacity: 0;
  transform: scale(0.95);
}

/* =========================================
   Mokko Specific Components
========================================= */
/* Marquee */
.mokko-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
  background: #1a1a1a;
  border-top: 1px solid var(--mokko-border);
  border-bottom: 1px solid var(--mokko-border);
  white-space: nowrap;
}

.mokko-marquee {
  display: inline-block;
  white-space: nowrap;
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--mokko-border);
}

/* Contact Form */
.mokko-contact-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.mokko-input-group {
  position: relative;
}

.mokko-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--mokko-border);
  color: var(--mokko-text);
  font-size: 1.5rem;
  padding: 1rem 0;
  transition: border-color 0.3s ease;
}

.mokko-input:focus {
  outline: none;
  border-bottom-color: var(--mokko-accent-1);
}

.mokko-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.mokko-submit {
  align-self: flex-start;
  padding: 1.5rem 4rem;
  background: var(--mokko-text);
  color: var(--mokko-bg);
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mokko-submit:hover {
  transform: translateY(-5px);
  background: var(--mokko-accent-1);
  color: #fff;
}

.mokko-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mokko-info-list li {
  margin-bottom: 2rem;
}

.mokko-info-list h4 {
  font-size: 1rem;
  color: var(--mokko-gray);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mokko-info-list p, .mokko-info-list a {
  font-size: 1.5rem;
  color: var(--mokko-text);
  text-decoration: none;
  font-weight: 500;
}

/* Stats / Personal Page */
.mokko-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--mokko-border);
  padding-top: 3rem;
  margin-top: 5rem;
}

.mokko-stat-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--mokko-accent-2);
}

.mokko-stat-label {
  font-size: 1.2rem;
  color: var(--mokko-gray);
  margin-top: 0.5rem;
}

/* Padding Utilities */
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.mt-50 { margin-top: 50px; }
