@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300italic,600italic,300,600');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    flex-direction: column;
	text-color: rgba(253, 240, 213, 1);
	text-shadow: 
        1px 1px 0 rgba(0, 0, 0, 0.7),
        -1px -1px 0 rgba(0, 0, 0, 0.7),
        1px -1px 0 rgba(0, 0, 0, 0.7),
        -1px 1px 0 rgba(0, 0, 0, 0.7);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes full viewport height */
}

@keyframes backgroundScroll {
	0% { background-position: 50% 50%; }
	10% { background-position: 70% 30%; }
	20% { background-position: 30% 70%; }
	30% { background-position: 80% 50%; }
	40% { background-position: 20% 20%; }
	50% { background-position: 60% 80%; }
	60% { background-position: 40% 40%; }
	70% { background-position: 90% 60%; }
	80% { background-position: 10% 10%; }
	90% { background-position: 50% 90%; }
	100% { background-position: 50% 50%; }
}

#bg-scroll {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../images/odium_world.png) no-repeat;
	background-size: 150%;
	background-position: 50% 50%;
	background-attachment: fixed;
	animation: backgroundScroll 60s ease-in-out infinite;
	z-index: -1;
}

/* Centering container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

/* Logo styling */
.logo {
	margin-bottom: 1px;
}

.logo img {
	width: 250px;
	height: 250px;
	object-fit: cover;
}

/* Navigation Bar */
.navbar {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

/* Button styling */
.btn {
	width: 140px;
	height: 60px;
	cursor: pointer;
	background: rgba(0, 48, 73, 0.8);
	outline: none;
	position: relative;
	transition: 1s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: rgba(253, 240, 213, 1);
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: bold;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.btn:hover {
	background: rgba(193, 18, 31, 0.8);
}

.btn svg {
	position: absolute;
	left: 0;
	top: 0;
	fill: none;
	stroke: #fff;
	stroke-dasharray: 150 480;
	stroke-dashoffset: 150;
	transition: 1s ease-in-out;
}

.btn:hover svg {
	stroke-dashoffset: -480;
}

.btn span {
	color: rgba(253, 240, 213, 1);
	font-size: 18px;
	font-weight: bold;
}

.hl-line {
    fill: none;
    stroke: rgba(102, 155, 188, 1);
    stroke-width: 2;
}

/* Footer styling */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fdf0d5;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.footer-copyright {
    margin: 0;
	font-size: 1.2rem;
    text-align: center;
    flex: 1;
    color: #fdf0d5;
}

.footer-copyright a {
    text-decoration: none;
    color: #fdf0d5;
}

.footer-copyright a:hover {
    text-decoration: underline;
    color: #fdf0d5;
}

.social-buttons {
    display: flex;
    gap: 15px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-buttons a {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fdf0d5;
    text-align: center;
    text-decoration: none;
}