/* ============================================
   HOMEPAGE SPECIFIC STYLES
   Loogar Dating App - Homepage Only
============================================ */

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
	background: var(--dark-primary);
	min-height: 90vh;
	position: relative;
	overflow: hidden;
	margin-top: 70px;
}

.hero-background {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-content {
	padding: 2rem 0;
}

.hero-content h1 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero-content p {
	font-size: 1.2rem;
	line-height: 1.6;
}

/* Registration Form Card - Dark Theme */
.registration-card {
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--box-shadow-dark);
}

.registration-card .card-body {
	padding: 2rem;
}

.registration-card h4 {
	color: white;
	font-weight: 700;
}

.registration-card .tagline {
	font-size: 0.9rem;
	color: var(--gray-400);
	font-style: italic;
}

.registration-card .form-label {
	color: white;
	font-weight: 600;
	font-size: 0.95rem;
}

/* Choice Buttons */
.btn-choice {
	background: rgba(255, 255, 255, 0.25);
	border: 1px solid var(--gray-600);
	color: var(--gray-300);
	font-size: 0.85rem;
	padding: 0.6rem 1rem;
	border-radius: 25px;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.btn-choice:hover {
	background: var(--gray-600);
	border-color: var(--gray-500);
	color: white;
}

.btn-check:checked + .btn-choice {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.btn-check:focus + .btn-choice {
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Rounded button class for consistent styling */
.btn-rounded {
	border-radius: 25px !important;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-rounded:hover {
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
	transform: translateY(-1px);
}

.registration-card .btn-primary {
	background: var(--primary-color);
	border: none;
	padding: 0.75rem;
	font-weight: 600;
	border-radius: 25px;
	color: white;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.registration-card .btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* ============================================
   MAIN CONTENT BACKGROUND CONTAINER
============================================ */
.main-content-background {
	background: url("../images/background.png") center/cover;
	background-attachment: fixed;
	color: white;
}

.main-content-background h1,
.main-content-background h2,
.main-content-background h3,
.main-content-background h4,
.main-content-background h5,
.main-content-background h6 {
	color: white;
}

.main-content-background p {
	color: white;
}

.main-content-background .lead {
	color: white;
}

/* Additional spacing class */
.py-6 {
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
}

/* ============================================
   FEATURE SECTIONS
============================================ */

/* Feature Images */
.feature-image {
	border-radius: var(--border-radius-lg);
	box-shadow: var(--box-shadow-lg);
	transition: var(--transition);
	width: 100%;
	height: auto;
	max-width: 600px;
	min-height: 300px;
	object-fit: cover;
}

.feature-image:hover {
	transform: scale(1.02);
	box-shadow: var(--box-shadow-dark);
}

.feature-content {
	padding: 1.5rem 0;
}

.feature-content h3 {
	font-weight: 700;
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
	color: white;
	line-height: 1.2;
}

.feature-content p {
	font-size: 1.2rem;
	line-height: 1.6;
	color: white;
	margin-bottom: 2.5rem;
}

/* Join Now Buttons in Features */
.feature-btn {
	background: var(--primary-color);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.feature-btn:hover {
	background: var(--primary-dark);
	color: white;
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section h2 {
	font-weight: 700;
	margin-bottom: 2rem;
	color: white;
}

.about-section .lead {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: white;
}

.about-section p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: white;
}

/* ============================================
   LIFE CHOICE SECTION
============================================ */
.life-choice-section {
	padding: 4rem 0;
}

.life-choice-section h3 {
	color: white;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.life-choice-section p {
	color: white;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.life-choice-section .feature-btn {
	background: var(--primary-color);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.life-choice-section .feature-btn:hover {
	background: var(--primary-dark);
	color: white;
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* ============================================
   PHILOSOPHY SECTION
============================================ */
.philosophy-section {
	padding: 4rem 0;
}

.philosophy-section h3 {
	color: white;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.philosophy-section p {
	color: white;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.philosophy-section .feature-btn {
	background: var(--primary-light);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	border: none;
	box-shadow: 0 4px 15px rgba(4, 157, 217, 0.3);
}

.philosophy-section .feature-btn:hover {
	background: var(--primary-dark);
	color: white;
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(4, 157, 217, 0.4);
}

/* ============================================
   EXPERIENCE SECTION
============================================ */
.experience-section {
	padding: 4rem 0;
}

.experience-section h3 {
	color: white;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.experience-section p {
	color: white;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.experience-section .feature-btn {
	background: var(--primary-color);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.experience-section .feature-btn:hover {
	background: var(--primary-dark);
	color: white;
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
	padding: 5rem 0;
}

.pricing-section h2 {
	color: white;
	font-weight: 700;
	margin-bottom: 1rem;
}

.pricing-section .lead {
	color: white;
	font-size: 1.1rem;
	margin-bottom: 3rem;
}

.pricing-card {
	background: var(--secondary-dark);
	border: 1px solid var(--dark-tertiary);
	border-radius: var(--border-radius-lg);
	transition: var(--transition);
	height: 100%;
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--box-shadow-dark);
	border-color: var(--primary-color);
}

.pricing-card .card-body {
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pricing-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.pricing-icon.level-1 {
	background: var(--primary-light);
}

.pricing-icon.level-2 {
	background: var(--primary-light);
}

.pricing-card h4 {
	color: white;
	font-weight: 700;
	margin-bottom: 0;
}

.pricing-card .price {
	color: var(--gray-400);
	font-size: 0.95rem;
}

.pricing-features {
	margin: 2rem 0;
	flex-grow: 1;
}

.pricing-features li {
	color: var(--gray-300);
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pricing-features li span {
	flex: 1;
	text-align: left;
}

.pricing-features .fas {
	margin-left: 0.5rem;
	font-size: 0.8rem;
	flex-shrink: 0;
}

.pricing-features .fa-check {
	color: var(--success);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
	padding: 4rem 0;
}

.faq-section h2 {
	font-weight: 700;
	margin-bottom: 3rem;
	color: white;
}

.faq-content {
	text-align: left;
}

.faq-item {
	margin-bottom: 2.5rem;
}

.faq-question {
	color: white;
	font-weight: 600;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.faq-answer {
	color: white;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* ============================================
   RESPONSIVE OVERRIDES
============================================ */

/* Extra Small Mobile (320px and up) */
@media (max-width: 575.98px) {
	.hero-section {
		padding-top: 80px;
		min-height: 100vh;
	}

	.registration-card .card-body {
		padding: 1.5rem 1rem;
	}

	.btn-choice {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}

	.feature-content h3 {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.feature-content p {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}

	.feature-image {
		max-width: 280px;
		margin: 0 auto;
	}

	.pricing-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.pricing-card h4 {
		font-size: 1.2rem;
	}

	.pricing-card .price {
		font-size: 0.9rem;
	}

	.pricing-features li {
		font-size: 0.9rem;
		margin-bottom: 0.5rem;
	}

	.faq-question {
		font-size: 1.1rem;
	}

	.faq-answer {
		font-size: 0.95rem;
	}
}

/* Small Mobile (576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
	.hero-section {
		padding-top: 70px;
		min-height: 100vh;
	}

	.registration-card .card-body {
		padding: 2rem 1.5rem;
	}

	.btn-choice {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
	}

	.feature-image {
		max-width: 350px;
		margin: 0 auto;
	}

	.pricing-card .card-body {
		padding: 2rem 1.5rem;
	}
}

/* Medium Mobile and Tablet */
@media (max-width: 767.98px) {
	.hero-content {
		padding: 1.5rem 0;
		text-align: center;
		order: 2;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}

	.registration-card {
		order: 1;
		margin-bottom: 2rem;
	}

	.feature-content {
		padding: 1.5rem 0;
	}

	.about-section .lead {
		font-size: 1.1rem;
	}

	.about-section p {
		font-size: 1rem;
	}
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
	.registration-card {
		max-width: 400px;
		margin: 0 auto;
	}

	.feature-content {
		text-align: center;
	}
}

/* Desktop */
@media (min-width: 1200px) {
	.feature-content {
		padding: 3rem 0;
	}

	.feature-content p {
		font-size: 1.15rem;
	}
}
