/*
 Theme Name:   Jay Galle
 Theme URI:    https://wordpress.org/themes/twentyninteen/
 Description:  Custom theme built for Jay Galle
 Author:       
 Template:     twentynineteen
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  galle-fl
*/

/* ========= COLOR REFERENCES ========= */
:root {
  --gradient-bg: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 50%,
    rgba(178, 200, 250, 0.25) 100%
  );
  --red: #98002e;
  --darktext: #0c284c;
  --lighttext: #d9d9d9;
  --grey: #cecece;
  --periwinkle: #b2c8fa;
}

/* ==================================== */

/* ======== TABLE OF CONTENTS =========
	1. TYPOGRAPHY
	2. GLOBAL
	3. MAIN CONTENT
	- 3a. Landing Page
	- 3b. About Page
	- 3c. Issues Page
/* ==================================== */

/* ------------------------------ 
    1. Start Typography
------------------------------ */
.minion-pro {
  font-family: "minion-pro", serif;
}

.lato-light {
  font-family: "lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fw-400 {
  font-weight: 400;
}

.fw-700 {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
.btn,
button {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0;
}

h1,
.h1 {
  font-family: "lato", sans-serif;
  font-weight: 300;
  font-size: 2.5em;
  /* font-size: 40px; */
  line-height: 1;
}

h2,
.h2 {
  font-family: "minion-pro", serif;
  font-weight: 700;
  font-size: 2.1875em;
  /* font-size: 35px; */
  line-height: 1;
}

h3,
.h3 {
  font-family: "lato", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
}

p,
.p {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-size: 20px;
}

a,
.anchor-theme {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  /* text-decoration: none !important; */
  transition: none;
  line-height: 40px;
  border: none;
  background: none;
  color: inherit;
}

a:hover,
a:focus,
.anchor-theme:hover,
.anchor-theme:focus {
  font-weight: 700;
  color: inherit;
  /* color: var(--darktext); */
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.nav-link {
  padding: 0;
}

/* nav a {
} */

nav .current-menu-item a {
  font-weight: 700;
}

nav .btn-red {
  margin-left: 20px;
  padding: 0 15px;
  background-color: var(--red);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  padding: 7px 25px;
  transition: all 200ms linear;
}

/* ------------------------------ 
    1. End Typography
------------------------------ */

/* ------------------------------ 
    2. Start Global
------------------------------ */
@-ms-viewport {
  width: device-width;
}

html {
  font-size: 16px;
}

body {
  font-family: "minion-pro", serif;
  font-size: 16px;
  color: var(--darktext);
}

header {
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 0;
  left: 0;
}

section {
  position: relative;
}

img {
  width: 100%;
}

.ls-100 {
  letter-spacing: 0.1em;
}

.bg-gradient {
  background: var(--gradient-bg);
}

.bg-grey {
  background: #d9d9d9;
}

.color-light {
  color: var(--lighttext);
}

.mobile {
  display: none;
}

.btn-red {
  background: var(--red) !important;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  padding: 7px 25px;
  transition: all 200ms linear;
}

.btn-red:hover {
  text-decoration: none;
  color: #fff;
  background: #be0039 !important;
}

#page {
  padding-top: 175px;
}

.footer-logo img,
.header-logo img {
  max-width: 172px;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}

/* forms */
.gform_wrapper.gravity-theme #field_submit .gform-button,
.gform_wrapper.gravity-theme .gform_footer .gform-button {
  height: 100%;
  background-color: var(--red);
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 5px;
  font-size: 20px;
  transition: all 200ms linear;
}

.gform_wrapper.gravity-theme #field_submit .gform-button:hover,
.gform_wrapper.gravity-theme .gform_footer .gform-button:hover {
  background-color: #be0039;
}

.ginput_container input {
  border: none;
  border-radius: 5px;
}

.ginput_container input:hover {
  font-style: italic;
}

.gform_confirmation_message {
  /* color: white; */
  text-align: center;
  margin-bottom: 30px;
}

/* .name_first input::placeholder,
.name_last input::placeholder,
.ginput_container input::placeholder {
    font-weight: 400;
} */

/* .name_first input:hover,
.name_last input:hover,
.ginput_container input:hover,
.name_first input:focus,
.name_last input:focus,
.ginput_container input:focus,
.name_first input:active,
.name_last input:active,
.ginput_container input:active {
    background-color: rgba(26, 24, 24, 0.4);
} */

/* ------------------------------ 
    2. End Global
------------------------------ */

/* ------------------------------ 
    3. Start Main Content
------------------------------ */
/*  - 3a. Landing Page  */
.page-template-page-lp .splash {
  background: linear-gradient(
      to bottom,
      rgba(3, 48, 105, 0.8),
      rgba(3, 48, 105, 0.8)
    ),
    url("/wp-content/uploads/sites/219/2023/03/1_hero_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 135px 0;
  color: #fff;
}

.page-template-page-lp .splash .profile-img {
  width: 60%;
  max-width: 450px;
}

.page-template-page-lp .header-container .large-text {
  font-size: 1.875em;
  /* font-size: 75px; */
  font-family: "minion-pro", serif;
  font-weight: 700;
  font-style: italic;
}

.page-template-page-lp .header-container .splash-icon {
  height: 45px;
  width: auto;
}

.page-template-page-lp .form-section .divider {
  width: 2px;
  height: 93px;
  background-color: var(--red);
}

.bg-map {
  background-image: url("/wp-content/uploads/sites/219/2023/09/blue-map.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-map .h1 {
  font-family: "minion-pro", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 75px;
}

/*  - 3b. About Page  */
.page-template-page-about .splash {
  background: url("/wp-content/uploads/sites/219/2023/03/2_hero.jpg") no-repeat
    center center;
  background-size: cover;
  color: #fff;
  padding: 7% 0;
  /* padding-bottom: 5%; */
}

/*  - 3c. Issues Page  */
.page-template-page-issues .splash {
  background: linear-gradient(
      to bottom,
      rgba(3, 48, 105, 0.9),
      rgba(0, 0, 0, 0.6)
    ),
    url("/wp-content/uploads/sites/219/2023/03/3_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  padding: 184px 0;
  /* padding-bottom: 5%; */
}

.page-template-page-issues .jay-galle {
  /* font-size: 120px; */
  font-size: 7.5em;
  font-family: "minion-pro", serif;
  font-weight: 700;
  font-style: italic;
  /* color: var(--lighttext); */
}

.page-template-page-issues .main-section {
  min-height: 75vh;
}

.page-template-page-issues .issue-card {
  border: 1px solid var(--grey);
  padding: 30px 20px 15px;
}

.page-template-page-issues .issue-card .card-icon {
  height: 45px;
  width: auto;
  margin-bottom: 20px;
}

.page-template-page-issues .issue-card .down-arrow,
.page-template-page-issues .issue-card .close-icon {
  width: 21px;
  cursor: pointer;
}

.page-template-page-issues .issue-card .down-arrow {
  display: none;
}

.page-template-page-issues .issue-card.collapsed .down-arrow {
  display: inline-block;
}

.page-template-page-issues .issue-card.collapsed .expanded-content,
.page-template-page-issues .issue-card.collapsed .close-icon {
  display: none;
}

.privacy-policy a {
  word-break: break-all;
}

/* ------------------------------ 
    3. End Main Content
------------------------------ */
