/*
Theme Name: Youbble Records
Theme URI: https://youbblerecords.com
Author: Kavin
Author URI: https://youbblerecords.com
Description: Custom WordPress theme for Youbble Records
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: youbble-records
Tags: music, record-label, custom-theme
*/

/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pt-20 {
  padding-top: 5rem;
}

/* Cards */
.card {
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: #f59e0b;
  color: #000;
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #f59e0b;
  color: #f59e0b;
  background: transparent;
}

.btn-outline:hover {
  background: #f59e0b;
  color: #000;
}

/* Submit Demo Form */
.wpcf7-form {
  max-width: 900px;
  margin: 0 auto;
}

.wpcf7-form label {
  display: block;
  color: #d1d5db;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 0.875rem;
  margin-bottom: 1.5rem;
  background: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #6b7280;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: #fbbf24;
  background: #1a1a1a;
}

/* Role checkboxes as buttons only */
.wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  background: #2d2d2d;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  margin: 0;
  font-weight: 600;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
  display: none;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type="checkbox"]:checked + span {
  background: #fbbf24;
  color: #000;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.wpcf7-form .wpcf7-checkbox .wpcf7-list-item label:hover {
  background: #3d3d3d;
  border-color: #fbbf24;
}

/* Two column layout */
.wpcf7-form .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wpcf7-form .two-col label {
  margin-bottom: 0;
}

.wpcf7-form .two-col input {
  margin-bottom: 0;
}

/* Three column layout */
.wpcf7-form .three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wpcf7-form .three-col label {
  margin-bottom: 0;
}

.wpcf7-form .three-col input {
  margin-bottom: 0;
}

/* File upload */
.wpcf7-form input[type="file"] {
  width: 100%;
  padding: 3rem;
  background: #2d2d2d;
  border: 2px dashed #fbbf24;
  border-radius: 0.75rem;
  color: #9ca3af;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7-form input[type="file"]:hover {
  background: #1a1a1a;
  border-color: #d97706;
}

/* Acceptance checkbox visible */
.wpcf7-form .wpcf7-acceptance {
  margin: 1.5rem 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 400;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  accent-color: #fbbf24;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  width: 100%;
  background: #fbbf24;
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
}

.wpcf7-form input[type="submit"]:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.wpcf7-form input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Errors */
.wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.wpcf7-response-output {
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.wpcf7-mail-sent-ok {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  color: #10b981;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  color: #ef4444;
}

/* Mobile */
@media (max-width: 768px) {
  .wpcf7-form .two-col,
  .wpcf7-form .three-col {
    grid-template-columns: 1fr;
  }

  .wpcf7-form .wpcf7-checkbox {
    flex-direction: column;
  }

  .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
    width: 100%;
    justify-content: center;
  }
}

/* Section headers */
.wpcf7-form h3 {
  color: #fbbf24;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}
