/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #FAF7F0;
  color: #222;
  font-family: "Averia Serif Libre", serif;
  min-height: 100vh;
}

.page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

/* HEADER (SOCIAL ICONS) */
.top-bar {
  display: flex;
  gap: 12px;
  padding: 22px 32px;
}

.social-button {
  width: 44px;
  height: 44px;
  border: 2px solid #222;
  border-radius: 12px;
  background: #FAF7F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s;
}

.social-button:hover {
  transform: translateY(-2px);
  background: #111;
  box-shadow: 0 4px 0 rgba(0,0,0,0.25);
}

.social-button:hover img {
  filter: invert(1);
}

.icon {
  width: 24px;
  height: 24px;
}

/* MAIN CONTENT */
.hero-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px 48px;
  position: relative;
}

/* Musical notes */
.note {
  position: absolute;
  width: 42px;
  opacity: 0.85;
  pointer-events: none;
}

/* Based on prototype */
.note-1 { top: 14%; left: 20%; transform: rotate(-12deg); }
.note-2 { top: 26%; left: 34%; transform: rotate(8deg); }
.note-3 { top: 18%; right: 20%; transform: rotate(10deg); }
.note-4 { top: 44%; left: 10%; transform: rotate(-8deg); }
.note-5 { top: 60%; left: 22%; transform: rotate(6deg); }
.note-6 { top: 72%; left: 12%; transform: rotate(-6deg); }
.note-7 { top: 46%; right: 12%; transform: rotate(-6deg); }
.note-8 { top: 65%; right: 26%; transform: rotate(6deg); }
.note-9 { top: 76%; right: 10%; transform: rotate(-10deg); }

.hero {
  text-align: center;
  max-width: 480px;
}

#logo {
  width: 160px;
  margin-bottom: 12px;
}

/* Title & subtitle */
.hero-title {
  font-size: clamp(3rem, 4vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: 1.50rem;
  color: #222;
  margin-bottom: 32px;
}

/* App Store badge */
#store {
  width: 180px;
  transition: 0.15s;
}

#store:hover {
  transform: translateY(-3px);
}

/* SUPPORT SECTION */
.support-wrapper {
  margin-top: 48px;
}

.support-text {
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.support-button {
  padding: 12px 65px;
  font-size: 1.2rem;
  background: #FAF7F0;
  border-radius: 20px;
  border: 3px solid #222;
  border-bottom-width: 8px;
  cursor: pointer;
  transition: 0.15s;
  font-family: "Averia Serif Libre", serif;
}

.support-button:hover {
  transform: translateY(2px);
  background: #F0E9DB;
}

#support {
    display: inline-block;
    font-family: inherit;
    font-size: 20px;
    padding: 12px 50px;
    background: #FAF7F0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;

    border-left: 3px solid #222;
    border-right: 3px solid #222;
    border-top: 3px solid #222;
    border-bottom: 8px solid #222;
    border-radius: 16px;

    transition: transform 0.15s ease;
}

#support:hover {
    /* transform: translateY(-2px); */
    border-bottom: 9px solid #222;
}

.footer {
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

/* PRIVACY PAGE */
.privacy-link {
  font-size: 0.9rem;
  opacity: 0.7;
  text-decoration: none;
  color: #222;
}

.privacy-link:hover {
  opacity: 1;
}

/* PRIVACY PAGE */
.privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Ensures 20px min spacing from screen edges */
  min-height: 100vh;
  background: #F0E9DB;
}

/* Outer box */
#privacy-box {
  width: 100%;
  max-width: 900px; /* Optional: keeps it elegant on huge screens */
  height: 85vh;
  background: #FAF7F0; /* Slightly darker than #FAF7F0 */
  border-radius: 20px;
  padding: 24px;
  overflow-y: auto;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.08); */
}

/* Actual text inside the box */
#privacy-text {
  text-align: left;
  font-size: 1rem;
  line-height: 1.55;
}




/* MOBILE ADJUSTMENTS */
@media (max-width: 600px) {
  .note {
    opacity: 0.15;
    width: 32px;
  }

  #logo {
    width: 130px;
  }

  #store {
    width: 160px;
  }
}


