/*
Theme Name: Goldfinga Productions
Theme URI: https://example.com/goldfinga-productions
Author: Goldfinga Productions
Author URI: https://example.com
Description: Custom WordPress theme for Goldfinga Productions music production services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: goldfinga-productions
*/

:root {
  --aqua-900: #0d6f77;
  --aqua-700: #148f96;
  --aqua-500: #27b9be;
  --aqua-300: #8fe3e6;
  --aqua-100: #dff7f8;
  --gold-700: #a87b00;
  --gold-500: #d4a62a;
  --gold-300: #f0d27a;
  --ink-900: #1b2328;
  --ink-700: #2f3a42;
  --white: #ffffff;
  --focus: #ffdd80;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: "Segoe UI Variable", "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.3), transparent 45%),
    linear-gradient(135deg, var(--aqua-300) 0%, var(--aqua-100) 45%, #c9f1f3 100%);
  min-height: 100vh;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--gold-700);
  letter-spacing: 0.01em;
}

p {
  margin-top: 0;
}

a {
  color: var(--aqua-900);
}

a:hover {
  color: var(--gold-700);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  z-index: 1000;
  background: var(--ink-900);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.skip-link:focus {
  top: 0.5rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 92%);
}

.site-header {
  border-bottom: 4px solid var(--gold-500);
  background: linear-gradient(110deg, #0e5f67 0%, #1f9ea7 75%);
  position: relative;
}

.site-header::after {
  content: "\266A  \266B  \266A";
  position: absolute;
  right: 1rem;
  bottom: 0.35rem;
  color: rgba(240, 210, 122, 0.75);
  font-size: 1rem;
  letter-spacing: 0.25rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.menu-toggle {
  display: none;
  background: #0a4e54;
  color: var(--white);
  border: 1px solid var(--gold-500);
  border-radius: 0.375rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #fff8dc;
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 0.5rem 0.7rem;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  background: var(--gold-500);
  color: #211600;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-wrap {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #9edee2;
  border-radius: 0.85rem;
  padding: 2rem;
  box-shadow: 0 8px 22px rgba(13, 111, 119, 0.14);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero-note {
  color: #7f5a00;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 3rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #a8e2e6;
  border-left: 6px solid var(--gold-500);
  border-radius: 0.65rem;
  padding: 1rem;
}

.button {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 0.4rem;
  padding: 0.65rem 0.95rem;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  background: var(--gold-500);
  color: #261900;
}

.button-primary:hover {
  background: #c69410;
}

.button-secondary {
  background: #0d6970;
  color: #fefdf8;
}

.button-secondary:hover {
  background: #0a545a;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #9edee2;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  text-align: left;
  font-weight: 700;
  color: #6f5000;
  padding: 1rem;
  background: #e7f7f8;
}

th,
td {
  border: 1px solid #b9e6e9;
  padding: 0.75rem;
  text-align: left;
}

thead th {
  background: #d2f1f3;
}

.note-band {
  color: #9a7000;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #9edee2;
  border-radius: 0.65rem;
  padding: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: #704f00;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  padding: 0.6rem;
  border: 1px solid #5f9fa3;
  border-radius: 0.4rem;
  background: #ffffff;
}

.status-text {
  min-height: 1.2rem;
  margin-top: 0.75rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 2rem;
  background: #0b545b;
  color: #f8efcf;
}

.site-footer .container {
  padding: 1rem 0;
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.open {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav ul {
    flex-direction: column;
  }
}
