/* ===== YARRASWIM.CO - River Blue Design System ===== */
:root {
  --river-deep: #1a5276;
  --river-mid: #2980b9;
  --river-light: #5dade2;
  --river-pale: #89bde0;
  --river-wash: #d6eaf8;
  --river-foam: #eaf2f8;
  --river-white: #f8fbfe;
  --sand: #f5e6ca;
  --sand-dark: #d4a84b;
  --eucalyptus: #27ae60;
  --text-dark: #1c2833;
  --text-mid: #34495e;
  --text-light: #7f8c8d;
  --shadow: rgba(26, 82, 118, 0.12);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--river-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(180deg, var(--river-deep) 0%, var(--river-mid) 50%, var(--river-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 120px;
  margin-bottom: 30px;
  animation: float 2s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

.preloader-text {
  color: white;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* River animation */
.river-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 300%;
  height: 100%;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave:nth-child(1) {
  animation: wave-flow 4s linear infinite;
  opacity: 0.3;
}
.wave:nth-child(2) {
  animation: wave-flow 6s linear infinite reverse;
  opacity: 0.2;
  bottom: 10px;
}
.wave:nth-child(3) {
  animation: wave-flow 5s linear infinite;
  opacity: 0.15;
  bottom: 20px;
}

/* Flowing particles */
.river-particles {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 140px;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle-flow linear infinite;
}

@keyframes wave-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(33.33%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes particle-flow {
  0% {
    transform: translate(-20px, 0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  90% {
    opacity: 0.6;
    transform: translate(calc(100vw + 20px), var(--drift)) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(calc(100vw + 40px), var(--drift)) scale(0);
  }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

.preloader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.preloader-progress-bar {
  height: 100%;
  background: white;
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 40px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-logo {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  background: var(--river-wash);
  color: var(--river-mid);
}

.nav-cta {
  background: white !important;
  color: var(--river-deep) !important;
  font-weight: 600 !important;
}

.navbar.scrolled .nav-cta {
  background: var(--river-mid) !important;
  color: white !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-dark);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--river-mid) 40%, var(--river-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,128C672,128,768,160,864,170.7C960,181,1056,171,1152,149.3C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom center;
  background-size: cover;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 span {
  display: block;
  font-weight: 300;
  font-size: 0.6em;
  opacity: 0.9;
  margin-bottom: 8px;
}

.hero-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  border: 2px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: white;
  color: var(--river-deep);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-blue {
  background: var(--river-mid);
  color: white;
}

.btn-blue:hover {
  background: var(--river-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  background: var(--river-wash);
  color: var(--river-mid);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--river-deep);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-mid);
  font-size: 1.1rem;
}

/* ===== FEATURED SPOTS GRID ===== */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.spot-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.spot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 82, 118, 0.18);
}

.spot-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--river-wash);
}

.spot-card-body {
  padding: 24px;
}

.spot-card-body h3 {
  font-size: 1.2rem;
  color: var(--river-deep);
  margin-bottom: 8px;
}

.spot-card-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.spot-tag {
  display: inline-block;
  background: var(--river-foam);
  color: var(--river-mid);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 6px;
}

.spot-tag.green {
  background: #e8f8f0;
  color: var(--eucalyptus);
}

/* ===== FEATURES / PROGRAMS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--river-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--river-deep);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ===== ABOUT / SPLIT SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow);
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  background: var(--river-wash);
}

.split-text h2 {
  font-size: 2rem;
  color: var(--river-deep);
  margin-bottom: 16px;
}

.split-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.split-text ul {
  list-style: none;
  margin-bottom: 24px;
}

.split-text ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-mid);
}

.split-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--river-wash);
  border: 3px solid var(--river-mid);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--river-foam);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 3rem;
  color: var(--river-pale);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--river-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--river-mid);
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--river-deep), var(--river-mid));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SAFETY PAGE ===== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.safety-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 20px var(--shadow);
  border-left: 4px solid var(--river-mid);
}

.safety-card h3 {
  font-size: 1.15rem;
  color: var(--river-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.safety-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.safety-card.warning {
  border-left-color: #e74c3c;
}

.safety-card.warning h3 {
  color: #c0392b;
}

/* ===== PROGRAMS PAGE ===== */
.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 82, 118, 0.18);
}

.program-card-img {
  width: 200px;
  min-height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--river-wash);
}

.program-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-card-body h3 {
  font-size: 1.2rem;
  color: var(--river-deep);
  margin-bottom: 10px;
}

.program-card-body p {
  color: var(--text-mid);
  font-size: 0.93rem;
  margin-bottom: 16px;
}

.program-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.program-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--river-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--river-white);
  clip-path: ellipse(70% 100% at 50% 100%);
}

.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TIMELINE (About page) ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--river-wash);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--river-mid);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--river-wash);
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: calc(50% - 40px);
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px var(--shadow);
}

.timeline-content h3 {
  color: var(--river-mid);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.timeline-content h4 {
  color: var(--river-deep);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-mid);
  font-size: 0.93rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--river-deep);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: white;
  font-weight: 800;
}

.stat-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.93rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--river-wash);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--river-mid);
  box-shadow: 0 0 0 4px rgba(41, 128, 185, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--river-deep);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-logo {
  height: 35px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.93rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-socials a:hover {
  background: var(--river-mid);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--river-wash) 0%, var(--river-foam) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--river-pale);
  font-size: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .spots-grid,
  .features-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .program-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 0 0 16px 16px;
  }
  .nav-links.open a {
    color: var(--text-dark);
    padding: 12px 16px;
  }
  .spots-grid,
  .features-grid,
  .testimonials-grid,
  .safety-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .program-card { flex-direction: column; }
  .program-card-img { width: 100%; min-height: 180px; }
  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(odd) { flex-direction: row; text-align: left; padding-left: 50px; }
  .timeline-content { width: 100%; }
}
