
/* Variables */
:root {
	--primary-red: #f00;
	--primary-blue: #06c;
	--white: #fff;
	--dark: #333;
}

h1, h2, h3, h4 {
	text-transform: none;
}

/* Hero Banner */
.hero-banner {
	background-color: var(--primary-red);
	color: var(--white);
	/*padding: 60px 20px;*/
	padding: 0 12px;
	position: relative;
	overflow: hidden;
	min-height: 630px;
	background-image: linear-gradient(to right, rgba(255, 0, 0, 1) 50%, rgba(255, 0, 0, .85) 100%);
}

/*.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('/wp-content/uploads/more-than-fans-banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}*/
.hero-image {
	position: absolute;
	top: 57px;
	right: 0;
	/*width: 50%;*/
	height: 100%;
	z-index: 1;
}

.hero-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.hero-content {
	max-width: 800px;
	/*margin: 0 auto;
    padding-right: 50%;*/
	
	/* Space for the image */
	position: relative;
	z-index: 2;
	/* Ensure content stays above the image */
	
	/*padding-left: 150px;*/
	margin-top: 140px;
}

.tag {
	display: inline-block;
	background-color: var(--white);
	color: var(--primary-red);
	padding: 8px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
	font-size: 18px;
}

.hero-content h1 {
	font-size: 70px;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
	color: #fff;
}

.hero-content p {
	color: #fff;
}

.subtitle {
	font-size: 24px;
	margin-bottom: 30px;
}

.cta-button {
	display: inline-block;
	background-color: var(--white);
	color: var(--primary-red);
	padding: 12px 24px;
	border-radius: 4px;
	text-decoration: none;
	transition: all .3s ease;
	font-size: 18px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

/* Main Content */
.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}

.section-title {
	font-size: 36px;
	margin-bottom: 20px;
}

.section-description {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 40px;
}

/* Two Column Section */
.two-column-section {
	/*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;*/
	display: flex;
	width: 100%;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.two-column-section .column {
	width: 50%;
	flex: 1 1 50%;
}

.two-column-section .column h3 {
	margin-bottom: 13px;
}

.benefits-list {
	list-style: none;
	padding: 0;
}

.benefits-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 15px;
	font-size: 16px;
}

.benefits-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 12px;
	height: 12px;
	background-color: var(--primary-red);
	border-radius: 22%;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 35px;
	margin-top: 30px;
}

.benefit-item {
	/*background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;*/
	position: relative;
	font-size: 16px;
}

.benefits-grid {
	list-style: none;
	padding-left: 20px;
}

.benefits-grid li::before {
	content: "";
	position: absolute;
	left: -19px;
	top: 3px;
	width: 12px;
	height: 12px;
	background-color: var(--primary-red);
	border-radius: 22%;
}

/* Catalog Section */
.catalog-section {
	/*background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin: 60px 0;*/
	padding: 60px 0 0 0;
}

.catalog-link {
	color: var(--primary-red);
	text-decoration: underline;
}

.catalog-section h2.heading {
	margin-bottom: 20px;
}

/* Contact Section */
.contact-section {}

.gravity-form-placeholder label.gfield_label {
	display: none !important;
}

.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
	border-radius: 0px !important;
	background: #fff !important;
	border: 1px solid #ddd;
	color: #999 !important;
}

.gform_wrapper.gravity-theme .gfield input::placeholder {
	color: #999 !important;
}

.gform-footer .button {
	text-transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-image {
		top: 261px;
		right: -262px;
	}
	
	.hero-image img {
		width: 65%;
	}
}

@media (max-width: 820px) {
	.hero-image {
		top: 295px;
		right: -300px;
	}
	
	.hero-image img {
		width: 60%;
	}
}

@media (max-width: 768px) {
	.hero-image {
		top: 261px;
		right: -262px;
	}
	
	.hero-image img {
		width: 65%;
	}
	
	.hero-content {
		padding-right: 0;
	}
	
	.hero-content h1 {
		font-size: 36px;
	}
	
	.subtitle {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.two-column-section .column {
		width: 100%;
		flex: 1 1 100%;
		margin-bottom: 20px;
	}
	
	.hero-image {
		position: relative;
		top: 10px;
		width: 100%;
		right: 0;
	}
	
	.hero-content {
		margin-top: 90px;
	}
	
	.hero-image img {
		width: 100%;
	}
}

.breadcrumbs-wrap {
	padding-bottom: 0;
}

.gform_wrapper .gchoice {
	margin-bottom: 10px;
}

.gform_wrapper h3 {
	margin-bottom: 0;
}
