/*
Theme Name: Black Duck 25
Description: Child theme of Twenty Twenty-Five. Customize your site with this child theme.
Author: Your Name
Template: twentytwentyfive
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blackduck25
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

/* Add your custom styles below this line */

/* Photography Slideshow Styles */
.home-slideshow-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #000;
	z-index: 1;
}

.home-slideshow-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-slideshow-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: opacity 0.3s ease-in-out;
}

.home-slideshow-image-hidden {
	opacity: 0;
	position: absolute;
	pointer-events: none;
}

.home-slideshow-message {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	text-align: center;
	padding: 2rem;
}

.home-slideshow-message p {
	font-size: 1.25rem;
	margin: 0;
}

/* Logo Styles */
.home-logo {
	position: fixed;
	top: 1.5rem;
	left: 2rem;
	z-index: 100;
}

.home-logo a {
	display: block;
}

.home-logo img {
	max-height: 60px;
	width: auto;
	display: block;
	transition: opacity 0.3s ease;
}

/* Menu Styles */
.home-slideshow-menu {
	position: fixed;
	top: 1rem;
	right: 2rem;
	z-index: 100;
	padding: 0.5rem 0.75rem;
}

.home-slideshow-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-direction: row;
}

.home-slideshow-menu li {
	margin: 0;
}

.home-slideshow-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1;
	display: flex;
	align-items: center;
	transition: color 0.3s ease, opacity 0.3s ease;
}

.home-slideshow-menu a:hover {
	opacity: 0.7;
}

/* Dark menu text for light backgrounds */
.home-slideshow-menu.menu-dark a {
	color: #000;
}

/* Fullscreen icon */
.home-slideshow-menu .fullscreen-item {
	margin-left: 1rem;
	display: flex;
	align-items: center;
}

.home-slideshow-menu .fullscreen-item img {
	height: 0.85rem;
	width: auto;
	display: block;
	transition: opacity 0.3s ease;
}

.home-slideshow-menu .fullscreen-item a:hover img {
	opacity: 0.7;
}

/* Menu with background bar */
.home-slideshow-menu.menu-with-background {
	background-color: rgba(128, 128, 128, 0.4);
	border-radius: 0.5rem;
}

/* Responsive logo and menu */
@media (max-width: 768px) {
	.home-logo {
		top: 1.15rem;
		left: 1.5rem;
	}
	
	.home-logo img {
		max-height: 45px;
	}
	
	.home-slideshow-menu {
		top: 0.75rem;
		right: 1.5rem;
		padding: 0.4rem 0.6rem;
	}
	
	.home-slideshow-menu ul {
		gap: 1.5rem;
		flex-wrap: wrap;
	}
	
	.home-slideshow-menu a {
		font-size: 0.75rem;
	}
}

/* Maintenance Mode Banner */
.maintenance-mode-banner {
	position: fixed;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	max-width: 600px;
	padding: 1.5rem 2.5rem;
	background-color: rgba(60, 60, 60, 0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 1rem;
	z-index: 200;
	text-align: center;
}

.maintenance-mode-banner p {
	margin: 0;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive maintenance banner */
@media (max-width: 768px) {
	.maintenance-mode-banner {
		bottom: 1.5rem;
		left: 1rem;
		right: 1rem;
		transform: none;
		max-width: none;
		padding: 1.25rem 1.5rem;
		border-radius: 0.75rem;
	}
	
	.maintenance-mode-banner p {
		font-size: 1.1rem;
	}
}

