/*
  Lickety Split – Global Stylesheet
  Shared across index, machines, availability, and rental agreement pages
*/

:root {
  --primary: #ff0066;
  --secondary: #ffd6de;
  --dark: #1f2933;
  --light: #ffffff;
  --gray: #6b7280;
  --border: #e5e7eb;
  --blue: #4de1f0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #fff5f7, #ffffff);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

/* Layout */
header {
  padding: 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

main {
      max-width: 900px;
      margin: 0 auto;
      padding: 2.5rem 1.25rem 3rem;
    }

footer {
  background: #fff;
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* Typography */
.logo a {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo img {
  height: 250px;
  width: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: var(--light);
}

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

.desktop-nav a {
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--light);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background-color: var(--primary);
  transition: 
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.desktop-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--primary);
  outline: solid 1px var(--primary);
}

a.active {
  background: var(--secondary);
  color: var(--dark);
}

.logo {
  flex: 0 0 auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.subtitle {
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

/* Navigation */
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

/* Hide mobile nav by default */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #5e5e5e;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile-nav.active {
  right: 0;
}

.menu-toggle {
  display: none;
}


/* Cards */
.card {
  background: var(--light);
  border-radius: 1.75rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.acknowledge {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  opacity: 0.9;
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* Forms */
label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  font-family: inherit;
  margin-bottom: 1rem;
}

select[multiple] {
  min-height: 120px;
}

/* Lists */
ul {
  padding-left: 1.5rem;
  color: var(--gray);
}

ul li {
  margin-bottom: 0.6rem;
}

/* Utility */
.spacer {
  flex: 1;
}

.highlight {
  background: linear-gradient(135deg, var(--secondary), #fff);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}


.hero h1 {
font-size: 3rem;
line-height: 1.2;
}


.hero p {
font-size: 1.125rem;
margin-bottom: 2rem;
}


.hero-image {
background: radial-gradient(circle at top, var(--secondary), #fff);
border-radius: 2rem;
padding: 2rem;
text-align: center;
font-size: 6rem;
}

.cta {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  margin-left: auto;
  margin-right: auto;
  background: var(--primary);
  color: var(--light);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.cta.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  margin-left: 1rem;
}

section.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  background: var(--light);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}

.feature h3 {
  margin-bottom: 0.75rem;
}

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

.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Responsive */
@media (max-width: 1028px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta.secondary {
    display: inline-block;
    margin: 1rem auto 0;
  }

  section.features {
    grid-template-columns: 1fr;
  }

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

  nav {
    display: none;
  }

  main {
    padding-top: 2rem;
  }

  h1 {
    font-size: 2rem;
  }

  .logo img {
    height: 175px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    flex-direction: column;
    align-items: center;   /* center logo + button */
    gap: 0.75rem;
  }

  .menu-toggle {
    display: block;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: var(--light);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: solid var(--primary) 2px;
    cursor: pointer;
    text-align: center;
  }
  
}



