
/* ========================================
   GENERAL
   ======================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #FF46A2;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}


/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: absolute;
  top: 15px;
  left: 15px;

  display: flex;
  align-items: center;
  gap: 3px;

  width: fit-content;
  z-index: 100;
}

/* The dropdown menu */
#menu1 {
  width: auto;
  min-width: 90px;

  display: inline-block;

  padding: 4px 8px;
  margin: 0;

  font-family: Times, serif;
  font-size: 12px;
  font-style: normal;

  color: #000000;
  background-color: #FFFFFF;

  border: 1px solid #000000;
  border-radius: 20px;

  cursor: pointer;
}

/* Go button */
  #btnmenu1 {
    width: auto;
  
    display: inline-block;
  
    padding: 2px 5px;
    margin: 0;
  
    font-family: Times, serif;
    font-size: 12px;
  
    color: #000000;
    background-color: #FFFFFF;
  
    border: 1px solid #000000;
    border-radius: 2px;
  
    cursor: pointer;
  }


/* ========================================
   HEADER
   ======================================== */

header {
  padding: 30px 0;
  border-bottom: 1px solid #333;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -1px;
}


/* ========================================
   HERO
   ======================================== */

.hero {
  text-align: center;
  padding: 70px 0 40px;
}

.hero h1 {
  font-size: 52px;
  margin: 0 0 15px;
}

.hero p {
  color: #111111;
  font-size: 18px;
  margin: 0;
}


/* ========================================
   PLANNER / FORM
   ======================================== */

.planner {
  background: #1c1c1c;

  border: 1px solid #333;
  border-radius: 16px;

  padding: 30px;
  margin: 30px 0 50px;
}

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

label {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;
  color: #bbbbbb;
}


/* Planner dropdowns
   NOTE: This applies to planner selects,
   NOT the navigation dropdown. */

.planner select {
  width: 100%;

  padding: 14px;

  border-radius: 8px;
  border: 1px solid #444;

  background: #111;
  color: white;

  font-size: 15px;
}


/* Main buttons */

button {
  width: 100%;

  margin-top: 25px;
  padding: 16px;

  border: none;
  border-radius: 8px;

  background: #ffffff;
  color: #111111;

  font-size: 16px;
  font-weight: bold;

  cursor: pointer;
}

button:hover {
  background: #dddddd;
}


/* ========================================
   MODE SWITCHER
   ======================================== */

.mode-switcher {
  display: flex;

  gap: 10px;

  margin: 30px 0;
}

.mode-switcher button {
  width: 50%;
  margin-top: 0;
}


/* ========================================
   RESULTS
   ======================================== */

#results {
  display: none;
  margin-bottom: 80px;
}

.results-title {
  font-size: 28px;
  margin-bottom: 25px;
}

.crawl {
  position: relative;
}

.stop {
  display: flex;
  align-items: center;

  gap: 20px;

  background: #1c1c1c;

  border: 1px solid #333;
  border-radius: 12px;

  padding: 20px;
  margin-bottom: 15px;
}

.number {
  width: 40px;
  height: 40px;

  border-radius: 50%;

  background: #333;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;

  flex-shrink: 0;
}

.stop-info h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.stop-info p {
  margin: 0;

  color: #999;
  font-size: 14px;
}

.arrow {
  text-align: center;

  color: #666;

  margin: 5px 0;
}


/* Club result */

.club {
  border-color: #ffffff;
}

.club .number {
  background: #ffffff;
  color: #111;
}


/* ========================================
   DAY MODE
   ======================================== */

#day-mode {
  display: none;
}

#day-results {
  display: none;
}


/* ========================================
   PLANNED CRAWLS
   ======================================== */

.planned-crawl {
  background: #1c1c1c;

  border: 1px solid #333;
  border-radius: 16px;

  padding: 25px;
  margin-bottom: 20px;
}

.planned-crawl h3 {
  margin: 0 0 8px;

  font-size: 22px;
}

.planned-crawl p {
  color: #aaa;

  margin: 0 0 18px;
}

.crawl-preview {
  color: #fff;

  font-size: 15px;

  margin-bottom: 20px;

  line-height: 1.6;
}


/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 700px) {

  /* Hero */

  .hero h1 {
    font-size: 38px;
  }


  /* Planner */

  .form-grid {
    grid-template-columns: 1fr;
  }

  .planner {
    padding: 20px;
  }


  /* Navigation */

  .nav {
    top: 10px;
    left: 10px;
  }

  #menu1 {
    font-size: 11px;
    padding: 3px 6px;
  }

  #btnmenu1 {
    font-size: 11px;
    padding: 2px 4px;
  }


  /* Mode buttons */

  .mode-switcher {
    flex-direction: column;
  }

  .mode-switcher button {
    width: 100%;
  }
  

}
```
