/* styles.css */
.hero-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/morgan_family01.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    font-size: 1.5rem;
}

.event-card {
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.photo-gallery img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}

/* Admin panel styles */
.admin-sidebar {
    min-height: calc(100vh - 56px);
    background-color: #f8f9fa;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
}

/*-------------------------------------
	18. Loading 
-------------------------------------*/


/*18.1 loading - 1*/

.loading-area {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	overflow: hidden;
}

.loading-box {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 1;
	z-index: 9999;
}

.loading-pic {
	width: 100%;
	position: absolute;
	top: 50%;
	z-index: 99999;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


/*18.2 loading - 2*/

.loading-cover,
.loading-srh-bar,
.loading-map {
	background: rgba(255, 255, 255, 0.8);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.loading-cover .fa-spinner,
.loading-srh-bar .fa-spinner,
.loading-map .fa-spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -10px;
	font-size: 25px;
	color: #333;
}

.weather-card {
	max-width: 300px;
	margin: 20px auto;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	font-family: Arial, sans-serif;
}
.weather-main {
	display: flex;
	align-items: center;
	justify-content: center;
}
.temperature {
	font-size: 2.5rem;
	font-weight: bold;
}
.weather-details p {
	margin: 5px 0;
}
#refresh-weather {
	display: block;
	margin: 10px auto;
	padding: 8px 16px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}