/*
Theme Name: Sashavelvet Lite Theme
Theme URI: https://sashavelvet.com
Author: sasha velvet bitch
Author URI: https://sashavelvet.com
Description: A stylish fantasy-themed WordPress theme for showcasing AI art.
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #f0f0f0;
}
.hero {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  background: #1e1e2f;
}
.hero-image {
  width: 300px;
  margin-bottom: 20px;
  opacity: 0.9;

}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3em;
  color: #ff1e8e;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-subtitle {
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 30px;
}
.hero-buttons .btn {
  margin: 0 10px;
}
.featured {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #151520;
  padding: 60px 20px;
  gap: 40px;
}
.featured-image {
  width: 300px;
  border-radius: 8px;
  filter: blur(2px);
}
.featured-text {
  max-width: 400px;
}
.featured-text h2 {
  color: #ff1e8e;
  margin-bottom: 10px;
}
.about, .subscribe {
  text-align: center;
  padding: 60px 20px;
  background: #1a1a2a;
}
.subscribe form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.subscribe input {
  padding: 12px;
  border: none;
  border-radius: 6px;
  width: 250px;
  background: #222;
  color: white;
}
.subscribe button {
  padding: 12px 20px;
}
.btn {
  background: #ff1e8e;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn.secondary {
  background: #333;
  border: 1px solid #ff1e8e;
}
.btn:hover {
  background: #c2185b;
}

#about-sasha {
  background-color: #1a1a2a;
  padding: 60px 30px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #ddd;
}

#about-sasha .section-title {
  font-family: 'Cinzel', serif;
  font-size: 2em;
  color: #ff1e8e;
  margin-bottom: 20px;
}

#about-sasha .emoji {
  font-size: 1.3em;
  vertical-align: middle;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  padding: 2rem;
  border-radius: 1rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Form Container */
.wpforms-container .wpforms-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

/* Field Row Wrapper */
.wpforms-container .wpforms-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 0 10px;
}

/* Two-column layout for form groups */
.wpforms-container .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Half-width fields */
.wpforms-container .wpforms-field {
  flex: 1 1 45%;
}

/* Full-width fields (e.g., textarea, message) */
.wpforms-container .wpforms-field.wpforms-field-textarea {
  flex: 1 1 100%;
}

/* Label styling */
.wpforms-container .wpforms-form label {
  color: #e0e0e0;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Input and textarea styling */
.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form textarea {
  background-color: #1e1e1e;
  color: #fff;
  border: 1px solid #c0255c;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
}

/* Submit button */
.wpforms-container .wpforms-submit {
  background-color: #c0255c;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .wpforms-container .wpforms-field {
    flex: 1 1 100%;
    padding: 0;
  }
}