/* ====================================
   Jaki Nelson - Main Stylesheet
   ==================================== */

/* Font Declarations */
/* ================== */
@font-face {
  font-family: "Lovelace";
  src: url("../fonts/Lovelace/Zetafonts - Lovelace Text Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lovelace";
  src: url("../fonts/Lovelace/Zetafonts - Lovelace Text Bold Italic.otf")
    format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* CSS Reset & Base Styles */
/* ======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* Typography */
  --font-family: Lovelace, Arial, sans-serif;

  /* Colors */
  --color-primary: #d12092;
  --color-bg: #fff;
  --color-white: #fff;
  --color-black: #000;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 15px;
  --spacing-md: 27px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;

  /* Breakpoints */
  --breakpoint-mobile: 767px;
  --breakpoint-tablet: 991px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
}

/* Base Elements */
/* ============== */
html {
  position: relative;
  min-height: 100%;
  color: var(--color-primary);
  background-size: 100% auto;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1em;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  html {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 12px;
  }
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--color-primary);
  text-decoration: none;
}

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

.fab:hover {
  color: var(--color-black);
}

.fabnoho:hover {
  color: var(--color-primary);
}

/* Layout Components */
/* ================== */
.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.flex-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: row;
}

.flex-row.align-items-center {
  align-items: center;
}

@media screen and (max-width: 991px) {
  .flex-row {
    flex-wrap: wrap;
  }
}

.flex-col {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 var(--spacing-sm);
}

.flex-col.col-50 {
  flex-basis: 50%;
  max-width: 50%;
}

@media screen and (max-width: 991px) {
  .flex-col {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

/* Utilities */
/* ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px;
  overflow: visible;
  clip: auto;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: underline;
  z-index: 9999;
}

.text-center {
  text-align: center;
  font-weight: bold;
}

/* Components */
/* =========== */

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  text-indent: 0.2em;
  letter-spacing: 0.4em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-white {
  color: #fff;
  background: var(--color-primary);
}

.btn-white:hover,
.btn-white:focus {
  color: var(--color-primary);
  background: var(--color-black);
}

.btn.links {
  max-width: 580px;
  width: auto;
  display: block;
  margin: var(--spacing-md) auto;
  font-size: 13px;
}

.btn.links:not(.contact-btn) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 991px) {
  .btn.links {
    font-size: 11px;
  }
}

@media screen and (max-width: 767px) {
  .btn.links {
    font-size: 9px;
  }

  .btn.links.contact-btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 400px) {
  .btn.links {
    font-size: 8px;
  }
}

/* Social Links */
.socials {
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials > li {
  display: inline-block;
  vertical-align: middle;
  font-size: xx-large;
}

.socials.mobile > li {
  margin-left: 7px;
  margin-right: 7px;
}

.socials > li.link {
  font-size: medium;
}

.socials > li.link-icon {
  font-size: xx-large;
}

.socials > li + li {
  margin-left: 20px;
}

.socials > li > a {
  color: var(--color-primary);
}

.socials > li > a:hover,
.socials > li > a:focus {
  color: var(--color-primary);
}

/* Header Styles */
/* ============== */
header {
  padding: 120px 0;
  text-align: left;
}

@media screen and (max-width: 991px) {
  header {
    padding: 30px 0;
    text-align: center;
  }
}

.header-content {
  padding-left: 30px;
}

@media screen and (max-width: 991px) {
  .header-content {
    padding-left: 0;
  }
}

.header-content h1 {
  margin: 0 0 40px 0;
}

.header-content .name {
  font-size: 60px;
  line-height: 1;
}

@media screen and (max-width: 400px) {
  .header-content .name {
    font-size: 30px;
  }
}

.header-content h1 img {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 991px) {
  .header-content h1 img {
    margin: 0 auto;
  }
}

/* Links Page Specific */
/* =================== */
.links-row {
  max-width: 580px;
  width: auto;
  display: block;
  margin: var(--spacing-md) auto;
  padding-left: 7px;
  padding-right: 7px;
  text-align: center;
}

.links-row.flex-row {
  display: flex;
}

/* Profile Elements */
/* ================ */
#Photo {
  width: 100px;
  height: 100px;
  display: block;
  margin: 8px auto 13px;
  border-radius: 25%;
}

#Name {
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  display: block;
  font-family: var(--font-family);
  width: 100%;
  text-align: center;
}

