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

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

#marquee .bug_logo
{
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 0 0 8px 0;
	overflow: hidden;
	padding: 10px;
	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 Content */
#content
{
	background-color: #fff;
	min-height: 60vh;
}

#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: #EEA31B;
	transition: all 0.2s ease;
}

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

/* 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;
}

.position-relative:hover
{
	background-color: #f8f9fa;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

/* Locations Grid */
.locations-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.location-card
{
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.location-card:hover
{
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border-color: #EEA31B;
}

.location-card img
{
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.location-card .card-body
{
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.location-card .card-title
{
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #111;
	font-family: "brandon-grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.location-card .card-text
{
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.location-card .btn
{
	background-color: #EEA31B;
	border-color: #EEA31B;
	color: #fff;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.location-card .btn:hover
{
	background-color: #d99317;
	border-color: #d99317;
	transform: translateY(-1px);
}

/* Activities Grid */
.activities-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.activity-card
{
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.activity-card:hover
{
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border-color: #EEA31B;
}

.activity-card h4
{
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #111;
	font-family: "brandon-grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.activity-card p
{
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

/* 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;
	}

	.locations-grid,
	.activities-grid
	{
		grid-template-columns: 1fr;
	}

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

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

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

	.location-card .card-body,
	.activity-card
	{
		padding: 1rem;
	}
}

/* Bootstrap Card Overrides for Consistency */
.card
{
	border: 1px solid #ddd;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.card:hover
{
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border-color: #EEA31B;
}

.card-img-top
{
	height: 200px;
	object-fit: cover;
}

.card-title
{
	font-family: "brandon-grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-weight: 600;
	color: #111;
}

.btn-primary
{
	background-color: #EEA31B;
	border-color: #EEA31B;
	color: #fff;
	font-weight: 500;
	transition: all 0.2s ease;
}

.btn-primary:hover
{
	background-color: #d99317;
	border-color: #d99317;
	transform: translateY(-1px);
}

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