/* Reset and Global Styles */
html, body {
    padding: 0;
    margin: 0;
    background: url('../img/bg.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #000;
    height: 100%;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Main Centered Content */
.container_main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
	z-index: 2;
	position: relative;
}

/* Centering the logo and heading */
.container {
    width: 100%;
	text-align: center;
}

/* Logo Styling */
.logo {
    height: auto;
    max-width: 400px;
	animation: bounce 1s ease-in-out forwards;
}

/* Heading Styling */
h2 {
    color: #ccae50;
    display: inline-block;
    font-weight: 300;
    margin: 5px auto 0;
    padding: 0;
    font-size: 20px;
    text-transform: uppercase;
	letter-spacing: 2px;
}

h3{
	font-size: 16px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
}
.sub_container {
	width: auto;
    margin: 0 auto;
}
.section{
	margin: 40px auto 5px;
}

.phases {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between icons */
    margin-top: 15px;
}
.phase_block{
    padding: 10px;
    border: 1px solid #fff;
	border-radius: 5px;
}
.active_phase{
	background: #131c4e;
	border: 1px solid #0b2172;
}
.phase_title{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    clear: both;
    display: block;
}
.phase_description{
	font-size: 14px;
	font-weight: 300;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
    margin-top: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 24px;
    padding: 5px 10px;
    border: 1px solid #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
}

a{
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
a:hover{
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.starfall {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    z-index: 0;
}
.starfall .falling-star {
    width: 5px;
    height: 5px;
    background: #ccae50;
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

/* Footer Styling */
footer {
    width: calc(100% - 30px);
    padding: 15px 0 5px;
	font-size: 12px;
	font-weight: 300;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/* Mobile & Tablet Responsive Adjustments */
@media screen and (max-width: 980px) {
	html, body{
	}
	.container_main {
    width: 100%;
    height: 100%;
	}
    .container {
        width: 90%;
    }
    .logo {
        max-width: 50%;
    }
	h2 {
    font-size: 14px;
	}
	h3{
	font-size: 12px;
	}
	.sub_container {
	width: auto;
    margin: 20px auto 5px;
	}
	.social-icons {
    gap: 10px; /* Space between icons */
    margin-top: 10px;
	}
	.social-icons a {
    font-size: 16px;
    padding: 5px 10px;
    width: 24px;
    height: 24px;
	}
	footer {
	font-size: 10px;
	}
    .phases {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Two columns */
    gap: 5px; /* Space between items */
    justify-items: center;
    }
    .phase_block {
    width: calc(100% - 20px); /* Adjust as needed */
    padding: 5px;
    }
	.starfall .falling-star {
    width: 2px;
    height: 2px;
    background: #ccae50;
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
}

@media screen and (max-width: 767px) {
	html, body{
	}
	.container_main {
    width: 100%;
    height: 100%;
	}
    .container {
        width: 90%;
    }
    .logo {
        max-width: 50%;
    }
    h2 {
        font-size: 14px;
    }
	h3{
	font-size: 12px;
	}
	.sub_container {
	width: auto;
    margin: 20px auto 5px;
	}
	.social-icons {
    gap: 10px; /* Space between icons */
    margin-top: 10px;
	}
	.social-icons a {
    font-size: 16px;
    padding: 5px 10px;
    width: 24px;
    height: 24px;
	}
    .phases {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Two columns */
    gap: 5px; /* Space between items */
    justify-items: center;
    }
    .phase_block {
    width: calc(100% - 20px); /* Adjust as needed */
    padding: 5px;
    }
	.starfall .falling-star {
    width: 2px;
    height: 2px;
    background: #ccae50;
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
	footer {
	font-size: 10px;
	}
}
