/* Style for Eloise Spee Portfolio - Pure Static CSS (No Tailwind, No Frameworks) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Archivo+Black&family=JetBrains+Mono:wght@400;500&display=swap');

/* CSS Reset & Variables */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-color: #d8d4d0;         /* Warm taupe-grey */
  --text-color: #2b2b2b;       /* Dark charcoal */
  --accent-color: #ce3a74;     /* Magenta/pink accent */
  --white: #ffffff;
  --cream: #fdfcf7;            /* Off-white */
  --card-bg: #eae5e0;          /* Slightly darker/lighter grey for cards */
  --placeholder-border: rgba(0, 0, 0, 0.08);
  --font-title: 'Archivo Black', 'Archive Black', 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-color);
}

body {
  overflow-x: hidden;
  padding-top: 70px; /* Spacer for fixed header */
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--bg-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--text-color);
}

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-color);
}

.nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

/* Container spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Editorial Section Titles */
.section-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 2.5rem;
  text-transform: capitalize;
}

.title-center {
  text-align: center;
}

.title-right {
  text-align: right;
}

.title-left {
  text-align: left;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 85vh;
  background-color: #b0a9a3;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero background image configuration */
.hero-artwork {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #958172;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35)), url('assets/images/hero_bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

/* Hide stylized vector CSS Art decorations when using a real background image */
.hero-artwork::before {
  display: none;
}

.hero-yoga-group {
  display: none;
}

.yoga-mat {
  width: 180px;
  height: 4px;
  background-color: #8c8278;
  position: relative;
  border-radius: 2px;
}

.yoga-mat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 100px;
  height: 60px;
  background: #111111;
  clip-path: polygon(45% 0%, 55% 0%, 50% 15%, 52% 40%, 65% 100%, 35% 100%);
}

.yoga-mat:nth-child(2)::after {
  height: 75px;
  left: 50px;
  clip-path: polygon(50% 0%, 60% 15%, 55% 45%, 58% 70%, 75% 100%, 45% 100%);
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 8.5rem);
  color: var(--cream);
  z-index: 10;
  text-align: center;
  letter-spacing: -0.03em;
  pointer-events: none;
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  background-color: var(--bg-color);
  padding: 6rem 1.5rem;
}

.about-text-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-greeting {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-transform: none;
  letter-spacing: -0.01em;
}

.about-body-paragraph {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 2rem;
  text-align: center;
}

/* Horizontal line spacer */
.section-divider {
  border: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
  margin: 3rem 0;
}

/* Carousel / Slider Container */
.carousel-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  min-width: 100%;
  padding: 0 0.5rem;
}

/* Specific abstract graphic visual elements for carousel slides */
.art-slide {
  aspect-ratio: 3/4;
  background-color: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Spiral Abstract Slide 1 */
.art-slide-spiral {
  background: #f1ebd9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spiral-graphics {
  width: 80%;
  height: 85%;
  background: repeating-linear-gradient(
    45deg,
    #ce3a74,
    #ce3a74 15px,
    #4a154b 15px,
    #4a154b 30px,
    #e11d48 30px,
    #e11d48 45px
  );
  border-radius: 40px;
  transform: rotate(-10deg);
  opacity: 0.85;
  clip-path: ellipse(45% 48% at 50% 50%);
}

/* Sunset Typography Slide 2 */
.art-slide-sunset {
  background: linear-gradient(to top, #ff7e5f, #feb47b);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sunset-word {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 4rem;
  color: var(--cream);
  letter-spacing: -0.05em;
  transform: scaleY(1.6) rotate(-5deg);
  opacity: 0.9;
  text-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Blue Ribbon Slide 3 */
.art-slide-ribbon {
  background: #1d4ed8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ribbon-graphics {
  width: 75%;
  height: 80%;
  background: radial-gradient(circle, transparent 20%, #1d4ed8 20%, #1d4ed8 21%, transparent 21%, transparent),
              radial-gradient(circle, transparent 20%, #1d4ed8 20%, #1d4ed8 21%, transparent 21%, transparent) 50px 50px;
  background-size: 100px 100px;
  background-color: #f43f5e;
  transform: rotate(15deg);
  border-radius: 8px;
}

/* Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: background 0.2s, opacity 0.2s;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: var(--text-color);
}

/* Image Placeholders (Editorial Styling) */
.editorial-placeholder {
  background-color: var(--card-bg);
  border: 1px solid var(--placeholder-border);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.editorial-placeholder:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

.placeholder-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.placeholder-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.4);
}

.placeholder-dims {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.3);
}

.placeholder-body {
  margin: auto 0;
  padding: 2rem 0;
}

.placeholder-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.placeholder-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

.placeholder-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.04);
  padding-top: 0.8rem;
  margin-top: 1rem;
}

.placeholder-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}

