/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #f3fffe;
  background-color: #123f54;
  font-size: 14px;
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background-image: url('/assets/images/Richard-Gott-soundcart.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Main Container */
.main-container {
  min-height: 100vh;
  background: linear-gradient(rgba(18, 63, 84, 0.9), rgba(18, 63, 84, 0.95));
}

/* Header Styles */
.site-header {
  text-align: center;
  padding: 2rem 1rem 1rem;
  background: rgba(18, 63, 84, 0.95);
}

/* IMPORTANT: your header HTML uses .header-content, so define it */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;     /* centres title + contact row */
  justify-content: center;
  width: 100%;
}

.site-title {
  font-family: Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #f3fffe;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-align: center;
}

.contact-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.location-phone {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #f3fffe;
  font-weight: normal;
}

.phone-link {
  color: #45d69d;
  text-decoration: underline;
  font-weight: normal;
}

.phone-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f3fffe;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  padding: 6px;
}

.social-icon:hover {
  background: #45d69d;
  transform: translateY(-2px);
}

.social-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Navigation */
.main-nav {
  border-top: 1px solid rgba(243, 255, 254, 0.2);
  padding-top: 1rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #45d69d;
}

.nav-links a {
  font-family: Arial, sans-serif;
  color: #f3fffe;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
  transition: color 0.3s;
  display: block;
}

.nav-links a:hover {
  color: #ff6900;
}

.nav-links a.active {
  color: #45d69d;
}

.nav-links a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #f3fffe;
  margin: 3px 0;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content Layout */
.main-content {
  padding: 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.three-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Column Headers */
.column-header h2 {
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: 2px;
}

.column-header h2 .green-text {
  color: #45d69d;
}

.column-header h2 .white-text {
  color: #f3fffe;
}

/* About Column */
.about-column {
  padding: 0 1rem;
}

.profile-section {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid #45d69d;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talent-manager-link {
  display: inline-block;
  color: #45d69d;
  text-decoration: underline;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.talent-manager-link:hover {
  color: #f3fffe;
}

.mobile-note {
  font-size: 0.8rem;
  color: #f3fffe;
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.about-text {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #f3fffe;
  font-weight: normal;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-weight: normal;
}

.about-text a {
  color: #45d69d;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
}

/* Diary Column */
.diary-column {
  padding: 0 1rem;
}

.availability-section h3,
.bases-section h3 {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f3fffe;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.availability-text,
.bases-description,
.bases-coverage {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #f3fffe;
  margin-bottom: 1rem;
  font-weight: normal;
}

.calendar-container {
  margin: 1.5rem 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* -------------------------------
   FullCalendar styling overrides
   ------------------------------- */

/* Make the calendar itself have a white background */
#availabilityCalendar .fc {
  background: #ffffff;
}

/* Make all calendar text black */
#availabilityCalendar,
#availabilityCalendar .fc,
#availabilityCalendar .fc a,
#availabilityCalendar .fc-toolbar-title,
#availabilityCalendar .fc-col-header-cell-cushion,
#availabilityCalendar .fc-daygrid-day-number {
  color: #134055 !important;
}

/* Make the "today" cell highlight subtle (optional) */
#availabilityCalendar .fc-day-today {
  background: rgba(245, 158, 11, 0.12) !important;
}

/* Make events orange */
#availabilityCalendar .fc-event,
#availabilityCalendar .fc-event-main {
  background: #E2725B !important;
  border-color: #E2725B !important;
  color: #fff !important;
}

/* Optional: round the busy blocks a bit */
#availabilityCalendar .fc-event {
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Centre text inside calendar events */
#availabilityCalendar .fc-event,
#availabilityCalendar .fc-event-main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Make event text non-bold */
#availabilityCalendar .fc-event-title {
  font-weight: normal !important;
}

/* -------------------------------
   Calendar navigation buttons
   ------------------------------- */

/* Add a little breathing room from edges */
#availabilityCalendar .fc-header-toolbar {
  padding: 0 0.5rem;
}

/* Prev / Next / Today buttons */
#availabilityCalendar .fc-button {
  background: #fff !important;
  border-color: #fff !important;
  color: #134055 !important;
  box-shadow: none;
}

