/**
 * Our Founders Template Styles
 *
 * @package ceron
 */

/* ===================================
   BANNER SECTION
   =================================== */

.founders-banner {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.founders-banner-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--container-padding);
	text-align: center;
	color: #ffffff;
}

.founders-banner-content h1 {
	font-size: 60px;
	font-weight: 300;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

.founders-banner-content .banner-subtitle {
	font-size: 60px;
	line-height: 34px;
	margin: 0;
	opacity: 0.9;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.founders-content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	gap: 102px;
}

.founders-section {
	padding: 0;
}

.founders-section-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.founders-section-inner.reverse {
	grid-template-columns: 1fr 1fr;
}

.section-content {
	max-width: 645px;
}

.section-content h2 {
	font-size: 50px;
	font-weight: 300;
	line-height: 60px;
	color: #180a2c;
	margin: 0 0 30px 0;
}

.section-text {
	font-size: 18px;
	line-height: 30px;
	color: #666666;
}

.section-text p {
	margin: 0 0 20px 0;
}

.section-text p:last-child {
	margin-bottom: 0;
}

.section-image {
	position: relative;
	overflow: hidden;
}

.section-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.section-image:hover img {
	transform: scale(1.08);
}

/* ===================================
   QUOTE SECTION
   =================================== */

.founders-quote {
	background: #f5f5f5;
	padding: 100px 0;
}

.founders-quote-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}

.founders-quote .quote-title {
	font-size: 50px;
	font-weight: 300;
	line-height: 60px;
	color: #180a2c;
	margin: 0;
	text-align: center;
}

.founders-quote .quote-content {
	position: relative;
	max-width: 1140px;
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.founders-quote .quote-content::before {
	content: '';
	background-image: url('../icons/quote1.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width: 67px;
	height: 51px;
	flex-shrink: 0;
}

.founders-quote .quote-content::after {
	content: '';
	background-image: url('../icons/quote2.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
	width: 67px;
	height: 51px;
	flex-shrink: 0;
	align-self: flex-end;
}

.founders-quote .quote-text {
	font-size: 16px;
	line-height: 26px;
	color: #666666;
	margin: 0;
	flex: 1;
}

.founders-quote .quote-text p {
	margin: 0 0 16px 0;
}

.founders-quote .quote-text p:last-child {
	margin-bottom: 0;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.founders-gallery {
	background-color: #f5f5f5;
	padding: 0;
}

.founders-gallery-inner {
	max-width: 1200px;
	margin: 0 auto;
	column-count: 3;
	column-gap: 22px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	margin-bottom: 22px;
	break-inside: avoid;
}

.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s ease;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet Large (1200px and below) */
@media (max-width: 1200px) {
	.section-content h2 {
		font-size: 42px;
	}

	.section-image {
		width: 400px;
		height: 400px;
	}
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
	.founders-banner {
		min-height: 400px;
	}

	.founders-banner-content h1 {
		font-size: 48px;
	}

	.founders-banner-content .banner-subtitle {
		font-size: 20px;
	}

	.founders-content-wrapper {
		padding: 80px var(--container-padding);
		gap: 80px;
	}

	.founders-section-inner,
	.founders-section-inner.reverse {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.section-content {
		max-width: 100%;
	}

	.section-content h2 {
		font-size: 38px;
	}

	.section-image {
		width: 100%;
		height: 400px;
	}

	.founders-quote {
		padding: 80px 0;
	}

	.founders-quote .quote-title {
		font-size: 42px;
	}

	.founders-quote .quote-content {
		flex-direction: column;
		gap: 40px;
	}

	.quote-content {
		padding: 0 20px;
	}

	.founders-quote .quote-content::before {
		width: 50px;
		height: 38px;
	}

	.founders-quote .quote-content::after {
		width: 50px;
		height: 38px;
	}

	.founders-gallery-inner {
		column-count: 2;
	}
}

/* Tablet Small (768px and below) */
@media (max-width: 768px) {
	.founders-banner {
		min-height: 300px;
		background-position: right;
	}

	.founders-banner-content h1 {
		font-size: 36px;
	}

	.founders-banner-content .banner-subtitle {
		font-size: 18px;
		line-height: 1.5;
	}

	.founders-content-wrapper {
		padding: 60px var(--container-padding);
		gap: 60px;
	}

	.founders-section-inner {
		gap: 30px;
	}

	.section-content {
		order: 1;
	}

	.section-image {
		order: 2;
	}

	.section-content h2 {
		font-size: 32px;
		margin-bottom: 0;
	}
	
	.founders-quote .quote-content {
		padding: 0 20px;
	}

	.section-text {
		font-size: 16px;
		line-height: 1.6;
	}

	.section-image {
		height: 350px;
	}

	.founders-quote {
		padding: 60px 0;
	}

	.founders-quote-inner {
		gap: 40px;
	}

	.founders-quote .quote-title {
		font-size: 32px;
	}

	.founders-quote .quote-content {
		gap: 30px;
	}

	.founders-quote .quote-content::before {
		width: 40px;
		height: 30px;
	}

	.founders-quote .quote-content::after {
		width: 40px;
		height: 30px;
	}

	.founders-quote .quote-text {
		font-size: 15px;
		line-height: 24px;
	}

	.founders-gallery-inner {
		column-count: 2;
		column-gap: 15px;
	}

	.gallery-item {
		margin-bottom: 15px;
	}
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
	.founders-banner {
		min-height: 250px;
	}

	.founders-banner-content h1 {
		font-size: 28px;
	}

	.founders-banner-content .banner-subtitle {
		font-size: 16px;
	}

	.founders-content-wrapper {
		padding: 40px var(--container-padding);
		gap: 40px;
	}

	.founders-section-inner {
		gap: 20px;
	}

	.section-content h2 {
		font-size: 26px;
	}

	.section-text {
		font-size: 14px;
	}

	.section-text p {
		margin-bottom: 15px;
	}

	.section-image {
		height: 300px;
	}

	.founders-quote {
		padding: 40px 0;
	}

	.founders-quote-inner {
		gap: 30px;
	}

	.founders-quote .quote-title {
		font-size: 26px;
		line-height: 30px;
		padding: 0 20px;
	}

	.founders-quote .quote-content {
		gap: 20px;
	}

	.founders-quote .quote-content::before {
		width: 30px;
		height: 23px;
	}

	.founders-quote .quote-content::after {
		width: 30px;
		height: 23px;
	}

	.founders-quote .quote-text {
		font-size: 14px;
		line-height: 22px;
	}

	.founders-gallery-inner {
		column-count: 1;
		column-gap: 10px;
	}

	.gallery-item {
		margin-bottom: 10px;
	}
}
