/*
Theme Name: Georgian Art Theme
Theme URI: https://georgianart.shop
Author: Luka Chkoidze
Author URI: https://georgianart.shop
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

html{
    margin-top: -5px !important;
}

/* Full-screen loading page */
#loading-screen {
	position: fixed;
	width: 100%;
	height: 100%;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999999;
}

/* Loading animation */
.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid #ddd;
	border-top-color: #5b3927;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index:9999998;
	/* Absolute centering */
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Hide content initially */
#content {
	display: none;
}