/* Modern Reset & Variables */
:root {
    --beige: #E8D5B7;
    --dark: #1A1A1A;
    --red: #B22222;
    --white: #FFFFFF;
    --gray-light: #F4F4F4;
    --container-width: 1100px;
}

html {
    scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body.solent-landing-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--beige);
    color: var(--dark);
    line-height: 1.6;
}

p {
	font-size: 1.2rem;
}

label {
	font-size: 1.2rem !important;
}

/* Layout Containers */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    width: 100%;
}

.white-bg { 
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Typography */
h1, h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

h1 { font-size: clamp(2.5rem, 8vw, 4rem); line-height: 1.1; }
h2 { font-size: 2rem; position: relative; padding-bottom: 15px; }
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--red);
}

/* The Grid System (The "Lines") */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Hero Section */
.hero-content {
	text-align: center;
	padding-top: 20px;
	text-transform: uppercase;
}

.club-logo-wrapper {
	margin-bottom: 20px;
	opacity: 0.9;
}

/* Club Logo Scaling */
.main-logo {
	max-width: 250px;
	height: auto;
}

/* The Main Headline */
.hero-title {
	color: var(--dark) !important;
	text-shadow: 0px 4px 15px rgba(0,0,0,0.6);
	margin-top: 10px;
	
}

/* The Subtitle */
.hero-subtitle {
	color: var(--dark) !important;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
	font-size: 1.5rem;
	letter-spacing: 1.5px;
	max-width: 600px;
	margin: 0 auto 20px auto;
}

/* The "Free Trial" Highlight */
.hero-highlight {
	color: var(--dark) !important; /* Makes the offer pop in red */
	margin-bottom: 30px;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: 2px;
	background: transparent; 
	display: block;
	padding: 0;
	border: none;
}

/* Push the button down slightly from the text */
.hero-btn {
	margin-top: 10px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 10px 10px 0px var(--dark); /* Brutalist shadow */
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--red);
}

/* Split Layout for Action Image */
.split-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
	text-align: left;
}

.split-col {
	flex: 1;
	min-width: 320px;
}

/* The Photo Frame */
.photo-frame {
	position: relative;
	border: 2px solid var(--dark);
	line-height: 0; /* Removes tiny gap at bottom of image */
}

.photo-frame img {
	width: 100%;
	height: auto;
	display: block;
}

.photo-accent {
	position: absolute;
	bottom: -15px;
	left: -15px;
	width: 60px;
	height: 60px;
	border-bottom: 6px solid var(--red);
	border-left: 6px solid var(--red);
	z-index: -1; /* Sits behind the frame */
}

/* Class Info section styling */
#schedule {
	padding: 40px 0;
	background-color: var(--beige);
}

.training-brief {
	max-width: 800px;
	margin: 0 auto;
	background: var(--white);
	border: 2px solid var(--dark);
	box-shadow: 6px 6px 0px var(--dark);
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.training-brief::before {
	content: "ACTIVE";
	position: absolute;
	top: 20px;
	right: -35px;
	background: var(--red);
	color: white;
	padding: 5px 40px;
	transform: rotate(45deg);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 2px;
}

.brief-kicker {
	display: block;
	color: var(--red);
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 3px;
	font-size: 1.2rem;
	margin-bottom: 10px;
	text-align: center;
}

.brief-title {
	margin-top: 0;
	margin-bottom: 30px;
	text-align: center !important;
}

.brief-content {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 25px 0;
	margin-bottom: 25px;
}

.brief-item {
	flex: 1;
	min-width: 200px;
}

.brief-item .label {
	display: block;
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 700;
	opacity: 0.6;
	margin-bottom: 5px;
	text-align: center;
}

.brief-item .value {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px;
	text-align: center;
}

.brief-footer p {
	font-size: 0.9rem;
	font-style: italic;
	margin: 0;
	opacity: 0.9;
}

/* Mobile Tweak */
@media (max-width: 600px) {
	.training-brief { padding: 30px 20px; }
	.brief-content { flex-direction: column; gap: 15px; }
}

/* Checkmark List */
.check-list {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.check-list li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: var(--red);
	font-size: 0.9rem;
	top: 2px;
}

/* Buttons */
.btn-wrapper { margin-top: 30px; }

.btn {
    display: inline-block;
    background: var(--dark);
    color: var(--beige) !important;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
	border-radius: 6px;
}

.btn:hover {
    background: var(--red);
    color: var(--white) !important;
}

.text-side .btn-wrapper {
	text-align: center !important;
}

/* Mobile Alignment */
@media (max-width: 768px) {
    .section { padding: 50px 0; text-align: center; }
    h1 { font-size: 2.5rem; }
}

/* FORM SECTION COLUMN LAYOUT */
/* Split Row Layout */
.split-row {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: center;
}

.split-col {
	flex: 1;
	min-width: 300px;
}

/* Info Panel (left) */
.info-panel .info-list {
	margin: 5px 0;
}

.info-item {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-item strong {
	display: block;
	color: var(--red);
	font-size: 0.8rem;
	letter-spacing: 1px;
}

.info-item span {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--dark);
}

/* Form Card (Right) */
.tactical-form-card {
	background: var(--beige);
	padding: 40px;
	color: var(--white);
	border: 2px solid var(--dark);
	box-shadow: 10px 10px 0px var(--dark);
	transition: transform 0.5s ease;
}

.tactical-form-card h3 {
	color: var(--dark) !important;
	text-align: center;
	text-transform: uppercase;
}

.tactical-form-card p {
	color: var(--beige);
	font-size: 0.9rem;
	margin-bottom: 15px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
	.split-row { gap: 20px; }
	.tactical-form-card { padding: 15px; box-shadow: 6px 6px 0px var(--dark); }
}

/* --- FORM CLEANUP --- */

/* 1. Remove the harsh black outline/glow when clicking into fields */
input:focus, 
textarea:focus, 
select:focus {
    outline: none !important;
    box-shadow: none !important;
    /* Optional: change the border color to red so the user knows where they are typing */
    border-color: var(--red) !important; 
}

/* 2. Style the Input Fields (Default State) */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea,
select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.1); /* Very subtle border */
    background: var(--white);
    font-family: inherit;
	font-size: 1.2rem;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

