/*
Theme Name: Kaiju Theme
Theme URI: 
Author: Kay
Author URI: 
Description: A custom WordPress theme inspired by giant monsters (“Kaiju”), featuring a bold, dynamic, and cinematic design aesthetic.
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kaiju-theme
Tags: 
*/

/* navigation */
.navLg { display: none; }
.navSmWrap { margin-right: 2em !important; }
.navSm rect { height: 3px; }
.navSmWrap .wp-block-navigation__responsive-container-open svg {
    background-color: #ccdc48;
    height: 28px;
    padding: 0 3px;
    border-radius: 3px;
    margin-top: -8px
}

.navSm ul {
    width: 100%;
    text-align: center;
}

.navSm ul li {
    border-bottom: solid 1px #ccdc48;
    display: block !important;
    width: 100%;
    padding: 0px 5px 15px;
}

.navSm button.wp-block-search__button {
    background-color: #62b9d1;
}

.navSm :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    border: none;
}

.navSm form {
    margin: auto;
}
.inlineNewsletterSignup .newsletter-form {
    justify-content: flex-start;
}

@media (min-width: 782px) and (max-width: 950px) {
    .inlineNewsletterSignup .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (min-width: 782px) {
    .navSmWrap { display: none; }
    .navLg {
        display: flex;
        padding-right: 2rem;
    }
    .menuWrapInner {
        max-width: 1200px;
        margin: auto !important;
    }
    /* footer */
    .footColWrap div:nth-of-type(2) > * {
      text-align: left!important;
    }
    .footColWrap div:last-of-type > * {
      text-align: right!important;
      justify-content: flex-end;
    }
}

/* post page styles */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto 10rem;
  padding: 0 1rem;
}
.sidebar {
  max-width: 800px;
  margin: 0 auto;
}
.main-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
/*article*/
.main-layout > *:first-child {
  flex: 0 0 100%;
  max-width: 100%;
}
/*sidebar*/
.main-layout > *:last-child {
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  /*article*/
  .main-layout > *:first-child {
    flex: 0 0 60%;
    max-width: 60%;
  }
  /*sidebar*/
  .main-layout > *:last-child {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
/* Sidebar category links styled as buttons */
.wp-block-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* margin: 0; */
  padding: 0;
  list-style: none;
}
/* .wp-block-categories-list .cat-item {
  margin: 0;
} */
.wp-block-categories-list .cat-item a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #6f675e;
  border-radius: 8px;
  background: #6f675e;
  color: white;
  line-height: 1.1;
}
a {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

/* Hover state for sidebar category buttons */
.wp-block-categories-list .cat-item a:hover {
  border: 1px solid #b85c38;
  background: #b85c38;
  color: white;
}
/* Zebra styling for blog post list */
.blog .odd {
  background-color: white
}
.blog .odd, .blog .even {
  margin-top: 0;
}

.menuWrap {
    position: relative;
    z-index: 20;
    box-shadow: 0 0 4px #006b7e,
                0 0 8px #006b7e;
}

/* hero image */
.heroWrap {
    position: absolute;
    top: 0;
    z-index: 0;
    width: 100%;
    padding-top: 200px !important;
    padding-bottom: 4rem !important;
}

.wp-block-separator {
    border-width: 1px;
}

/* CONTACT FORM styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

.contact-form input,
.contact-form textarea {
    padding: .5rem;
    font-size: 1rem;
    font-family: var(--wp--preset--font-family--poppins);
}

.contact-form textarea {
    height: 6rem;
}
.contact-form button {
    background: var(--wp--preset--color--custom-primary-kaiju-green);
    color: var(--wp--preset--color--custom-surface);
    padding: 0.75rem;
    border: none;
    cursor: pointer;
}

/* fluid typography styles*/
h1 {
    font-size: clamp(2.44rem, 1.74vw + 2.01rem, 3.75rem);
}
h2 {
    font-size: clamp(1.95rem, 1.15vw + 1.67rem, 2.81rem);
}
h3 {
    font-size: clamp(1.56rem, .73vw + 1.38rem, 2.11rem);
}
h4 {
    font-size: clamp(1.25rem, .44vw + 1.14rem, 1.58rem);
}
h5, p {
    font-size: clamp(1rem, .25vw + 1.67rem, 1.19rem);
}