/* Hover state */
#availabilityCalendar .fc-button:hover {
  filter: brightness(0.95);
}

/* Active (pressed) state */
#availabilityCalendar .fc-button:active,
#availabilityCalendar .fc-button.fc-button-active {
  filter: brightness(0.9);
}

/* Make arrow icons site dark blue */
#availabilityCalendar .fc-icon {
  color: #134055;
}

/* --- Full-width centered title, stays on same row as arrows --- */
#availabilityCalendar .fc-header-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0.75rem;
  margin: 0;
}

/* Keep the left chunk pinned left */
#availabilityCalendar .fc-header-toolbar .fc-toolbar-chunk:first-child {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Center chunk (the title) truly centered to full width */
#availabilityCalendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Right chunk (if present) pinned right (harmless if empty) */
#availabilityCalendar .fc-header-toolbar .fc-toolbar-chunk:last-child {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Remove default title margins that can push layout */
#availabilityCalendar .fc-toolbar-title {
  margin: 0 !important;
  line-height: 1.2;
}

/* Extra room so title won't collide with arrows */
#availabilityCalendar .fc-header-toolbar {
  padding: 0 3rem;
}

.legend {
  font-size: 0.8rem;
  color: #f3fffe;
  text-align: center;
  margin: 1rem 0;
  opacity: 0.8;
}

.map-container {
  margin: 1rem 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  height: 280px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.bases-section {
  margin-top: 2rem;
}

/* Contact Column */
.contact-column {
  background: rgba(69, 214, 157, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(69, 214, 157, 0.3);
}

.contact-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(69, 214, 157, 0.9);
  border: none;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #123f54;
  transition: background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(18, 63, 84, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #45d69d;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #123f54;
  color: #45d69d;
  border: 2px solid #45d69d;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #45d69d;
  color: #123f54;
}

.vcard-section {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(69, 214, 157, 0.3);
}

.vcard-link {
  color: #45d69d;
  text-decoration: none;
  font-size: 0.85rem;
}

.vcard-link:hover {
  text-decoration: underline;
}

/* -----------------------------------------
   Dotclear-specific overrides (safe + small)
   ----------------------------------------- */

/* Dotclear wraps the header in #header; ensure our title stays centred */
#header .site-header,
#header .header-content,
#header .site-title {
  text-align: center;
}

/* Make sure our header actually spans full width within Dotclear */
#header .site-header {
  width: 100%;
}

/* If Dotclear applies awkward padding/margins around header, neutralise gently */
#header {
  margin: 0;
  padding: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .three-column-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-title {
    font-size: 2rem;
  }

  .column-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(18, 63, 84, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }

  .nav-links.mobile-active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 1rem;
  }

  /* Header adjustments for mobile */
  .site-header {
    padding: 1rem;
    position: relative;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .contact-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-content {
    padding: 1rem;
  }

  .column-header h2 {
    font-size: 1.5rem;
  }

  .about-column,
  .diary-column {
    padding: 0;
  }

  .contact-column {
    padding: 1rem;
  }

  .calendar-container iframe {
    height: 250px;
  }

  .map-container {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.2rem;
  }

  .column-header h2 {
    font-size: 1.3rem;
  }

  body {
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }
}
/* --- Dotclear: force-centre the site title in the blog header --- */
#header h1.site-title,
#header .site-header h1.site-title {
  float: none !important;
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Override Dotclear h1 layout rules inside our custom header */
#header .site-title {
  margin-left: 0 !important;
  padding-right: 0 !important;
}
/* Force full-width block behaviour for site title */
#header .site-title {
  display: block !important;
  width: 100% !important;
}
/* Dotclear header: remove any inherited padding/inset that shifts the title */
#header .header-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}
/* =========================
   Dotclear: full-width blog
   ========================= */

/* Remove theme max-width constraints */
#page,
#wrapper,
#main,
#content,
#body,
#blog {
  max-width: none !important;
  width: 100% !important;
}

/* Remove automatic centering gutters from the theme */
#page,
#wrapper,
#main,
#content {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Optional: if the theme adds padding that creates a fixed “column” feel */
#content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Hide Dotclear sidebar / navigation blocks */
#sidebar,
#prelude,
.supranav,
#sn-top {
  display: none !important;
}
/* Make Dotclear main content use the same width/padding as your site */
#main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
/* ==========================================
   Dotclear blog: match main site styling
   (scoped so it doesn't hijack your header menu)
   ========================================== */

