/* Navigation bar */
nav {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Header */
header {
    padding-top: 60px;
    text-align: center;
    background-color: #946036;
    position: relative; /* Ensure relative positioning */
}

/* Logo */
.logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Game Description */
#game-description {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Adjust positioning */
    top: 50%; /* Position below the logo */
    right: 50px;
    transform: translateY(-50%);
    width: 300px;
}

/* Description 2 */
#game-description2 {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-top: 50px;
}

#game-description2 a {
    text-decoration: none;
    color: inherit;
}

#game-description3 {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: calc(50% + 200px); 
    right: 50px; 
    width: 300px;
}

.scripts{
    font-weight: bold;
}

.sidebar {
    width: 300px;
    background-color: #f4f4f4;
    padding: 30px;
    position:absolute; 
    top: 400px; 
    left: 20px; 
    border-radius: 10px;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    margin-bottom: 10px; 
}

.list li a {
    text-decoration: none; 
    color: #333; 
}

.list li a:hover {
    color: #007bff; 
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    bottom: 0;
    
}

.recruitment {
    font-weight: bold;
}

.troops {
    font-weight: bold;
}

.training {
    font-weight: bold;
}

.combat {
    font-weight: bold;
}

.support {
    font-weight: bold;
}

.strat {
    font-weight: bold;
}

.losses {
    font-weight: bold;
}

.video-container {
    position: relative;
    margin-top: 20px; 
}

#video-container1 {
    width: 100px; 
    height: 100px; 
    position: absolute; 
    top: 30%; 
    left: -1%; 
    border-radius: 10px;
    z-index: 999; 
}

#video-container2 {
    width: 100px; 
    height: 100px;
    position: absolute;
    top: 70%; 
    left: -1%; 
    border-radius: 10px;
    z-index: 999; 
}

/* the calc*/
.calculator {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #946036;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 10px;
}

.input-group label {
    display: inline-block;
    width: 100px;
}

.input-group input {
    width: 100px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.input-group button {
    padding: 8px 12px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.result {
    margin-top: 20px;
}

.result h2 {
    margin: 0;
    font-size: 18px;
}

.result span {
    font-weight: bold;
    color: #ffffff;
}

.Offensive {
    font-weight: bold;
    font-size: 23px;
}

.script {
    font-weight: bold;
    font-size: 13px;

}





/* FEEDBACK*/


.feedback-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.feedback-form h1 {
    text-align: center;
}
.input-group {
    margin-bottom: 10px;
}
.input-group label {
    display: block;
    margin-bottom: 5px;
}
.input-group input, .input-group textarea {
    width: 100%;
    padding: 5px;
}
.input-group input[type="submit"] {
    padding: 8px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}