.placeholder-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
}

/* Billboards Grid Layout */
.billboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

/* CSS Art for Billboard 1 (Outdoor Metal Scaffold) */
.billboard-scaffold {
  aspect-ratio: 4/3;
  background: linear-gradient(to top, #7e9bb4 0%, #b2c9db 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.billboard-structure {
  width: 82%;
  height: 64%;
  background-color: #222222;
  border: 12px solid #111111;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.billboard-poster {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: relative;
}

/* Bald person silhouette on poster */
.billboard-poster::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 55%;
  height: 52%;
  background: #2b2b2b;
  border-radius: 50% 50% 0 0;
}

.billboard-logo {
  position: absolute;
  bottom: 12px;
  right: 15px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  color: #111111;
  letter-spacing: -0.05em;
  z-index: 5;
}

.billboard-poster-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(0.7rem, 2vw, 1.4rem);
  color: #c0392b;
  text-align: center;
  margin-top: -30%;
  line-height: 1.15;
  letter-spacing: -0.01em;
  z-index: 5;
  max-width: 90%;
}

.billboard-legs {
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: -1;
}

.billboard-leg {
  width: 10px;
  height: 100%;
  background-color: #333333;
}

/* Postered concrete wall */
.concrete-wall-section {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #bbb 25%, #999 25%, #999 50%, #bbb 50%, #bbb 75%, #999 75%, #999 100%);
  background-size: 20px 20px;
  background-color: #aaa;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  border-radius: 4px;
}

.wall-poster {
  width: 44%;
  height: 80%;
  background: #fdfdfd;
  box-shadow: 2px 5px 15px rgba(0,0,0,0.1);
  transform: rotate(-1.5deg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0,0,0,0.06);
}

.wall-poster:nth-child(2) {
  transform: rotate(2deg);
}

.wall-poster-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(0.6rem, 1.5vw, 1.1rem);
  color: #c0392b;
  text-align: center;
  line-height: 1.2;
}

.wall-poster-graphic {
  width: 70%;
  height: 45%;
  background: #333333;
  margin: 0 auto;
  border-radius: 50% 50% 0 0;
}

.wall-poster-footer {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.8rem;
  text-align: right;
  color: #111111;
}

/* 8-Slide Presentation Grid */
.slides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Slide Cards */
.presentation-slide {
  aspect-ratio: 16/9;
  background-color: #eceaea;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 4px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.2s;
}

.presentation-slide:hover {
  transform: translateY(-2px);
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 0.4rem;
  margin-bottom: 0.5rem;
}

.slide-category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.4);
}

.slide-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(0,0,0,0.4);
}

.slide-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--text-color);
  margin-bottom: 0.4rem;
}

.slide-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
}

.slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.slide-author {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(0,0,0,0.35);
}

.slide-on-logo {
  font-weight: 800;
  font-size: 0.75rem;
  font-family: var(--font-title);
  color: rgba(0,0,0,0.7);
}

