/*
Theme Name: Fantastic Lesbians
Theme URI: https://example.com
Author: Fantastic Lesbians
Author URI: https://example.com
Description: Fantastic Lesbians WordPress theme.
Version: 1.0
Requires at least: 5.9
Tested up to: 8.0
Requires PHP: 8.0
Text Domain: fl
*/

/* --- Base Layout --- */
html, body {
  margin: 0;
  padding: 0;
  background-color: #c52318; /* 🔴 main background */
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  height: 100%;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  box-sizing: border-box;
}

/* --- Banner --- */
.banner {
  width: 80%;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1025px) {
  .banner {
    width: 70%;
    margin-bottom: 2.5rem;
  }
}

/* --- Social Links --- */
.links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.15s ease-in-out;
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.18);
}

.social-link svg {
  fill: currentColor;
}

/* --- Contact Section --- */
.contact-section {
  width: 100%;
  max-width: 420px;
  background-color: #c52318; /* 🔴 matches page background */
  padding: 1.5rem 1.2rem;
  border-radius: 10px;
  box-sizing: border-box;
}

.contact-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  background-color: #ffffff;
  color: #c52318;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.contact-form button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.success {
  color: #b4ffb4;
  font-weight: 500;
}

.error {
  color: #ffcccc;
  font-weight: 500;
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
  .site {
    padding-top: 2.5rem;
  }

  .banner {
    width: 85%;
    margin-bottom: 1rem;
  }

  .contact-section {
    max-width: 380px;
  }
}

@media (max-width: 600px) {
  .site {
    padding-top: 1.5rem;
  }

  .banner {
    width: 95%;
    margin-top: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .links {
    margin-bottom: 2rem;
    gap: 0.8rem;
  }

  .social-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .contact-section {
    width: 100%;
    max-width: 340px;
    padding: 1.2rem 1rem;
    margin: 0 auto;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 0.55rem 0.75rem;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 0.65rem 1rem;
  }
}

/* --- Intro Paragraph --- */
.intro-text {
  max-width: 600px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left; /* left-justified text */
  margin: 0 auto 1.2rem auto; /* smaller gap below paragraph */
  padding: 0 1rem;
}

/* --- Intro List --- */
.intro-list {
  list-style-type: disc;
  color: #ffffff;
  text-align: left; /* align list with paragraph */
  margin: 0 auto 2rem auto;
  padding-left: 2rem; /* aligns nicely with text block */
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.intro-list li {
  margin-bottom: 0.3rem;
}

/* --- Responsive adjustments for smaller screens --- */
@media (max-width: 600px) {
  .banner {
    width: 95%;
    margin-top: 0.8rem;
    margin-bottom: 1.2rem; /* reduced further for mobile */
  }

  .intro-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0 0.8rem;
  }

  .intro-list {
    font-size: 1rem;
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
  }
}