/* General Body Styles */
body {
  margin: 0;
  padding: 0;
  background: #FFF7EF;
  color: #111;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.4;
  position: relative;
  overflow-x: hidden;
}

/* Buttons */
.btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: opacity 0.2s, background 0.2s;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background: #111;
  color: #FFF;
}

.btn-primary:hover {
  opacity: 0.8;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  border: 2px solid #111;
  color: #111;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-app-store {
  border: 2px solid #111;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  display: inline-block;
  transition: background 0.2s;
}

.btn-app-store:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Project Cards */
.project-card {
  background: #FEFCF8;
  border: 2px solid #EEE;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive Grid for Section */
.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

@media (min-width: 600px) {
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Header */
.main-header {
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
  z-index: 1;
}

/* Logo */
.tootooz-logo {
  cursor: pointer;
  user-select: none;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: 'Baloo 2', cursive;
}

/* Tagline */
.tagline-shuffle {
  display: inline-block;
  min-width: 8.5em;
  letter-spacing: 0.01em;
}

/* Image Styles */
.logo-img {
  height: 3rem;
  display: block;
  margin: 0 auto;
  border-radius: 1rem;
}

.app-store-img {
  height: 1.5rem;
  display: block;
  margin: 0 auto;
  border-radius: 0.25rem;
}

/* Swirl Wrapper */
#swirl-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

/* Swirl Line */
.swirl-line {
  position: absolute;
  z-index: -1;
}