/* Dynamic design styles for specific slides */
.slide-cloud {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.slide-list ul {
  list-style: none;
}

.slide-list li {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 0.15rem;
  position: relative;
  padding-left: 10px;
}

.slide-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.slide-brand-center {
  background-color: #2b2b2b;
  color: #ffffff;
}

.slide-brand-center .slide-title {
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
}

.slide-brand-center .slide-category,
.slide-brand-center .slide-num,
.slide-brand-center .slide-author,
.slide-brand-center .slide-on-logo {
  color: rgba(255,255,255,0.4);
}

/* Competitor Slide Grid Pattern */
.competitor-diagram {
  width: 100%;
  height: 60px;
  border: 1px dashed rgba(0,0,0,0.1);
  position: relative;
  margin-top: 0.3rem;
  background-color: #f7f6f4;
}

.competitor-label {
  position: absolute;
  font-size: 0.55rem;
  font-weight: bold;
  background-color: #ffffff;
  padding: 1px 4px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Positioning slide quadrants */
.positioning-quadrant {
  width: 100%;
  height: 60px;
  background-color: #f7f6f4;
  border: 1px solid rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  position: relative;
  margin-top: 0.3rem;
}

.positioning-quadrant::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,0.08);
}

.positioning-quadrant::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(0,0,0,0.08);
}

/* Target Audience Split Slide */
.split-runner-slide {
  background: linear-gradient(to right, rgba(255,255,255,0.85), rgba(255,255,255,0.95));
}

/* Tension/Contrast Slide Split */
.tension-contrast {
  display: flex;
  height: 65px;
  margin-top: 0.3rem;
  font-size: 0.55rem;
}

.contrast-col-left {
  width: 45%;
  background: #dbd8d4;
  padding: 4px;
}

.contrast-col-center {
  width: 10%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.5rem;
}

.contrast-col-right {
  width: 45%;
  background: #9d968f;
  color: #fff;
  padding: 4px;
}

/* Tension slide */
.slide-tension-bg {
  background-color: #a79e95;
  color: #fff;
}

.slide-tension-bg .slide-title,
.slide-tension-bg .slide-subtitle {
  color: #fff;
}

.slide-tension-bg .slide-category,
.slide-tension-bg .slide-num,
.slide-tension-bg .slide-author {
  color: rgba(255,255,255,0.5);
}

/* Branded Content Video Player */
.video-player-wrapper {
  width: 100%;
  background-color: #111111;
  aspect-ratio: 16/9.5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Beautiful custom play poster before clicking */
.video-custom-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #59524a, #2a2520);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.video-custom-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

/* CSS Art representing Madrid streets blur in video preview */
.poster-blurred-street {
  position: absolute;
  width: 110%;
  height: 110%;
  background: linear-gradient(to right, rgba(40,35,30,0.4), rgba(10,10,10,0.6)),
              radial-gradient(circle at 70% 30%, #e67e22 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, #3498db 0%, transparent 50%);
  filter: blur(12px);
  z-index: 1;
}

.poster-meta {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  z-index: 2;
  text-align: left;
}

.poster-time {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  z-index: 2;
}

.play-trigger-btn {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease, background-color 0.25s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.video-custom-poster:hover .play-trigger-btn {
  transform: scale(1.1);
  background-color: var(--white);
}

.play-svg-icon {
  width: 28px;
  height: 28px;
  fill: var(--text-color);
  margin-left: 4px;
}

/* Custom Controller Bar (Mock overlays on hover) */
.custom-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem 2rem 1rem 2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-player-wrapper:hover .custom-video-controls {
  opacity: 1;
}

.video-scrub-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.video-scrub-progress {
  width: 35%;
  height: 100%;
  background: var(--accent-color);
  border-radius: 2px;
  position: relative;
}

.video-scrub-progress::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
}

.video-control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-left-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.video-action-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.video-time-indicator {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Orange Slides Grid (Strava Campaign) */
.orange-slides-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.orange-slide {
  aspect-ratio: 16/10;
  background-color: #ff5400; /* Vibrant Orange */
  color: #ffffff;
  border-radius: 3px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.2s;
}

.orange-slide:hover {
  transform: translateY(-2px);
}

.orange-slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.2rem;
}

.orange-slide-category {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.orange-slide-num {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
}

.orange-slide-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.orange-slide-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.15;
  color: #ffffff;
}

.orange-slide-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.2rem;
  line-height: 1.25;
}

.orange-slide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.orange-slide-author {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.6);
}

