/**
 * Anchor Navigation Module Styles
 * Based on Kadence button styling
 *
 * @package WP_R2Go4_Detail
 */

.wp-r2go4-anchor-nav-module {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: var(--wp-r2go4-content-width, 1200px);
	max-width: calc(100% - 40px);
	z-index: 100;
	display: flex;
	justify-content: flex-start;
}

.wp-r2go4-anchor-nav-list {
	display: inline-flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wp-r2go4-anchor-nav-item {
	margin: 0;
	padding: 0;
}

.wp-r2go4-anchor-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 15px 30px 15px 38px;
	background-color: var(--wp-r2go4-ci-color-1, #aa9a7f);
	color: #fff;
	text-decoration: none;
	font-style: normal;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.71em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 0;
	border: 1px solid var(--wp-r2go4-ci-color-1, #aa9a7f);
	box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
	transition: all 0.2s ease;
	white-space: nowrap;
}

.wp-r2go4-anchor-nav-link:hover,
.wp-r2go4-anchor-nav-link.active {
	background-color: #fff;
	color: var(--wp-r2go4-ci-color-1, #aa9a7f);
	border-color: transparent;
	text-decoration: none;
	box-shadow: 0px 15px 25px -7px rgba(0, 0, 0, 0.1);
}

.wp-r2go4-anchor-nav-arrow {
	font-size: 14px;
	opacity: 0.8;
	transition: all 0.2s ease;
	line-height: 1;
	transform: rotate(90deg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.wp-r2go4-anchor-nav-link:hover .wp-r2go4-anchor-nav-arrow {
	opacity: 1;
}

/* Smooth scroll behavior for anchor links */
html {
	scroll-behavior: smooth;
}

/* Offset for fixed header if present */
[id="details"],
[id="objektdaten"],
[id="infos"],
[id="galerie"],
[id="grundrisse"],
[id="rundgang"],
[id="kontakt"],
[id="energieausweis"] {
	scroll-margin-top: 100px;
}

/* Responsive */
@media (max-width: 1200px) {
	.wp-r2go4-anchor-nav-link {
		padding: 12px 24px;
		font-size: 12px;
	}
}

@media (max-width: 1024px) {
	.wp-r2go4-anchor-nav-module {
		left: 50px;
		transform: none;
		width: calc(100% - 100px);
		pointer-events: none;
	}

	.wp-r2go4-anchor-nav-list {
		pointer-events: auto;
	}

	.wp-r2go4-anchor-nav-link {
		padding: 12px 20px;
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.wp-r2go4-anchor-nav-module {
		display: none;
	}
}
