/* genaiqueen.com - main styles */

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

:root {
  --red: #ff0000;
  --red-light: rgba(255, 0, 0, 0.3);
  --red-lighter: rgba(255, 0, 0, 0.1);
  --white: #fff;
  --black: #111;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  background: var(--white);
  font-family: "Times New Roman", Times, serif;
  color: var(--red);
  overflow-x: hidden;
  overflow-wrap: break-word;
  font-size: 18px;
  line-height: 1.7;
}

.container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 100vh;
}

/* typography */
h1, h2, h3 {
  font-weight: normal;
  font-style: italic;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.2rem;
}

/* links */
a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--red-light);
  transition: all 0.2s ease;
}

a:hover {
  border-bottom-color: var(--red);
  opacity: 0.8;
}

/* navigation */
nav {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--red-light);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-style: italic;
  font-size: 0.95rem;
}

nav a {
  border-bottom: none;
}

nav a:hover {
  border-bottom: 1px solid var(--red);
}

nav a.active {
  border-bottom: 1px solid var(--red);
}

.site-title {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  display: block;
  border-bottom: none;
}

.site-title:hover {
  border-bottom: none;
}

/* hero section */
.hero {
  margin-bottom: 3rem;
}

.hero-hook {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--red);
  font-family: inherit;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--red);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--red);
}

.btn:hover {
  background: var(--red);
  color: var(--white);
  opacity: 1;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

/* dividers */
.divider {
  width: 100%;
  height: 1px;
  background: var(--red-light);
  margin: 2.5rem 0;
}

/* sections */
section {
  margin-bottom: 3rem;
}

.section-header {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* stats / proof */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat {
  padding: 1.5rem;
  border: 1px solid var(--red-light);
}

.stat-number {
  font-size: 1.8rem;
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* offerings / tiers */
.tier {
  border: 1px solid var(--red-light);
  padding: 2rem;
  margin-bottom: 2rem;
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tier-name {
  font-size: 1.2rem;
  font-style: italic;
}

.tier-price {
  font-size: 1.4rem;
  font-style: italic;
}

.tier-desc {
  margin-bottom: 1.5rem;
}

.tier-details {
  font-size: 0.9rem;
  opacity: 0.85;
}

.tier-details li {
  margin-bottom: 0.5rem;
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
}

.tier-details li:before {
  content: "→";
  position: absolute;
  left: 0;
}

/* essays list */
.essay-list {
  list-style: none;
}

.essay-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--red-light);
}

.essay-item:first-child {
  padding-top: 0;
}

.essay-date {
  font-size: 0.85rem;
  opacity: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}

.essay-title {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  display: block;
}

.essay-excerpt {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.read-more {
  font-size: 0.9rem;
  font-style: italic;
}

/* essay content */
.essay-content {
  font-size: 1.05rem;
}

.essay-content h2 {
  margin-top: 3rem;
}

.essay-content blockquote {
  border-left: 2px solid var(--red-light);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  opacity: 0.9;
}

.essay-content ul, .essay-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.essay-content li {
  margin-bottom: 0.75rem;
}

.essay-meta {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--red-light);
}

/* forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-style: italic;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--red-light);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--red);
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff0000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.optional {
  opacity: 0.6;
  font-size: 0.85rem;
}

.form-success {
  padding: 1.5rem;
  border: 1px solid var(--red);
  background: var(--red-lighter);
  text-align: center;
  font-style: italic;
  display: none;
}

.form-success.visible {
  display: block;
}

/* fine print */
.fine-print {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--red-light);
}

.fine-print li {
  margin-bottom: 0.5rem;
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}

.fine-print li:before {
  content: "·";
  position: absolute;
  left: 0;
}

/* footer */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--red-light);
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* about photo */
.about-photo {
  max-width: 200px;
  border: 1px solid var(--red-light);
  margin: 2rem 0;
}

/* marquee (from original) */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 2rem 0;
  border-top: 1px solid var(--red-light);
  border-bottom: 1px solid var(--red-light);
  padding: 1.5rem 0;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-style: italic;
  font-size: 0.95rem;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* utilities */
.italic { font-style: italic; }
.small { font-size: 0.9rem; }
.muted { opacity: 0.7; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* responsive */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 2rem 1.25rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-hook {
    font-size: 1.3rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .tier {
    padding: 1.5rem;
  }

  .tier-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  footer {
    margin-top: 3rem;
  }
}
