/* attractions.css
  Page-specific styles for the Saved Attractions page
*/

.saved-page .main {
  position: relative;
  overflow: hidden;
}

.saved-wrapper {
  text-align: center;
  position: relative;
  padding: 40px 0 80px;
  z-index: 1;
}

/* Blue pill title */
.saved-title {
  background: #BAD67F;
  color: black;
  font-size: 28px;
  padding: 18px 70px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 50px;
}

/* Two big teal panels */
.saved-sections {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.saved-panel {
  background: #3fb1b5;
  border-radius: 40px;
  padding: 40px;
  width: 380px;
  min-height: 380px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
}

.saved-panel h3 {
  margin-bottom: 30px;
  font-weight: 600;
}

/* Small image boxes */
.mini-card {
  background: #e6e6e6;
  border-radius: 30px;
  padding: 20px;
  width: 170px;
  margin: 0 auto 25px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
}

.mini-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
}

.mini-card p {
  font-size: 14px;
  margin-top: 10px;
}

.mini-card {
  background: #e6e6e6;
  border-radius: 30px;
  padding: 20px;
  width: 170px;
  margin: 0 auto 25px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);

  text-decoration: none;
  color: black;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.15);
}

.mini-card-wrap {
  position: relative;
  width: 170px;
  margin: 0 auto 25px;
}

.mini-card-wrap .mini-card {
  width: 100%;
  margin: 0;
}

.remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.remove-btn:hover {
  background: rgba(210, 30, 30, 0.85);
}

/* Orange background circles */

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(216, 138, 42, 0.732);
  z-index: 0;
}

.c1 {
  width: 200px;
  height: 200px;
  top: 80px;
  right: 150px;
}

.c2 {
  width: 140px;
  height: 140px;
  bottom: 150px;
  left: 120px;
}

.c3 {
  width: 260px;
  height: 260px;
  bottom: 80px;
  right: 60px;
}

@media (max-width: 800px) {
  .saved-sections {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .saved-panel {
    width: 90%;
    max-width: 520px;
  }
}

/*
   SETTINGS PAGE (FEATURE-SPECIFIC) */

.settings-page main {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Main gray card */
.settings-card {
  background: #e0e0e0;
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  padding: 2rem 2.5rem;
}

/* Page title */
.settings-card h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Section blocks */
.settings-section {
  border-top: 2px solid #000;
  padding: 1.25rem 0;
}

.settings-section:first-of-type {
  border-top: none;
}

/* Section headers */
.settings-section h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* Individual rows */
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Help link */
.help-link {
  color: #0000ee;
  text-decoration: underline;
  font-size: 0.95rem;
}

/* TOGGLE SWITCH
    */

.toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background-color: #999;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
}

.toggle input:checked+.slider {
  background-color: #7b7bff;
}

.toggle input:checked+.slider::before {
  transform: translateX(22px);
}


/* Attractions page nav override */
.top-bar {
  background-color: #36c3c7;
  /* blue */
}

.side-nav {
  background-color: #36c3c7;
  /* blue */
}