/* Culture Vulture — Web Theme (Editorial body style) */
@charset "UTF-8";

/* Body font loaded via Google Fonts in HTML; ABC Whyte Inktrap to be self-hosted when licensed */
@font-face {
  font-family: "ABC Whyte Inktrap";
  src: url("../fonts/ABCWhyteInktrap-Super.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Whyte Inktrap";
  src: url("../fonts/ABCWhyteInktrap-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root{ font-size: var(--base-font-size); }

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

body{
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--line-height);
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-heading);
  font-weight: 900; /* Super for impact */
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 var(--space-md);
}

h1{ font-size: clamp(2.4rem, 6vw, 6rem); line-height: 0.95; }
h2{ font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3{ font-size: clamp(1.3rem, 2.4vw, 2rem); }

p{ margin: 0 0 var(--space-md); }

/* Editorial nav (uppercase, spaced) */
nav, .nav, .site-nav{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Links */
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

/* Buttons */
.btn, button, input[type="submit"]{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 2px;
  border: 1px solid #000;
  background: transparent;
}

/* Utilities */
.container{ max-width: 1100px; padding: 0 5vw; margin: 0 auto; }
.hero{ min-height: 60vh; display:flex; align-items:center; padding: 10vh 5vw; background: var(--cv-gradient); color:#000; }
.swatches{ display:flex; gap: var(--space-md); flex-wrap: wrap; }
.swatch{ width: 140px; height: 90px; border-radius: 8px; border: 1px solid rgba(0,0,0,.1); display:flex; align-items:center; justify-content:center; font-weight:600;}
.swatch.magenta{ background: var(--cv-magenta); }
.swatch.purple{ background: var(--cv-purple); color:#fff; }
.swatch.cyan{ background: var(--cv-cyan); }
.swatch.green{ background: var(--cv-green); }

/* ============================================
   LANDING PAGE STYLES (Coming Soon Template)
   ============================================ */

/* Landing Page Body */
body.page-template-templatespage-coming-soon-php {
    background: linear-gradient(135deg, #ef00f1 0%, #530d5f 32%, #76f7fb 68%, #a7fe2d 100%);
    min-height: 100vh;
    color: white;
}

/* Header */
.cv-header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.cv-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cv-brand a {
    font-family: 'ABC Whyte Inktrap', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: white;
    text-decoration: none;
}

.cv-bird-icon {
    width: 60px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.cv-bird-icon:hover {
    opacity: 1;
}

/* Footer */
.cv-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.cv-footer-content {
    max-width: 680px;
    margin: 0 auto;
}

.cv-acknowledgement {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    opacity: 0.9;
    color: white;
    margin: 0;
}

/* Footer widgets and columns */
.cv-footer-column {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cv-footer-columns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cv-footer-columns .cv-footer-column {
    flex: 1;
    min-width: 200px;
}

/* Target footer widget paragraphs directly (WordPress strips custom classes) */
.cv-footer-column .footer-widget p,
.cv-footer-column p {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Keep .cv-acknowledgement for backward compatibility */
.cv-acknowledgement {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    opacity: 0.9;
    color: white;
    margin: 0;
}

.widget-title {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer menu */
.cv-footer-nav {
    margin-top: 2rem;
}

.cv-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cv-footer-menu li {
    margin: 0;
}

.cv-footer-menu a {
    font-size: 0.875rem;
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cv-footer-menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Primary menu (header navigation) */
.cv-primary-nav {
    display: none; /* Hidden by default, show when menu is assigned */
}

.cv-primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.cv-primary-menu li {
    margin: 0;
}

.cv-primary-menu a {
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cv-primary-menu a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Main Content Area */
.cv-landing-page {
    flex: 1;
}

.cv-content-wrapper {
    max-width: 100%;
}

/* Gutenberg Block Overrides for Landing Page */
body.page-template-templatespage-coming-soon-php .wp-block-cover {
    margin: 0;
}

/* Reset margins for wp-block-group, but exclude our custom containers that need centering */
body.page-template-templatespage-coming-soon-php .wp-block-group:not(.cv-white-container):not(.cv-dark-container):not(.cv-glass-container) {
    margin: 0;
}

/* Design System Utility Classes */
.cv-glass-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    color: white;
}

/* Use more specific selector for higher specificity without !important */
.wp-block-group.cv-white-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

/* Add horizontal breathing room on mobile/tablet */
@media (max-width: 767px) {
    .wp-block-group.cv-white-container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.cv-dark-container {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 2rem;
    color: white;
}

/* Audience Switcher Styles */
.cv-audience-selector {
    margin-bottom: 2rem;
}

.cv-audience-buttons {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 12px;
}

.cv-audience-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'ABC Whyte Inktrap', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 44px;
}

.cv-audience-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cv-audience-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

/* White container variant */
.cv-white-container .cv-audience-buttons {
    background: #f5f5f5;
}

.cv-white-container .cv-audience-btn {
    color: #666;
}

.cv-white-container .cv-audience-btn:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.05);
}

.cv-white-container .cv-audience-btn.active {
    background: white;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Dropdown variant */
.cv-audience-select {
    width: 100%;
    padding: 1rem;
    font-family: 'ABC Whyte Inktrap', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
}

.cv-white-container .cv-audience-select {
    border-color: #ddd;
    background: white;
    color: #1a1a1a;
}

/* Audience Content */
.cv-audience-content {
    display: none;
}

.cv-audience-content.active {
    display: block;
}

/* Ensure text is readable inside audience content blocks */
.cv-white-container .cv-audience-content p,
.cv-white-container .cv-audience-content h1,
.cv-white-container .cv-audience-content h2,
.cv-white-container .cv-audience-content h3 {
    color: #1a1a1a !important;
}

/* ============================================
   FLUENT FORMS STYLING
   ============================================ */

/* Override Fluent Forms button styling */
.ff-btn-submit,
.ff-btn-submit.ff_btn_style {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    border: none !important;
    background: var(--cv-purple) !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.ff-btn-submit:hover,
.ff-btn-submit.ff_btn_style:hover {
    background: var(--cv-magenta) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(239, 0, 241, 0.3) !important;
}

.ff-btn-submit:active {
    transform: translateY(0) !important;
}

/* Form input fields */
.ff-el-form-control {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    transition: border-color 0.2s ease !important;
}

.ff-el-form-control:focus {
    outline: none !important;
    border-color: var(--cv-purple) !important;
    box-shadow: 0 0 0 3px rgba(83, 13, 95, 0.1) !important;
}

/* Form labels */
.ff-el-input--label label {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: #1a1a1a !important;
    margin-bottom: 0.5rem !important;
}

/* Form spacing */
.ff-el-group {
    margin-bottom: 1.25rem !important;
}

.ff_submit_btn_wrapper {
    margin-top: 1.5rem !important;
}

/* Multi-select dropdown */
.ff_has_multi_select {
    min-height: 44px !important;
}

/* Responsive */
@media (max-width: 767px) {
    .cv-brand a {
        font-size: 1.125rem;
    }

    .cv-bird-icon {
        width: 40px;
    }

    .cv-audience-btn {
        font-size: 0.8rem;
        padding: 0.85rem 0.75rem;
    }

    .ff-btn-submit,
    .ff-btn-submit.ff_btn_style {
        font-size: 0.9rem !important;
        padding: 0.85rem 1.5rem !important;
    }
}

@media (min-width: 768px) {
    .cv-brand a {
        font-size: 1.5rem;
    }

    .cv-bird-icon {
        width: 70px;
    }
}