/* Ensure blog pages use your typography */
body.dc-home,
body.dc-post,
body.dc-page,
body.dc-archive,
body.dc-category,
body.dc-tags {
  font-family: Arial, sans-serif !important;
  color: #f3fffe;
}

/* --- YOUR HEADER MENU: force exact main-site behaviour --- */
#header .nav-links a {
  color: #f3fffe !important;              /* default off-white */
  background: transparent !important;     /* kill Dotclear hover box */
  text-decoration: none !important;
}

#header .nav-links a:hover {
  color: #ff6900 !important;              /* orange on hover */
  background: transparent !important;     /* no box */
}

#header .nav-links a.active,
#header .nav-links a[aria-current="page"] {
  color: #45d69d !important;              /* green when active */
  background: transparent !important;
}

/* Remove any theme hover/active “pill/box” effects on menu items */
#header .nav-links a:focus,
#header .nav-links a:active {
  background: transparent !important;
  outline: none;
}

/* --- BLOG CONTENT ONLY: links behave like your site links --- */
body.dc-home #main a,
body.dc-post #main a,
body.dc-page #main a,
body.dc-archive #main a,
body.dc-category #main a,
body.dc-tags #main a {
  color: #45d69d;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}

body.dc-home #main a:hover,
body.dc-post #main a:hover,
body.dc-page #main a:hover,
body.dc-archive #main a:hover,
body.dc-category #main a:hover,
body.dc-tags #main a:hover {
  color: #ff6900;
  text-decoration: underline;
}

body.dc-home #main a:visited,
body.dc-post #main a:visited,
body.dc-page #main a:visited,
body.dc-archive #main a:visited,
body.dc-category #main a:visited,
body.dc-tags #main a:visited {
  color: #45d69d;
}

/* Blog header title matches main site title */
#header .site-title {
  font-family: Arial, sans-serif !important;
  font-variant: normal !important;
  text-transform: none !important;
}

/* ================================
   RichardGott – Ductile dark skin
   Paste at END of theme CSS
   ================================ */

:root{
  /* Adjust these to match your site exactly */
  --rg-bg: #163746;          /* main site dark blue/teal */
  --rg-panel: rgba(9, 22, 28, .55); /* subtle darker slab */
  --rg-text: #f3f2ee;        /* off-white */
  --rg-muted: rgba(243,242,238,.75);
  --rg-accent: #66d19e;      /* green accent */
}

/* Page background (kills “pure black”) */
html, body{
  background: var(--rg-bg) !important;
  color: var(--rg-text) !important;
}

/* Ductile wrappers (these names cover most Ductile variants) */
#page, #wrapper, #top, #main, #content, #blog, .wrapper, .content, .main{
  background: transparent !important;
}

/* Give the reading area a “site-like” slab instead of black/white */
#content, #main, .content, .post, .entry, .post-content, .entry-content, article{
  background: var(--rg-panel) !important;
  color: var(--rg-text) !important;
  border-radius: 14px;
}

/* Typography + meta */
p, li, dt, dd{ color: var(--rg-text) !important; }
small, .meta, .post-info, .entry-info{ color: var(--rg-muted) !important; }

/* Links + headings */
a{ color: var(--rg-accent) !important; }
a:hover{ filter: brightness(1.1); }
h1,h2,h3,h4{ color: var(--rg-text) !important; }

/* If any “veil” still exists via opacity on containers */
#content, #main, .content, .wrapper{ opacity: 1 !important; }
							
							/* Match mockup: SOUNDING (green) + BOARD (off-white), same size/weight */
.rg-hero-title{
  margin: 0 0 18px;
  font-family: "Museo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 1.05;
  font-size: clamp(44px, 5.2vw, 74px);
}

.rg-hero-title span{
  display: inline-block;
}

/* creates the exact visual gap between the two words */
.rg-hero-sounding{ 
  color: #66d19e;
  margin-right: 0.28em;
}

.rg-hero-board{
  color: #f3f2ee;
}