/*
Theme Name: PartyAnimal.buzz
Theme URI: https://partyanimal.buzz
Author: PartyAnimal
Author URI: https://partyanimal.buzz
Description: A modern, colorful, high-energy event and party discovery WordPress theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: partyanimal-buzz
Tags: custom-menu, featured-images, one-column, two-columns, blog
*/

:root {
  --pa-bg: #ffffff;
  --pa-surface: #ffffff;
  --pa-surface-2: #f6f7fb;
  --pa-text: #0b0b12;
  --pa-muted: rgba(11, 11, 18, 0.72);
  --pa-border: rgba(11, 11, 18, 0.12);
  --pa-primary: #ff2ea6;
  --pa-accent: #38bdf8;
  --pa-accent-2: #a78bfa;
  --pa-gradient: none;
  --pa-radius: 18px;
  --pa-radius-sm: 12px;
  --pa-shadow: 0 16px 44px rgba(11, 11, 18, 0.12);
  --pa-max: 1180px;
  --pa-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pa-font);
  background: var(--pa-bg);
  color: var(--pa-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  height: auto;
  left: 12px;
  top: 12px;
  width: auto;
  z-index: 100000;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}

.pa-container {
  width: min(100% - 32px, var(--pa-max));
  margin-inline: auto;
}

.pa-skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pa-skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  z-index: 99999;
}

.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--pa-border);
  background: var(--pa-surface);
  color: var(--pa-text);
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pa-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: var(--pa-surface-2);
  border-color: rgba(11, 11, 18, 0.22);
}

.pa-btn--primary {
  background: var(--pa-primary);
  border-color: rgba(11, 11, 18, 0.12);
  color: #ffffff;
}

.pa-btn--primary:hover {
  background: #ff4db3;
}

.pa-btn--tickets {
  background: #0b0b12;
  border-color: rgba(11, 11, 18, 0.18);
  color: #ffffff;
  padding: 12px 18px;
  box-shadow: 0 14px 34px rgba(11, 11, 18, 0.28);
}

.pa-btn--tickets:hover {
  background: #111125;
}

.pa-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--pa-border);
  background: var(--pa-surface-2);
  color: var(--pa-muted);
  font-size: 12px;
  font-weight: 700;
}

.pa-card {
  border: 1px solid var(--pa-border);
  background: var(--pa-surface);
  border-radius: var(--pa-radius);
  overflow: hidden;
  box-shadow: var(--pa-shadow);
}

.pa-card__body {
  padding: 14px;
}

.pa-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .pa-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.pa-section {
  padding: 54px 0;
}

.pa-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pa-section__title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.02em;
}

.pa-section__subtitle {
  margin: 0;
  color: var(--pa-muted);
}

.pa-event-card__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}

.pa-event-card__title {
  margin: 2px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.pa-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--pa-muted);
  font-size: 13px;
}

.pa-footer {
  padding: 44px 0;
  border-top: 1px solid var(--pa-border);
  background: #0b0b12;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pa-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(900px 420px at 85% 20%, rgba(255, 255, 255, 0.05), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 26px);
}

.pa-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(180deg, transparent, rgba(11, 11, 18, 0.96)),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.05) 0 8%,
      transparent 8% 16%,
      rgba(255, 255, 255, 0.04) 16% 22%,
      transparent 22% 30%,
      rgba(255, 255, 255, 0.06) 30% 38%,
      transparent 38% 48%,
      rgba(255, 255, 255, 0.04) 48% 56%,
      transparent 56% 66%,
      rgba(255, 255, 255, 0.05) 66% 74%,
      transparent 74% 84%,
      rgba(255, 255, 255, 0.04) 84% 92%,
      transparent 92% 100%
    );
  mask-image: linear-gradient(180deg, transparent, #000 35%, #000);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000);
}

.pa-footer .pa-container {
  position: relative;
  z-index: 1;
}

.pa-footer__newsletter-wrap {
  display: flex;
  justify-content: center;
  margin-top: -56px;
}

.pa-footer__newsletter {
  width: min(980px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-radius: calc(var(--pa-radius) + 6px);
  padding: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pa-footer__main {
  margin-top: 22px;
  padding: 26px 0 0;
}

.pa-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pa-footer__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.pa-footer__brand .custom-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pa-footer__brand-name {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.pa-footer__newsletter-inner {
  display: grid;
  gap: 14px;
}

.pa-footer__newsletter-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.pa-footer__newsletter-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 20px;
}

.pa-footer__newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.pa-footer__newsletter-form input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
}

.pa-footer__newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.pa-footer__newsletter-submit {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pa-footer__newsletter-submit:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

@media (min-width: 900px) {
  .pa-footer__newsletter-inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 18px;
  }
}

.pa-footer__newsletter-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pa-footer__newsletter-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--pa-border);
  background: var(--pa-surface-2);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.pa-footer__newsletter-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.pa-footer__newsletter-form {
  display: grid;
  gap: 10px;
}

@media (min-width: 520px) {
  .pa-footer__newsletter-form {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.pa-footer__newsletter-form input[type='email'] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 11, 18, 0.14);
  background: #ffffff;
  color: var(--pa-text);
}

.pa-footer__newsletter-form input::placeholder {
  color: rgba(11, 11, 18, 0.45);
}

@media (min-width: 900px) {
  .pa-footer__newsletter {
    padding: 18px 18px;
  }
}

.pa-footer__grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .pa-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .pa-footer__grid--4 {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.pa-footer a {
  color: inherit;
}

.pa-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pa-footer__title {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.pa-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pa-footer__bottom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pa-footer__bottom-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pa-footer__bottom-menu a {
  color: var(--pa-muted);
  font-weight: 800;
}

.pa-footer__bottom-menu a:hover {
  color: var(--pa-text);
}

.pa-footer__muted {
  color: rgba(255, 255, 255, 0.7);
}

.pa-footer__social .pa-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.pa-footer__social .pa-pill:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
}
