/**
 * SF Beer Week - Profile Page Styles
 *
 * Styles for individual organization profile pages including
 * marquee headers, contact information, location grids, and activity displays.
 */

/* Marquee Header */
#marquee
{
	position: relative;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-top: -30px;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	margin-bottom: 1rem;
}

#marquee .bug_logo
{
	position: absolute;
	top: auto;
	left: auto;
	bottom: 1rem;
	right: 1rem;
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#marquee .bug_logo img
{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Profile page: white background everywhere */
body,
.main-content,
#content
{
	background-color: #fff !important;
}

#content
{
	min-height: 60vh;
}

/* Profile region badges */
.filter-region .btn
{
	font-size: 12px !important;
}

/* Profile controls gutter - keeps text clear of icons */
#profile-controls
{
	width: 2.5rem;
}

#content h1,
#profile-controls ~ .row
{
	padding-right: 2.5rem;
}

#content h1
{
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	color: #111;
	font-family: "brandon-grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Favorite Icon */
.favorite
{
	cursor: pointer;
	color: var(--dbb-primary, #C53117);
	transition: all 0.2s ease;
}

.favorite:hover
{
	transform: scale(1.1);
}

/* Sponsor Icon */
.icon-ftd
{
	color: #EEA31B;
}

/* Contact Information Icons - Dark gray like original */
#content .fa-map-location-dot,
#content .fa-phone,
#content .fa-browser,
#content .fa-chevrons-right
{
	color: #55575b;
}

/* Social Media Links */
#socials a
{
	color: #666;
	transition: color 0.2s ease;
}

#socials a:hover
{
	color: #EEA31B;
}

.text-lightgray
{
	color: #999;
}

/* Stretched Link Cards */
.position-relative .stretched-link
{
	text-decoration: none;
}

/* Activity Modal */
#mdlActivity .modal-content
{
	border-radius: 8px;
}

#mdlActivity .modal-header
{
	background-color: #444649;
	color: #fff;
	border-bottom: 3px solid #EEA31B;
	padding: 1rem 1.5rem;
}

#mdlActivity .modal-title
{
	font-weight: 600;
	font-size: 1.5rem;
	font-family: "brandon-grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#mdlActivity .modal-body
{
	padding: 2rem;
}

#mdlActivity .btn-close
{
	filter: invert(1);
}

/* Responsive Adjustments */
@media (max-width: 768px)
{
	#marquee .bug_logo
	{
		width: 80px;
		height: 80px;
		bottom: 0.5rem;
		right: 0.5rem;
	}

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

	.favorite
	{
		font-size: 1.5rem !important;
	}
}

@media (max-width: 480px)
{
	#content h1
	{
		font-size: 1.75rem;
	}

	#marquee .bug_logo
	{
		width: 60px;
		height: 60px;
	}

}

/* Tips/Tooltips */
.tips
{
	cursor: help;
}

a.tips, button.tips, i.copy-link
{
	cursor: pointer;
}
