/**
 * Homepage Custom Styles
 * Modern light theme with orange and blue from Mouthpeace logo
 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');

/* Color Variables */
:root {
	--mp-orange: #FF8C00;
	--mp-blue: #4A90E2;
	--mp-dark-blue: #2E5C8A;
	--mp-light-gray: #F8F9FA;
	--mp-medium-gray: #E9ECEF;
	--mp-dark-gray: #6C757D;
	--mp-text-dark: #2C3E50;
	--mp-white: #FFFFFF;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 4rem 0 !important;
}

.hero-logo img {
	max-width: 600px;
	height: auto;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-tagline,
.hero-tagline h2 {
	font-family: 'Roboto', sans-serif;
	color:#838386;
	font-weight: 300;
	font-size: 1.75rem;
	margin-top: 1.5rem;
	    letter-spacing: 5.5px;
    text-transform: uppercase;
}

/* Podcast Banner */
.podcast-banner {
	background-color: var(--mp-white);
	padding: 3rem 0 !important;
}

.podcast-banner img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--mp-medium-gray);
}

.podcast-banner a:hover img {
	transform: translateY(-5px);
	box-shadow: 0 12px 32px rgba(74, 144, 226, 0.2);
}

/* Promo Banner */
.promo-banner {
	width: 100%;
	background: linear-gradient(135deg, var(--mp-orange) 0%, #FF6B00 100%) !important;
	padding: 0;
	box-shadow: 0 4px 12px rgba(255, 140, 0, 0.2);
	max-height: 300px;
}

.promo-logo {
	max-width: 288px;
	height: auto;
	display: block;
	margin-top: -286px;
	margin-left: 0px;
}

.promo-headline {
	font-weight: 400;
	letter-spacing: 0.3px;
}

/* Services Section */
.services-section {
	background-color: var(--mp-light-gray);
	padding: 5rem 0 !important;
}

.service-card {
	border: none;
	border-radius: 16px;
	overflow: hidden;
	background: var(--mp-white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 28px rgba(74, 144, 226, 0.15);
}

.service-card .card-img-top {
	height: 220px;
	object-fit: cover;
	border-bottom: 3px solid var(--mp-orange);
}

.service-card .card-body {
	padding: 2rem;
}

.service-card .card-title {
	color: var(--mp-text-dark);
	font-weight: 600;
	margin-bottom: 1rem;
}

.service-card .card-text {
	color: var(--mp-dark-gray);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-card .btn-primary {
	background: linear-gradient(135deg, var(--mp-blue) 0%, var(--mp-dark-blue) 100%);
	border: none;
	border-radius: 8px;
	padding: 0.625rem 1.5rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.service-card .btn-primary:hover {
	background: linear-gradient(135deg, var(--mp-dark-blue) 0%, var(--mp-blue) 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Endorsements Section */
.endorsements-section {
	background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, rgba(255, 140, 0, 0.03) 100%);
	min-height: 450px;
	display: flex;
	align-items: center;
	padding: 5rem 0 !important;
}

.testimonial {
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 2rem;
}

.endorsements-section .blockquote {
	font-style: normal;
	color: var(--mp-text-dark);
	font-size: 1.25rem;
	line-height: 1.8;
	position: relative;
}

.endorsements-section .blockquote-footer {
	color: var(--mp-dark-gray);
	margin-top: 2rem;
	font-size: 1rem;
}

.endorsements-section .blockquote-footer strong {
	color: var(--mp-blue);
	font-weight: 600;
}

.endorsements-section .carousel-control-prev,
.endorsements-section .carousel-control-next {
	width: auto;
	opacity: 1;
	top: 50%;
	transform: translateY(-50%);
}

.endorsements-section .carousel-control-prev {
	left: -60px;
}

.endorsements-section .carousel-control-next {
	right: -60px;
}

.endorsements-section .carousel-control-prev:hover,
.endorsements-section .carousel-control-next:hover {
	opacity: 1;
}

.endorsements-section .carousel-control-prev-icon,
.endorsements-section .carousel-control-next-icon {
	background-color: transparent;
	background-size: 100%;
	width: 40px;
	height: 40px;
	filter: invert(52%) sepia(78%) saturate(1500%) hue-rotate(360deg) brightness(102%) contrast(101%);
	transition: all 0.3s ease;
}

.endorsements-section .carousel-control-prev:hover .carousel-control-prev-icon,
.endorsements-section .carousel-control-next:hover .carousel-control-next-icon {
	filter: invert(52%) sepia(98%) saturate(3500%) hue-rotate(200deg) brightness(95%) contrast(90%);
	transform: scale(1.2);
}

/* Client Logos Section - Continuous Scrolling Ticker */
.client-logos-section {
	background:  #FFFFFF;
	padding: 2rem 0 1.5rem 0 !important;
	overflow: hidden;
	position: relative;
}

.client-logos-section::before,
.client-logos-section::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.client-logos-section::before {
	left: 0;
	background: linear-gradient(90deg, #F8F9FA 0%, transparent 100%);
}

.client-logos-section::after {
	right: 0;
	background: linear-gradient(90deg, transparent 0%, #F8F9FA 100%);
}

.client-logos-section h2 {
	text-align: center;
	color: var(--mp-text-dark);
	font-weight: 400;
	margin-bottom: 1.5rem;
	font-size: 1.75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}


/* Logo Ticker Animation */
.logo-ticker {
	display: flex;
	animation: scroll 30s linear infinite;
	gap: 3rem;
}

.logo-ticker:hover {
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.logo-ticker-wrapper {
	display: flex;
	gap: 3rem;
	align-items: center;
}

.client-logo {
	max-width: 180px;
	max-height: 90px;
	width: auto;
	height: 90px;
	object-fit: contain;
	opacity: 0.7;
	transition: all 0.4s ease;
	flex-shrink: 0;
}

.client-logo:hover {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
	transform: scale(1.1);
}

/* Global Improvements */
#front-page-wrapper {
	background-color: var(--mp-white);
}

.btn-light {
	background-color: var(--mp-white);
	color: var(--mp-orange);
	border: 2px solid var(--mp-white);
	font-weight: 600;
	border-radius: 8px;
	padding: 0.625rem 1.75rem;
	transition: all 0.3s ease;
}

.btn-light:hover {
	background-color: transparent;
	color: var(--mp-white);
	border-color: var(--mp-white);
	transform: translateY(-2px);
}

/* Section Spacing */
section {
	margin: 0;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:active {
    color: initial !important;
    background-color: rgba(74, 144, 226, 0.1);
}
/* Responsive Adjustments */

@media (max-width: 1200px) {
	.promo-logo {
    margin-left: -60px;
}
}


@media (max-width: 991.98px) {
	.promo-logo {
    max-width: 193px;
    margin-top: -218px;
    margin-left: -116px;
	}
	.hero-section {
		padding: 3rem 0 !important;
	}
	
	.services-section {
		padding: 4rem 0 !important;
	}
	
	.endorsements-section {
		padding: 4rem 0 !important;
	}
}

@media (max-width: 767.98px) {
	.promo-logo {
    display: none;
	}
	.hero-logo img {
		max-width: 280px;
	}
	
	.hero-tagline {
		font-size: 1.4rem;
	}
	
	.promo-logo {
		max-width: 120px;
	}
	
	.promo-banner {
		padding: 1rem 0 !important;
	}
	
	.service-card .card-img-top {
		height: 200px;
	}
	
	.service-card .card-body {
		padding: 1.5rem;
	}
	
	.testimonial {
		min-height: auto;
		padding: 2rem 1rem !important;
	}
	
	
	/* Position arrows inside on tablet/mobile */
	.endorsements-section .carousel-control-prev {
		left: 10px;
	}
	
	.endorsements-section .carousel-control-next {
		right: 10px;
	}
	
	.endorsements-section .carousel-control-prev-icon,
	.endorsements-section .carousel-control-next-icon {
		width: 35px;
		height: 35px;
	}
	
	.client-logo {
		max-width: 130px;
		max-height: 70px;
		height: 70px;
	}
	
	.logo-ticker {
		animation: scroll 20s linear infinite;
		gap: 2.5rem;
	}
	
	.logo-ticker-wrapper {
		gap: 2.5rem;
	}
	
	.client-logos-section {
		padding: 1.5rem 0 1rem 0 !important;
	}
	
	.client-logos-section h2 {
		margin-bottom: 1.25rem;
	}
	
	.client-logos-section::before,
	.client-logos-section::after {
		width: 50px;
	}
	
	.services-section,
	.endorsements-section {
		padding: 3rem 0 !important;
	}
}

@media (max-width: 575.98px) {
	.hero-logo img {
		max-width: 220px;
	}
	
	.hero-tagline {
		font-size: 1.2rem;
	}
	
	.hero-section {
		padding: 2.5rem 0 !important;
	}
	
	.service-card .card-img-top {
		height: 180px;
	}
	
	.endorsements-section .blockquote {
		font-size: 1rem;
		padding-left: 1rem;
		border-left-width: 3px;
	}
	
	.endorsements-section .blockquote-footer {
		padding-left: 1rem;
		font-size: 0.9rem;
	}
	
	.endorsements-section .carousel-control-prev-icon,
	.endorsements-section .carousel-control-next-icon {
		width: 30px;
		height: 30px;
	}
	
	.client-logo {
		max-width: 100px;
		max-height: 60px;
		height: 60px;
	}
	
	.logo-ticker {
		animation: scroll 15s linear infinite;
		gap: 2rem;
	}
	
	.logo-ticker-wrapper {
		gap: 2rem;
	}
	
	.client-logos-section {
		padding: 1.5rem 0 1rem 0 !important;
	}
	
	.client-logos-section h2 {
		font-size: 1.25rem;
		letter-spacing: 1px;
		margin-bottom: 1rem;
	}
	
	.client-logos-section h2::after {
		margin: 0.5rem auto 0;
	}
	
	.client-logos-section::before,
	.client-logos-section::after {
		width: 30px;
	}
	
	.podcast-banner {
		padding: 2rem 0 !important;
	}
}
