/*
Theme Name: Respawnify Theme
Theme URI: http://localhost/respawnify
Author: Respawnify
Author URI: http://localhost/respawnify
Description: Custom marketing landing theme for Respawnify.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: respawnify-theme
*/

@import url("assets/css/main.css");

/* Font faces - added directly to ensure they load */
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Heading Now Trial";
  src: url("assets/fonts/HeadingNowTrial-66Bold.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Heading Now Trial";
  src: url("assets/fonts/HeadingNowTrial-66Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@import url("assets/css/main.css");

/* Custom styles */

html {
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  header > div {
    max-width: 1360px !important;
    margin: 0 auto !important;
    padding: 12px 28px !important;
  }
  .desktop-nav {
    display: flex !important;
    flex: 1;
    justify-content: center;
  }
  .desktop-cta {
    display: inline-block !important;
  }
  #mobile-menu-toggle {
    display: none !important;
  }
  #mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none !important;
  }
  .desktop-cta {
    display: none !important;
  }
  #mobile-menu-toggle {
    display: flex !important;
  }
}

#mobile-menu-toggle span {
  transition:
    transform 0.3s,
    opacity 0.3s;
}

#mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

#mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

#mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

nav ul li a {
  color: white;
}
nav a {
  color: white !important;
}

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

.respawnify-field input::placeholder,
.respawnify-field textarea::placeholder {
  color: #b7aa7f;
  opacity: 1;
}

/* base inputs */

.respawnify-field input,
.respawnify-field textarea,
.respawnify-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #3a3a3a;
  padding: 12px 0;
  color: white;
  outline: none;
  font-size: 15px;
}

/* placeholder color */

.respawnify-field input::placeholder,
.respawnify-field textarea::placeholder {
  color: #b7aa7f;
  opacity: 1;
}

/* select styling */

.respawnify-select {
  position: relative;
}

.respawnify-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #b7aa7f;
  cursor: pointer;
  padding-right: 28px;
}

/* custom arrow */

.respawnify-select::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #b7aa7f;
  font-size: 14px;
  pointer-events: none;
}
.respawnify-submit {
  margin-top: 32px;
}

.respawnify-submit input[type="submit"] {
  width: 100%;
  background: #c92a06;
  color: white;
  padding: 16px 20px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.respawnify-submit input[type="submit"]:hover {
  background: #e33c16;
}
.wpcf7-response-output {
  color: white;
}

.respawnify-field input,
.respawnify-field textarea,
.respawnify-field select {
  background: #040404 !important;

  color: #b7aa7f;
}

@media (min-width: 768px) {
    .ready-btn {
width: auto !important;
}
}