:root {
  --linen: #F2E8DD;
  --oxford-navy: #003366;
  --steel-blue: #2484C6;
  --apricot-cream: #F0C682;
  --olive-leaf: #496936;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.bored-hero {
  position: relative;
  height: 100vh;
  background-image: url("/images/imboredhero.png"); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.bored-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}

/* content container */
.bored-hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
}

/* small yellow text */
.bored-eyebrow {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

/* main title */
.bored-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* gold highlight line */
.bored-title span {
  color: #d4af37;
}

/* subtitle */
.bored-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}


.choosing{
    padding-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--cream);
    display: flex;
    justify-content: center;
    text-align: center;
}



#generateContainer{
    display: flex;
    width: 100%;
    height: 40%;
    background-color: var(--navy);
    align-items: center;
    justify-content: center;
    padding: 1%;
    flex-direction: column;
    gap: 10%;
    border-radius: 15px;
}

#main1{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

#sliderContainer{
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 3%;
    width: 100%;
    flex-wrap: wrap;

@media (max-width: 768px) {
    .sliders {
        flex: 1 1 100%;
        padding: 50px 20px;
    }

    .choosing {
        font-size: clamp(20px, 3vw, 30px);
    }
    .sliderTitle{
        font-size: clamp(5px, 3vw, 30px);

    }
}
}

@media (max-width: 768px) {
    .choosing {
        font-size: clamp(20px, 3vw, 30px);
    }  
}


.sliders{
    flex: 1 1 200px;
    height: 75px;
    border: 1.5px solid var(--apricot-cream);
    display: flex;
    flex-direction: column;
    padding-bottom: 7%;
    padding-top: 7%;
    padding-left: 2%;
    padding-right: 2%;
    justify-content: center;
    color: var(--cream);
    border-radius: 8px;
    font-family: 'Playfair Display', serif;

}

.sliderTitle{

    padding-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}


/* Remove default appearance */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  cursor: pointer;
  border-radius: 5px;
}


/* Chrome, Edge, Safari */
input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: linear-gradient(to right, #d1d5db 100%);
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: var(--navy);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--navy);
  margin-top: -6px; /* aligns thumb with track */
  transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

#ageRange{
    padding-top: 2%;
    font-family: 'Playfair Display', serif;
}

#timeRange{
    padding-top: 2%;
    font-family: 'Playfair Display', serif;
}

#boredLabel{
    font-size: 60px;
    text-align: center;
    color: var(--cream);
}

#generatebtn{
    background-color: var(--steel-blue);
    font-family: 'Playfair Display', serif;
    font-size: 120%;
    width: 40%;
    padding: 1%;
    border-radius: 8px;
    background-color: rgba(201, 168, 76);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}

#generatebtn:hover {
  transform: translateY(-2px);
  background-color: rgba(201, 168, 76, 0.8);
  border-color: var(--white);
}

.rangeOptions{
    display: flex;
    justify-content: space-between;
    font-size: 70%;
}




#slideshow-container{
    display: flex;
    width: 80%;
    height: 60%;
    background-color: var(--cream);
    border-radius: 15px;
    margin-top: 5%;
}

