/* css/main.css */

:root {
  --rose: #ffdee9;
  --dark: #1a1a1a;
  --venus-glow: #ffb6c1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: white;
}

body {
  background-color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--rose);
  padding: 1rem;
  text-align: center;
}

main {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}

.content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
    gap: 2rem;
  }

  .left-column {
    flex: 0 0 35%;
  }

  .right-column {
    flex: 0 0 65%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .venus-star-codes-logo {
    max-width: 300px;
  }
}

.left-column, .right-column {
  width: 100%;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--venus-glow);
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px rgba(255, 182, 193, 0.4);
  margin-bottom: 1rem;
}

#about-toggle {
  background: none;
  border: none;
  color: var(--venus-glow);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 1rem;
}

#about-text {
  display: none;
  font-size: 0.95rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

.natal-card {
  background-color: var(--dark);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.1);
  max-width: 100%;
}

.natal-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.countdown {
  background-color: var(--dark);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.1);
  margin-bottom: 2rem;
}

.countdown h3 {
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--venus-glow);
}

.countdown-timer {
  font-size: 1.2rem;
  font-weight: 600;
}

#reddit-feed {
  max-width: 800px;
  margin: 0 auto;
}

.reddit-post {
  background-color: var(--dark);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.1);
  transition: transform 0.3s ease;
}

.reddit-post:hover {
  transform: translateY(-3px);
}

.reddit-link {
  color: var(--venus-glow);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
}

.reddit-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

footer, footer i {
  background: var(--rose);
  padding: 2rem 0rem;
  text-align: center;
  font-size: 0.8rem;
  color: #444;
}

.about {
  background-color: var(--dark);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.1);
  margin-bottom: 2rem;
}

.right-inner {
  max-width: 800px;
  width: 100%;
  padding: 1rem 1.25rem;
  margin: 0 auto;
}

.reddit-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  word-wrap: break-word;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.venus-star-codes-logo {
  max-width: 90%;
  height: auto;
}
