/*
Theme Name: Basic One Page
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Ultra-minimal one-page WordPress theme boilerplate with modern CSS reset.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basic-onepage
*/

/* =====================================
   MODERN CSS RESET
   ===================================== */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
}

/* Allow percentage-based heights */
html,
body {
    height: 100%;
}

/* Improve text rendering */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
    font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Media elements behave predictably */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Remove list styles on ul, ol elements with a class */
ul[class],
ol[class] {
    list-style: none;
    padding: 0;
}

/* =====================================
   color
   ===================================== */

.orange { color: #f25926; }
.orange-bg { background-color: #f25926; }
.orange-bg-8 { background-color: rgba(242,89,38,0.85); }

/* =====================================
   FONTS
   ===================================== */

/* Minion Pro – Regular */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Minion Pro – Italic */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-It.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Minion Pro – Medium */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Minion Pro – Medium Italic */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-MediumIt.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Minion Pro – Semibold */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Minion Pro – Semibold Italic */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-SemiboldIt.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Minion Pro – Bold */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Minion Pro – Bold Italic */
@font-face {
  font-family: "Minion Pro";
  src: url("assets/fonts/MinionPro-BoldIt.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Minion Pro – Bold Condensed */
@font-face {
  font-family: "Minion Pro Condensed";
  src: url("assets/fonts/MinionPro-BoldCn.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Minion Pro – Bold Condensed Italic */
@font-face {
  font-family: "Minion Pro Condensed";
  src: url("assets/fonts/MinionPro-BoldCnIt.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* =====================================
   FONT UTILITY CLASSES
   ===================================== */

.minion {
  font-family: "Minion Pro", Georgia, "Times New Roman", serif;
}

.minion-regular {
  font-family: "Minion Pro", serif;
  font-weight: 400;
  font-style: normal;
}

.minion-italic {
  font-family: "Minion Pro", serif;
  font-weight: 400;
  font-style: italic;
}

.minion-medium {
  font-family: "Minion Pro", serif;
  font-weight: 500;
}

.minion-medium-italic {
  font-family: "Minion Pro", serif;
  font-weight: 500;
  font-style: italic;
}

.minion-semibold {
  font-family: "Minion Pro", serif;
  font-weight: 600;
}

.minion-semibold-italic {
  font-family: "Minion Pro", serif;
  font-weight: 600;
  font-style: italic;
}

.minion-bold {
  font-family: "Minion Pro", serif;
  font-weight: 700;
}

.minion-bold-italic {
  font-family: "Minion Pro", serif;
  font-weight: 700;
  font-style: italic;
}

.minion-condensed {
  font-family: "Minion Pro Condensed", serif;
  font-weight: 700;
}

.minion-condensed-italic {
  font-family: "Minion Pro Condensed", serif;
  font-weight: 700;
  font-style: italic;
}

/* =====================================
   BASE STYLES
   ===================================== */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
    color: #111;
}

/* Main wrapper */
main {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap; /* allows stacking */
    max-width: 1280px;
    margin: 0 auto;    
}

@media (max-width: 640px) {
	main {
    	padding: 2rem 1rem;
	}	
	
	main .splash-50 {
    	padding-left: 0;
    	padding-right: 0;    	
	}		
}


/* Optional: sensible spacing defaults */
p + p {
    margin-top: 1rem;
}

.z-1 {
z-index: 1;	
}

.z-5 {
z-index: 5;	
}

.z-10 {
z-index: 10;
}

/* =====================================
   tenby font
   ===================================== */
.tenby-five {   
font-family: "tenby-five", sans-serif;
font-style: normal;   
}
.tenby-300 {
font-weight: 300;
}
.tenby-700 {
font-weight: 700;
}

/* =====================================
   Quire Sans
   ===================================== */

.quire-regular {
    font-family: "quire-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.quire-regular-italic {
    font-family: "quire-sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.quire-bold {
    font-family: "quire-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.quire-bold-italic {
    font-family: "quire-sans", sans-serif;
    font-weight: 700;
    font-style: italic;
}

/* Quire Sans Fat */
.quire-fat {
    font-family: "quire-sans-fat", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.quire-fat-italic {
    font-family: "quire-sans-fat", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* =====================================
   SPLASH
   ===================================== */
   

.splash {
    width: 100%;
	/*background: url('assets/img/splash-bg-desktop.jpg') center center no-repeat;
	background-size: cover;*/
	background-color: #27282d;
    padding: 0; 
    position: relative;
    overflow: hidden;
    min-height: 580px;  
}

@media (max-width: 768px) {
	.splash {
	    min-height: unset;
	    padding-bottom: 2rem;
	}	
}

.splash-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;    
}

.splash-inner {
    display: flex;
    flex-wrap: wrap; /* allows stacking */
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
}

.splash-50 {
    flex: 0 0 50%;
    width: 50%;
    padding: 2rem;
    position: relative;    
}

body.logged-in .splash-50 {
    border: dashed 1px #fc0;	
}

.ai-driven {
padding: 10px;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
color: #fff;
text-align: center;
font-size: 24px;	
}

.ai-driven br {
display: none;	
}

/* Tablet and down */
@media (max-width: 768px) {
	
	.ai-driven {
		font-size: 20px;	
	}
	
	.splash-bg {
	object-position: 23% 0;
	}
	
	.splash::before {
	content: '';
	z-index: 3;
	background-color: #27282d;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	}	
	
    .splash-50 {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .no-mobile {
    	display: none;	
    }
}

@media (max-width: 640px) {
	
	.splash-50 {
	    padding: 0 1.5rem 1rem;
	}	
	
	.ai-driven {
		line-height: 1;		
	}
	
	.ai-driven br {
		display: inline;
	}
}
 
.splash-50 h1 {
	text-align: right;
	color: #fff;
	line-height: 1.1;
	padding-right: 1.2rem;
	font-size: 3.2rem;
} 

@media (max-width: 960px) {
	.splash-50 h1 {
		font-size: 2.6rem;
	}  	
}
 

@media (max-width: 768px) {
	.splash-50 h1 {
		text-align: center;
		padding-right: unset;
	}  	
}

@media (max-width: 640px) {
	.splash-50 h1 {
		font-size: 2rem;
	}  	
}

.logo-top {
	max-width: 500px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 0 1rem auto;	
}

.logo-top-mobile {
display: none;
}

@media (max-width: 768px) {
	
	.logo-top {
		display: none;
	}
	.logo-top-mobile {
		max-width: 400px;
		width: 100%;
		height: auto;
		display: block;
		margin: 0 auto 1rem;	
	}	
	
}

.benefits li {
margin-bottom: 1rem;
padding-left: 75px;
position: relative;
}

.benefits li strong {
font-size: 26px;
}

.benefits li p {
font-size: 20px;	
}

.benefits .pp-icon {
position: absolute;
left: 0;
top: 0;	
}

@media (max-width: 640px) {
	
	.benefits li {
	padding-left: 0;
	text-align: center;
	}	

	/*.benefits .pp-icon {
		width: 40px;
		height: 40px;	
	}*/
	
	.benefits .pp-icon {
	position: relative;
	margin: 0 auto 10px;	
	}
	
	.benefits li strong {
	font-size: 20px;
	line-height: 1.1;
	}
	
	.benefits li p {
	font-size: 16px;	
	}
	
	.benefits li p br {
	display: none;
	}
	
	
}

#gform_submit_button_1 {
	width: 100%;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	font-size: 22px;
	font-weight: 600;

font-family: "tenby-five", sans-serif;
font-style: normal;   
font-weight: 700;
padding: 12px 0;		
}

#gform_fields_1 {
	row-gap: 15px;	
}


/* CCN Footer */

footer {
text-align: center;
padding: 1rem;
font-size: 14px;	

font-family: "tenby-five", sans-serif;
font-style: normal;   
font-weight: 700;	
letter-spacing: 1px;

}

/* CCN Follow */

.ccn-follow {
    max-width: 640px;
    width: 100%;
    margin: 0 auto 1rem; /* bottom margin added */
    padding: 10px;

    display: flex;
    align-items: center;

    border: 1px solid #999;
    border-radius: 300px;
    background-color: #f2f1f1;
    opacity: 1;
    transition: opacity 0.2s ease;
}



.ccn-col {
    width: 50%;
    text-align: center;
}

/* Logo */
.ccn-logo img {
    display: block;
    margin: 0 auto;
    width: 200px;
    height: auto;
}

/* Instagram */
.ccn-instagram a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.ccn-follow a:hover,
.ccn-instagram a:hover {
    opacity: 0.7;
}

.ccn-instagram .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
    color: #E1306C;
    margin-bottom: 6px;
}

.ccn-instagram-text {
    font-size: 14px;
    text-align: center;
}


.ccn-instagram br {
	display: none;	
}

@media (max-width: 640px) {
	.ccn-instagram br {
		display: inline;	
	}
}