/*
@ Author: Mr Python's Software
@ Owner: We Love Robots.ltd
@ Date: 01 - 01 - 2026
@ Description: 
This is the main CSS style sheet for this website.

The CSS must include...
=> tags for the font-family in the body
=> Alterations to the section
=> A media tag for mobile device alterations
=> For the form and the inputs of the form
=> flex-container as well
*/
body{
    margin: 0;
    color: #fff;
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-container{
    width: 100%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}


.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}


#main{
    padding-left: 10%;
    padding-right: 10%;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin: 20px;
    max-width: 800px; /*Prevents elements from becoming too big!*/
    
    /* Text styling */
    line-height: 170%;
    text-align: justify;
    text-justify: inter-word;
    max-width: 100%;
}

#main img{
    width: 100%;
}

#main p {
    font-size: 20px;
    line-height: 170%;

    text-align: justify;
    text-justify: inter-word;
}

#main h1, h2, h3{

    font-family: "Anton", sans-serif;
    letter-spacing: 3px;

    text-align: justify;
    text-justify: inter-word;
    font-size: 50px;
    padding-bottom: 5%;
    padding-top: 5%;
}

h1.title{
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 1%;
    font-size: 60px;
    font-family: "Anton", sans-serif;
    letter-spacing: 2px;
}

#top {
    width: 70%;
    margin: 0 auto; /*Centering the elements*/
    max-width: 900px; /*Prevents elements from becoming too big!*/

    /* Text styling */
    line-height: 170%;
    text-align: justify;
    text-justify: inter-word;
    max-width: 100%;

    font-family: "Anton", sans-serif;
    letter-spacing: 5px;
}

/*This is for the logo*/
#top img{
    width: 20%;
    height: auto;
}

/* Navigation */
.navbar {
    background-color:#00000075;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.242); /*You need this in all cases*/
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
    padding: 10px;
}

.nav-links a {
    font-family: "Anton", sans-serif;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    padding: 30px;
}

.nav-links a:hover {
    color: #000000;
    background-color: #ffffffc2;
    padding: 30px;
}

.active {
    color: #000000;
    background-color: #ffffffc2;
    padding: 30px;
}


footer {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5%;
    margin: 2px auto;
    text-align: center;
    background-image: url("images/logo3.png");
    background-repeat: no-repeat;
    background-position: 90% center;
    background-size: 10%;
}

#frontlogo{

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

#frontlogo img{
    width: 40%;
    height: auto;

}

footer p{
    text-align: justify;
    font-family: "Anton", sans-serif;
    font-size: normal;
    letter-spacing: 3px;
}

.footer {
    background-color: #2d5a27;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff2600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}


.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 30px;
}

.profile-tag {
    font-size: 30px;
    color: white;
}

.profile-tag a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.profile-tag a:hover {
    color: #ff0000; 
}

.profile-tag i {
    font-size: 30px; 
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

#story-link{
    padding-bottom: 5%;
    padding-top: 5%;
    
}

#story-link a{
    font-family: "Anton", sans-serif;
    font-size: large;
    size: 200px;
    letter-spacing: 2px;
    text-decoration: underline;
}

#story-link a:hover{
    font-family: "Anton", sans-serif;
    font-size: large;
    size: 200px;
    letter-spacing: 2px;
    color: red;
}

#story-link:hover{
    border-color: #fff;
}


form {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    max-width: 100%;
    max-height: 50px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.radioInputs {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
}

.radioInputs label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    cursor: pointer;
}

input[type="radio"] {
    width: auto;
    margin: 0;
}

input[type="submit"] {
    width: auto;
    padding: 12px 30px;
    background: white;
    color: black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

input[type="submit"]:hover {
    background: #d9d9d9;
}

.flex-container{
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
}



