/* access/style.css - AdveCamp WordPress Theme */

@charset "UTF-8";

main {
	width: 100%;
	padding: clamp(110px, 15vw, 140px) 20px 60px;
	min-height: calc(100vh - 200px);
	background-color: #f5f7fa;
	color: #333;
	box-sizing: border-box;
}

.content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.content h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: #2c3e50;
	letter-spacing: 0.05em;
}

.content > p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 50px;
}

.features {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.feature-card {
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	padding: 40px 30px;
	flex: 1 1 300px;
	max-width: 450px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h2 {
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 20px;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 10px;
	width: 100%;
	text-align: center;
}

.feature-card p {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
	margin: 0;
	width: 100%;
}

.feature-card a {
	color: var(--advecamp-primary, #27ae60);
	text-decoration: none;
	font-weight: bold;
	transition: color 0.2s ease;
}

.feature-card a:hover {
	text-decoration: underline;
}

.telBtn {
	display: inline-block;
	margin-left: 10px;
	color: #333 !important;
	font-family: monospace;
	font-size: 1.1rem;
	white-space: nowrap;
}

.feature-card a[href*="maps"] {
	display: inline-block;
	margin-top: 10px;
	background-color: #f0f4f8;
	padding: 10px 15px;
	border-radius: 6px;
	font-size: 0.95rem;
}

.feature-card a[href*="maps"]:hover {
	background-color: #e1e8ed;
	text-decoration: none;
}

.map-container iframe {
	width: 100%;
	max-width: 800px;
	border-radius: 10px;
	border: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
	main {
		padding: clamp(110px, 15vw, 140px) 15px 40px;
	}

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

	.features {
		flex-direction: column;
		align-items: center;
	}

	.feature-card {
		width: 100%;
		max-width: 100%;
	}

	.telBtn {
		display: block;
		margin: 10px auto 0;
		background-color: var(--advecamp-primary, #27ae60);
		color: #fff !important;
		padding: 10px 20px;
		border-radius: 50px;
		text-align: center;
		width: fit-content;
		text-decoration: none !important;
	}
}