/* 3. The Submit Button (Default State) */
/* This covers almost every WP form plugin's button */
.wpforms-submit, 
.wpcf7-submit, 
button[type="submit"], 
input[type="submit"],
.btn-submit {
    display: block;
    width: 100%;
    background-color: var(--dark) !important;
    color: var(--beige) !important;
    padding: 18px 30px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
}

/* 4. The Hover State (Turn Red) */
.wpforms-submit:hover, 
.wpcf7-submit:hover, 
button[type="submit"]:hover, 
input[type="submit"]:hover {
    background-color: var(--red) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3); /* Subtle red glow */
}

.text-side h2 {
	text-align: center !important;
	text-transform: uppercase;
	font-size: 1.5rem;
	letter-spacing: 3px;
	margin-bottom: 8px;
	font-weight: 800;
}

.text-side h3 {
	margin-top: 0;
	margin-bottom: 8px;
	text-align: center !important;
	text-transform: uppercase;
	font-size: 1.5rem;
	letter-spacing: 3px;
	font-weight: 600;
}

/* Association Section Styling */
.association-wrapper {
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

.logo-badge {
	background: transparent;
	padding: 0px;
	border: none;
	box-shadow: none;
	display: inline-block;
	max-width: 300px;
	transition: all 0.3s ease;
}

.logo-badge:hover {
	transform: scale(1.02);
	border-color: var(--white);
}

.logo-badge img {
	width: 100%;
	height: auto;
	filter: drop-shadow( 7px 7px 0px var(--dark));
}

/* Kicker Style for the small header */
.kicker {
	color: var(--red);
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: 3px;
	margin-bottom: 10px;
	font-weight: 800;
}

/* FAQ Page Styling */

/* FAQ Page Specific Layout & Spacing */
.faq-layout-stack {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item.card {
    padding: 30px;
    text-align: left;
}

/* Style the question as an interactive button link */
.faq-question {
    margin: 0;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Subtle directional arrow indicators */
.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    color: var(--red);
    transition: transform 0.2s ease;
}

/* Rotates the arrow indicator up when active toggle is triggered */
.faq-item.is-active .faq-question::after {
    transform: rotate(180deg);
}

/* Separator styling when answer is displayed */
.faq-answer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
	display: none;
}

/* Tactical Sticky Navigation */
.tactical-nav {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	border-bottom: 2px solid var(--dark);
	z-index: 1000;
	box-shadow: 0 4px 0px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	font-weight: 900;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--dark);
	text-decoration: none;
	letter-spacing: 1px;
}

.nav-logo:hover {
    color: var(--red) !important;
}

.nav-links {
	display: flex;
	gap: 25px;
	align-items: center;
}

.nav-links a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 1px;
	transition: color 0.2s ease;
}

.nav-links a:hover {
	color: var(--red);
}

.nav-links .nav-btn {
	background: var(--dark);
	color: var(--beige) !important;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 0.85rem;
}

.nav-links .nav-btn:hover {
	background: var(--red);
	color: var(--white) !important;
}

/* Mobile adjustment to keep it looking clean on phones */

@media (max-width: 600px) {
	.nav-links {
		gap: 15px;
	}
	.nav-links a.home-link {
		display: none; /* Hides "Home" on mobile view */
	}
	.nav-logo {
		font-size: 1rem;
	}
}
