/* =====================================================
ROLLCYCLING SITE STYLE
Official Website Stylesheet
Used by:
- about.html
- features.html
- terms.html
- fixsupport.html
- rollform.html
===================================================== */

/* =====================================================
RESET
===================================================== */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

/* =====================================================
BODY
===================================================== */

body{

  margin:0;

  background:
  linear-gradient(
    180deg,
    #0b1020 0%,
    #111827 100%
  );

  color:#f8fafc;

  font-family:
  Arial,
  Helvetica,
  sans-serif;

  line-height:1.7;

  overflow-x:hidden;
}

/* =====================================================
TOP NAVIGATION
===================================================== */

.top-menu{

  width:100%;

  display:flex;

  justify-content:center;

  align-items:center;

  flex-wrap:wrap;

  gap:14px;

  padding:14px 18px;

  background:
  rgba(8,12,20,.72);

  border-bottom:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(10px);

  position:sticky;

  top:0;

  z-index:99999;

  box-shadow:
  0 8px 22px rgba(0,0,0,.28);
}

.top-menu a{

  display:inline-block;

  padding:10px 16px;

  border-radius:12px;

  background:
  rgba(255,255,255,.05);

  border:
  1px solid rgba(255,255,255,.08);

  color:#f8fafc;

  text-decoration:none;

  font-weight:700;

  letter-spacing:.3px;

  transition:
  transform .18s ease,
  background .18s ease,
  color .18s ease,
  box-shadow .18s ease;
}

.top-menu a:hover{

  transform:translateY(-2px);

  background:
  rgba(255,255,255,.12);

  color:#38bdf8;

  box-shadow:
  0 10px 22px rgba(0,0,0,.28);
}

/* =====================================================
MAIN WRAP
===================================================== */

.wrap{

  width:min(1100px,92vw);

  margin:auto;

  padding:
  40px 0
  100px;
}

/* =====================================================
HERO
===================================================== */

.hero{

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:24px;

  padding:
  60px 46px;

  box-shadow:
  0 14px 44px rgba(0,0,0,.42);

  backdrop-filter:blur(8px);

  margin-bottom:60px;

  text-align:center;
}

.hero h1{

  margin:
  0 0 18px;

  font-size:52px;

  letter-spacing:2px;

  color:#38bdf8;
}

.hero p{

  font-size:18px;

  line-height:1.95;

  opacity:.94;

  max-width:920px;

  margin:
  0 auto 24px;
}

/* =====================================================
CONTENT CARDS
===================================================== */

.card{

  background:
  rgba(255,255,255,.035);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:22px;

  padding:
  38px;

  margin-bottom:48px;

  box-shadow:
  0 10px 28px rgba(0,0,0,.32);
}

/* =====================================================
ABOUT STORY FLOW
===================================================== */

.story p{

  margin-bottom:30px;

  font-size:17px;

  line-height:1.95;

  color:#e7edf6;
}

/* =====================================================
STAGE SECTIONS
===================================================== */

.stage{

  margin-top:70px;
}

.stage p{

  margin-bottom:28px;

  font-size:17px;

  line-height:1.95;
}

/* =====================================================
HEADINGS
===================================================== */

h1,h2,h3,h4{
  font-weight:800;
}

h2{

  margin:
  0 0 34px;

  color:#facc15;

  font-size:36px;

  letter-spacing:.4px;

  border-left:
  5px solid #facc15;

  padding-left:18px;
}

h3{

  margin:
  60px 0 28px;

  color:#38bdf8;

  font-size:28px;

  letter-spacing:.3px;
}

p{

  margin:0 0 18px;
}

/* =====================================================
LISTS
===================================================== */

ul{

  padding-left:24px;
}

li{

  margin-bottom:14px;
}

/* =====================================================
LINKS
===================================================== */

a{

  color:#38bdf8;

  text-decoration:none;
}

a:hover{

  text-decoration:underline;
}

/* =====================================================
LANGUAGE BUTTONS
===================================================== */

.lang-switch{

  margin-top:26px;
}

.lang-switch a{

  display:inline-block;

  margin-right:10px;
  margin-bottom:10px;

  padding:10px 16px;

  border-radius:12px;

  text-decoration:none;

  font-weight:700;

  color:#fff;

  transition:
  transform .18s ease,
  opacity .18s ease;
}

.lang-switch a:hover{

  transform:translateY(-2px);

  opacity:.92;

  text-decoration:none;
}

.lang-en{
  background:#0ea5e9;
}

.lang-es{
  background:#dc2626;
}

.lang-fr{
  background:#2563eb;
}

.lang-it{
  background:#16a34a;
}

/* =====================================================
SPECIAL TEXT
===================================================== */

.highlight{

  color:#4ade80;

  font-weight:700;
}

.warning{

  color:#f87171;

  font-weight:700;
}

/* =====================================================
WARNING CARD
===================================================== */

.warning-card{

  border-left:
  5px solid #ef4444;

  background:
  rgba(239,68,68,.08);
}

/* =====================================================
FOOTER
===================================================== */

.footer{

  margin-top:60px;

  text-align:center;

  opacity:.72;

  font-size:14px;

  line-height:1.8;

  padding-bottom:20px;
}

/* =====================================================
SEPARATORS
===================================================== */

.sep{

  width:100%;

  height:1px;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.12),
    transparent
  );

  margin:
  60px 0;
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:900px){

  .hero{

    padding:
    46px 30px;
  }

  .card{

    padding:30px;
  }

  h2{

    font-size:30px;
  }

  h3{

    font-size:24px;
  }
}

@media(max-width:700px){

  .top-menu{

    gap:10px;

    padding:12px;
  }

  .top-menu a{

    width:100%;

    text-align:center;
  }

  .wrap{

    width:94vw;
  }

  .hero{

    padding:
    38px 22px;
  }

  .hero h1{

    font-size:34px;
  }

  .hero p{

    font-size:16px;
  }

  .card{

    padding:24px;
  }

  h2{

    font-size:26px;

    padding-left:14px;
  }

  h3{

    font-size:22px;
  }

  p{

    font-size:15px;
  }
}