/* About Section */
/* ============= */
#about {
  margin: var(--spacing-md) 0;
}

#aboutContent .about-text p {
  line-height: 1.6em;
}

#aboutContent .about-text p:last-child {
  margin-bottom: 0;
}

/* Newsletter */
/* =========== */
.newsletter {
  margin-bottom: var(--spacing-lg);
}

.newsletter.mobile {
  padding: 2% 0;
  width: 100%;
}

.newsletter > span,
.newsletter > span h2 {
  display: block;
  margin-bottom: 35px;
  text-indent: 0.36em;
  letter-spacing: 0.72em;
}

@media screen and (max-width: 991px) {
  .newsletter > span {
    line-height: 1.2em;
  }
}

.newsletter form {
  position: relative;
  width: 100%;
  max-width: 436px;
  margin: 0 auto;
  padding-right: 125px;
}

@media screen and (max-width: 991px) {
  .newsletter form {
    padding-right: 100px;
    padding-left: 10px;
  }
}

.newsletter .input {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  font-size: 1rem;
  font-weight: normal;
  text-decoration: none;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: inherit;
  transition: var(--transition);
}

.newsletter .input:focus {
  outline: 0;
}

.newsletter .input::placeholder {
  color: var(--color-primary);
}

.newsletter .submit {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  text-indent: 0;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-appearance: none;
  appearance: none;
}

.mc-field-group {
  margin-bottom: 10px;
  margin-right: 8px;
  padding-right: 16px;
}

.mc-field-group-col {
  margin-left: 8px;
  padding-left: 8px;
}

#mc-embedded-subscribe {
  letter-spacing: 0.4em;
  margin-top: 34px;
}

/* Video Section */
/* ============= */
#videos {
  min-height: 300px;
}

#videos h2 {
  margin: 0 0 10px 0;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  text-indent: 0.2em;
  letter-spacing: 0.4em;
  padding: 12px;
}

#video-carousel {
  padding: 0 30px;
  position: relative;
  z-index: 10;
}

#video-carousel .item {
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  overflow: hidden;
  display: inline-block;
}

/* Fallback for when owl-carousel doesn't load */
#video-carousel:not(.owl-loaded) {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px 0;
}

#video-carousel .item a {
  display: block;
  opacity: 0.8;
  transition: var(--transition);
}

#video-carousel .item a:hover,
#video-carousel .item a:focus {
  outline: 0;
  opacity: 0.8;
}

/* Carousel Navigation */
#video-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  right: 0;
  margin: 0;
  pointer-events: none;
}

#video-carousel .owl-nav button {
  position: absolute;
  pointer-events: all;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  font-size: 24px !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#video-carousel .owl-nav button:hover {
  background: var(--color-black) !important;
}

#video-carousel .owl-nav .owl-prev {
  left: -20px;
}

#video-carousel .owl-nav .owl-next {
  right: -20px;
}

@media screen and (max-width: 991px) {
  #video-carousel .owl-nav .owl-prev {
    left: 10px;
  }

  #video-carousel .owl-nav .owl-next {
    right: 10px;
  }
}

/* Footer */
/* ====== */
footer {
  padding: 75px 0;
  background: var(--color-white);
}

@media screen and (max-width: 991px) {
  footer {
    padding: 30px 0;
    text-align: center;
  }
}

/* Responsive Design */
/* ================= */
@media only screen and (max-width: 991px) {
  #desktopCover {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  #mobileCover {
    display: none;
  }
}

/* Header Sections */
header .header-content .socials {
  margin-top: var(--spacing-xl);
}

@media screen and (max-width: 991px) {
  header .header-content .socials {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

header .header-content .socials > li {
  font-size: 1.75rem;
  line-height: 1em;
}
