/*!
Theme Name: northborn_capital


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
  - Normalize
  - Box sizing
# Base
  - Typography
  - Elements
  - Links
  - Forms
## Layouts
# Components
  - Navigation
  - Posts and pages
  - Comments
  - Widgets
  - Media
  - Captions
  - Galleries
# plugins
  - Jetpack infinite scroll
# Utilities
  - Accessibility
  - Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

html {
  line-height: 1.15;
  box-sizing: border-box;
  background-color: black;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre, code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}


/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
  font-family: sans-serif;
}

.holding-container {
  position: relative;
  display: flex;
  width: 100%;
  height: 100dvh; /* mobile-safe full height */
  overflow: hidden;
}

/* Left & Right background halves */
.bg-full{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 90%;
}

.bg-full img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  object-position: center;
}

.bg-full img.landscape {
  display: block;
}

.bg-full img.portrait {
  display: none;
}
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease;
}
  
img[loading="lazy"].loaded {
  opacity: 1;
}
  
/* Centered logo (overlapping the split) */
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 60vw;
}

/* Contact info bottom-right */
.contact-info {
  position: fixed;
  padding:22px 28px 28px 28px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  z-index: 3;
  text-align: left;
  width: 100%;
  max-width: 440px;
}

.contact-info p {
  color: #fff;
  text-decoration: none;
  border-bottom: none;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

p strong {
  font-weight: 500;
}

.contact-info a {
  color: #c1ecfa;
  text-decoration: none;
  border-bottom: none;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info p {
  margin: 0;
}

.contact-info p + p {
  margin: 1.2em 0 0 0;
}

@media (max-width: 768px) {
  .holding-container {
    flex-direction: row;
  }
  .logo {
    width: 100vw;
    padding: 48px;
  }
  .contact-info {
    font-size: 16px;
    padding: 16px 18px 18px 18px;
  }

  .bg-full img.landscape {
    display: none;
  }
  
  .bg-full img.portrait {
    display: block;
  }


}

/* Inline Contact Form 7 */
.wpcf7 {
  display: block;
  position: relative;
  border-bottom: 1px solid #c1ecfa;
  padding: 0 0 2px 0;
  background: transparent;
  margin: 0;
  width: 100%;
  line-height: 1;
  margin-top: -3px;
}

.wpcf7 p {
  display: flex;
  gap: 10px;
  margin: 0;
  line-height: 1;
}

/* Email field grows to fill remaining space */
.wpcf7-form-control-wrap[data-name="your-email"] {
  position: relative;
  flex: 1;
}

.wpcf7 input[type="email"] {
  border: none;
  outline: none;
  background: transparent;
  color: #c1ecfa;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  padding: 0;
  width: 100%;
}

.wpcf7 input[type="email"]::placeholder {
  color: #c1ecfa;
  opacity: 1;
}

/* Submit button pinned to right */
.wpcf7 input[type="submit"] {
  background: transparent;
  border: none;
  color: #c1ecfa;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  color: #ffffff;
}

.wpcf7-spinner {
  display: none !important;
}


.wpcf7-not-valid-tip {
  position: absolute;
  top: 3px;
  color: #ffffff;
  opacity: 0.6;
  right: 0;
  text-align: right;
  font-size: 16px;
}
.wpcf7 form .wpcf7-response-output {
  position: absolute;
  color: #ffffff;
  margin: 0;
  padding: 12px 0 0 0;
  border: none;
  opacity: 0.6;

}

.wpcf7 input[type="email"],
  .wpcf7 input[type="submit"] {
    height: 30px;
  }



/* Mobile adjustments */
@media (max-width: 768px) {
  .wpcf7 input[type="email"],
  .wpcf7 input[type="submit"] {
    font-size: 16px;
    height: 25px;
  }

  .wpcf7 {
    margin-top: -2px;
  }
}