.orange-slide-strava-logo {
  font-weight: 800;
  font-size: 0.65rem;
  font-family: var(--font-title);
  color: rgba(255,255,255,0.9);
}

/* Distinctive orange slide styles */
.orange-slide-map {
  background-color: #ebf5fb;
  color: #2c3e50;
  border: 1px solid rgba(0,0,0,0.06);
}

.orange-slide-map .orange-slide-title {
  color: #ff5400;
}

.orange-slide-map .orange-slide-category,
.orange-slide-map .orange-slide-num,
.orange-slide-map .orange-slide-author,
.orange-slide-map .orange-slide-strava-logo,
.orange-slide-map .orange-slide-subtitle {
  color: rgba(0,0,0,0.5);
}

.orange-slide-map .orange-slide-header {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.orange-slide-map .orange-slide-footer {
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* CSS Vector Map Art */
.strava-route-map {
  width: 100%;
  height: 40px;
  background: radial-gradient(circle, transparent 20%, #ebf5fb 20%, #ebf5fb 21%, transparent 21%),
              radial-gradient(circle, transparent 20%, #ebf5fb 20%, #ebf5fb 21%, transparent 21%);
  background-size: 15px 15px;
  background-color: #e5e9ec;
  border: 1px solid rgba(0,0,0,0.05);
  margin-top: 0.2rem;
  position: relative;
  overflow: hidden;
}

.strava-orange-line {
  position: absolute;
  width: 80%;
  height: 80%;
  border-bottom: 3px solid #ff5400;
  border-right: 3px solid #ff5400;
  top: 10%;
  left: 10%;
  border-radius: 40% 60% 30% 70%;
}

/* Stil Image Campaign */
.stil-split-image {
  width: 100%;
  aspect-ratio: 16/9.5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--placeholder-border);
}

.split-side {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2.5rem;
}

/* Left Half: Lisbon Cafe with blue tiles */
.split-left-cafe {
  background: linear-gradient(135deg, #dfe4ea, #ced6e0);
}

/* CSS Portuguese Tile Wall Art Pattern */
.portuguese-tiles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, #ced6e0 20%, #ced6e0 21%, transparent 21%),
              radial-gradient(circle, transparent 20%, #ced6e0 20%, #ced6e0 21%, transparent 21%) 25px 25px;
  background-size: 50px 50px;
  background-color: #f1f2f6;
  opacity: 0.6;
  z-index: 1;
}

/* Cafe chair silhouettes */
.cafe-furniture-graphics {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 40%;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.cafe-table {
  width: 50px;
  height: 60px;
  background-color: #6d665f;
  position: relative;
  border-radius: 2px 2px 0 0;
}

.cafe-table::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -15px;
  width: 80px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.cafe-chair {
  width: 32px;
  height: 45px;
  border: 3px solid #6d665f;
  border-bottom: none;
  position: relative;
}

.cafe-chair::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 34px;
  height: 3px;
  background-color: #6d665f;
}

/* Split Image Typography Overlaid */
.campaign-overlay-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 3.4rem);
  line-height: 0.95;
  color: #111111;
  z-index: 10;
  letter-spacing: -0.02em;
}

/* Right Half: Tropical Beach */
.split-right-beach {
  background: linear-gradient(to bottom, #74b9ff, #81ecec);
}

.beach-graphics-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #4a90e2 0%, #a2e8dd 60%, #ffeaa7 100%);
  z-index: 1;
}

/* Silhouette Palm Trees in CSS */
.palm-trees-graphic {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 50%;
  height: 70%;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  opacity: 0.75;
}

.palm-tree {
  width: 8px;
  height: 100%;
  background-color: #27ae60;
  border-radius: 50% 50% 0 0;
  transform: rotate(-10deg);
  transform-origin: bottom center;
  position: relative;
}

.palm-leaves {
  position: absolute;
  top: -15px;
  left: -40px;
  width: 90px;
  height: 30px;
  background-color: #1e824c;
  clip-path: polygon(0 50%, 20% 0, 50% 10%, 80% 0, 100% 50%, 80% 100%, 50% 90%, 20% 100%);
  transform: rotate(15deg);
}

.levis-logo-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background-color: #c0392b; /* Levi's Red */
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.05em;
  padding: 0.4rem 1.1rem;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

/* Walking woman silhouette overlay seamlessly crossing the split */
.seamless-crossing-woman {
  position: absolute;
  bottom: 0;
  left: calc(50% - 60px);
  width: 120px;
  height: 60%;
  z-index: 10;
  pointer-events: none;
  opacity: 0.85;
}

.woman-silhouette {
  width: 100%;
  height: 100%;
  background-color: #111111;
  clip-path: polygon(40% 0%, 55% 0%, 50% 15%, 52% 40%, 65% 70%, 75% 100%, 45% 100%, 35% 70%, 42% 40%);
  position: relative;
}

.woman-laptop-box {
  position: absolute;
  top: 40%;
  left: 55%;
  width: 30px;
  height: 18px;
  background-color: #555555;
  border-radius: 2px;
  transform: rotate(-10deg);
}

/* Contact Form Section */
.contact-section {
  background-color: var(--bg-color);
  padding: 5rem 1.5rem;
}

.contact-card {
  max-width: 820px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: #2b2b2b;
  display: flex;
  align-items: center;
}

.form-label .required-asterisk {
  color: #e11d48;
  margin-left: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 1.1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
}

.form-sub-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 0.2rem;
}

.submit-btn {
  align-self: flex-start;
  background-color: #d1ccd6; /* Soft grey/lavender from WordPress default submit */
  background: linear-gradient(to bottom, #ece9ec 0%, #d1ccd6 100%);
  color: #555555;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.submit-btn:hover {
  background: linear-gradient(to bottom, #fdfbfe 0%, #dad5df 100%);
  color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Footer Section */
.footer {
  width: 100%;
  background-color: var(--white);
  padding: 3rem 4%;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.footer-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}

/* Professional Production Static Image Configurations */
.art-slide,
.billboard-scaffold,
.concrete-wall-section,
.presentation-slide,
.orange-slide,
.stil-split-image {
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.art-slide:hover,
.billboard-scaffold:hover,
.concrete-wall-section:hover,
.presentation-slide:hover,
.orange-slide:hover,
.stil-split-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure absolute-positioned images crop inside rounded frames perfectly */
.loaded-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 2 !important;
  display: block !important;
}

/* Responsive Rules for Mobile/Tablet */
@media (max-width: 1024px) {
  .orange-slides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .slides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  .header {
    height: 60px;
    padding: 0 5%;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .nav {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .carousel-slide-group {
    grid-template-columns: 1fr;
  }
  .billboard-grid {
    grid-template-columns: 1fr;
  }
  .orange-slides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slides-grid {
    grid-template-columns: 1fr;
  }
  .stil-split-image {
    flex-direction: column;
    aspect-ratio: auto;
  }
  .split-side {
    width: 100%;
    min-height: 280px;
    padding: 2rem;
  }
  .seamless-crossing-woman {
    display: none; /* Hide the overlapping crossing overlay on mobile since panels are stacked */
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 480px) {
  .nav {
    display: none; /* Mobile menu collapsed or simplified */
  }
  .header {
    justify-content: center;
  }
  .orange-slides-grid {
    grid-template-columns: 1fr;
  }
}
