@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
	--bg-dark: #05060a;
	--bg-card: #13141b;
	--accent: #ff3366;
	--accent-soft: #ff6f8e;
	--text-main: #f5f5f7;
	--text-muted: #9b9ca5;
	--success: #2ecc71;
	--border-soft: #262732;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

.text-main {
	color: #f5f5f7 !important;
}

.text-muted {
	color: #9b9ca5 !important;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: radial-gradient(circle at top, #161827 0, #05060a 55%);
	color: var(--text-main);
}

a {
	color: var(--accent-soft);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-link {
	color: var(--text-muted);
}

.nav-link:hover {
	color: var(--accent-soft);
}

.nav-cta {
	padding: 8px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-soft));
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	margin-left: 24px;
}

/* HERO BACKGROUND FULL-WIDTH */
.hero-bg {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: url("../img/hero-night-bar-2.png") center center / cover no-repeat;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: none;
}

.hero-bg > * {
	position: relative;
	z-index: 1;
}

/* HERO ELEMENTS */
.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid var(--border-soft);
	background: rgba(7, 8, 15, 0.9);
	font-size: 14px;
	color: var(--accent-soft);
	margin-bottom: 16px;
}

.hero-tag span.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--success);
	box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
}

.hero-title {
	font-size: clamp(30px, 4vw, 60px);
	line-height: 1.1;
	margin-bottom: 14px;

	font-weight: 700;
}

.accent {
	color: var(--accent-soft);
}

.hero-sub {
	font-size: 17px;
	color: var(--text-muted);

	margin-bottom: 18px;
}

.hero-bullet-icon {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	border: 1px solid var(--accent-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--accent-soft);
}

.hero-404 {
	min-height: 60vh;          /* gives the section some vertical height */
	display: flex;
	align-items: center;       /* centers the inner container vertically */
}

.disclaimer-18 {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 4px;
}

.hero-trust .trust-dot {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: var(--accent-soft);
	display: inline-block;
}

/* SIGNUP CARD */
.signup-card {
	background: radial-gradient(circle at top, #242436 0, #10111a 60%);
	border-radius: 18px;
	padding: 18px 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.signup-title {
	font-size: 17px;
	font-weight: 600;
}

.signup-sub {
	font-size: 12px;
	color: var(--text-muted);
}

.status-pill {
	font-size: 11px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(46, 204, 113, 0.12);
	color: var(--success);
}

label {
	font-size: 12px;
	color: var(--text-muted);
}

.form-control,
.form-select {
	border-radius: 999px;
	border: 1px solid var(--border-soft);
	background: rgba(3, 3, 8, 0.9);
	color: var(--text-main);
	padding: 10px 13px;
	font-size: 13px;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--accent-soft);
	box-shadow: 0 0 0 0.15rem rgba(255, 51, 102, 0.4);
}

.form-control::placeholder {
	color: var(--text-muted); /* or any color */
	opacity: 1; /* optional, removes browser fade */
}

textarea.form-control {
	border-radius: 20px;
}

.form-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239b9ca5' viewBox='0 0 16 16'%3E%3Cpath d='M3.204 5h9.592L8 10.481z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
}

.cta-main {
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-soft));
	border: none;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.cta-main:hover {
	filter: brightness(1.05);
}

.form-note {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 4px;
}

/* PHOTO CARDS */
.photo-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #0a0b12;
	min-height: 160px;
}

.photo-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(5, 6, 10, 0.9), transparent 55%);
}

.photo-content {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	font-size: 12px;
}

.photo-name {
	font-weight: 600;
	font-size: 15px;
}

.photo-meta {
	color: var(--text-muted);
	font-size: 13px;
}

.photo-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 4px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(5, 5, 10, 0.74);
	font-size: 10px;
}

.photo-pill .photo-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--success);
}

/* SECTION DIVIDERS */
.section-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	padding-top: 64px;
	margin-top: 64px;
}

.section-spacer-top {
	padding-top: 64px;
}

.section-spacer-bottom {
	padding-bottom: 64px;
}

/* SECTION TEXT */
.section-lead {
	font-size: 17px;
	color: var(--text-muted);
}

.step-card {
	border-radius: 16px;
	background: rgba(10, 11, 18, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.04);
	padding: 16px;
	height: 100%;
}

.step-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--accent-soft);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.step-title {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 6px;
}

.step-text {
	font-size: 15px;
	color: var(--text-muted);
}

.pill {
	font-size: 13px;
	padding: 5px 8px;
	border-radius: 999px;
	border: 1px solid var(--border-soft);
	color: var(--text-muted);
	display: inline-block;
	margin: 4px 4px 0 0;
}

.testimonial {
	position: relative;
	color: var(--text-muted);
	font-style: italic;
}

.testimonial::before {
	content: "\F6B0"; /* Bootstrap icon: quote */
	font-family: "bootstrap-icons";
	position: absolute;
	left: -4px;
	top: -8px;
	font-size: 28px;
	color: var(--accent-soft);
}

.step-card i[class^="bi-"],
.step-card i[class*=" bi-"] {
	font-size: 1.2rem;
	color: var(--accent-soft);
}

.faq-title {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 6px;
}

.faq-text {
	font-size: 15px;
	color: var(--text-muted);
}

.accordion-button {
	box-shadow: none;
}

.accordion-button::after {
	filter: invert(1) opacity(0.6);
}

.cta-hero-bg {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: url("../img/cta-hero-night.png") center center / cover no-repeat;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

/* dark overlay so text stays readable */
.cta-hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: none;
}

/* lift content above overlay */
.cta-hero-bg > * {
	position: relative;
	z-index: 1;
}


.footer-cta-text {
	font-size: 17px;
	color: var(--text-muted);
}

footer {
	font-size: 13px;
	color: var(--text-muted);
}

.footer-links a {
	color: var(--text-muted);
}

.legal {
	margin-top: 10px;
	font-size: 11px;
	line-height: 1.4;
}


/* MOBILE NAV STYLING */
@media (max-width: 991px) { /* applies when navbar collapses */

	/* Center the nav items when stacked */
	#mainNav .navbar-nav {
		text-align: center;
	}

	#mainNav .nav-item {
		margin: 6px 0; /* extra tap spacing */
	}

	#mainNav .nav-link {
		display: block;
		padding: 10px 0; /* easier to tap */
		font-size: 18px; /* more readable on mobile */
	}

	/* Full-width Join Free button on mobile */
	#mainNav .nav-cta {
		display: block !important;
		width: 100%;
		margin: 10px 0 0 0 !important;
		text-align: center;
		padding: 12px 0;
		font-size: 18px;
	}

	/* Optional: subtle separator lines between items */
	#mainNav .nav-item:not(:last-child) {
		border-bottom: 1px solid rgba(255,255,255,0.06);
		padding-bottom: 6px;
	}
}