/* Hero Section */
.hero {
    width: 100%;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

/* Dark overlay for better text contrast */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    opacity: 0;   /* Initially hidden */
    animation: fadeIn 2s ease-in forwards; /* Apply fade-in effect */
}

/* Text Styling */
.hero {
    background: linear-gradient(135deg, #003300, #007f00); /* Darker green gradient */
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.hero h1 {
    font-size: 3em;
    font-weight: 900;  /* Extra bold */
    color: #FFD700;  /* Bright gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Strong contrast */
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffffff; /* Ensures it pops */
    margin-bottom: 10px;
}


.hero-tagline {
    font-size: 1.5em;
    font-weight: 400;
    color: #ff4d4d;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease-in-out forwards;
}

.hero p {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 10px;
    animation: fadeInUp 2.5s ease-in-out forwards;
}

/* Call to Action Button */
.hero-button {
    background-color: red;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    animation: fadeInUp 3s ease-in-out forwards;
}

.hero-button:hover {
    background-color: darkred;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* General Section */
body {
	font-family: 'Roboto', sans-serif;
	text-align: center;
	padding: 5px;
}

.content {
    max-width: 900px;
    margin: auto;
    padding: 10px;
}

h1 {
	font-size: 2.0em;
	margin-bottom: 20px;
}
p {
	font-size: 1.2em;
	margin-bottom: 30px;
}
.cta-button {
	background-color: #ff5733;
	color: white;
	padding: 15px 30px;
	text-decoration: none;
	font-size: 1.2em;
	border-radius: 5px;
	display: inline-block;
}
.cta-button:hover {
	background-color: #e64a19;
}

/* Signup Section */
.signup-section {
    text-align: center;
    padding: 50px 20px;
    background: black;
    color: white;
}

.signup-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.signup-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin: 10px 0;
    font-size: 1.1em;
    width: 100%;
    border: 1px solid white;
    background: black;
    color: white;
}

.signup-button {
    background-color: red;
    color: white;
    padding: 12px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
}

.signup-button:hover {
    background-color: darkred;
}

.fine-print {
    font-size: 0.9em;
    color: gray;
    margin-top: 10px;
}

/* General Nav Styling */
.navbar {
    background: black;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

/* General Navigation Styling */
.navbar {
    background: black;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    position: relative; /* Keeps navbar positioned properly */
    z-index: 1000; /* Ensures it's on top */
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Hamburger Button */
.hamburger {
    display: none;
    font-size: 2em;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1200; /* Ensures it stays clickable */
}

/* Standard Navigation Links */
.nav-links {
    display: flex; /* Ensure visibility on desktop */
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00b7ff; /* Highlight on hover */
}

.nav-links a.active {
    background-color: #00b7ff; /* Highlighted color */
    color: black;
    font-weight: bold;
    border-radius: 5px;
    padding: 8px 15px;
}


.nav-links.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    z-index: 1050;
    padding-top: 20px;
}


.nav-links.show {
    visibility: visible;
    opacity: 1;
    display: flex;
}
/* Real Enemy Profile Styling */
.profile {
    border: 2px solid #ccc;
    padding: 20px;
    margin: 20px;
    background: #222;
    color: white;
    border-radius: 8px;
}

.name {
    font-size: 1.8em;
    font-weight: bold;
}

.state {
    font-size: 1.2em;
    color: #aaa;
}

.grade {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 10px 0;
}

.gradehero {
	background: darkgreen;
	color: yellow;
	border-radius: 8px;  /* Rounded corners for a smoother look */
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 10px 0;
	width: 60%;  /* Set width to 60% of parent */
    max-width: 500px;  /* Optional: Prevent it from becoming too wide on large screens */
    margin: 10px auto;  /* Center the box */
    text-align: center;  /* Keep text centered */
}

.traitor, .fence {
    width: 60%;  /* Set width to 60% of parent */
    max-width: 500px;  /* Optional: Prevent it from becoming too wide on large screens */
    margin: 10px auto;  /* Center the box */
    text-align: center;  /* Keep text centered */
    font-size: 1.5em;  /* Make text more prominent */
    padding: 10px;  /* Add some spacing inside */
    border-radius: 8px;  /* Rounded corners for a smoother look */
    font-weight: bold;  /* Make the text stand out */
}

.traitor { background: red; color: white; }
.fence { background: yellow; color: black; }

.justification {
    text-align: left;
    width: 90%;
    max-width: 800px; /* Optional: Set a max width for readability */
    margin: 0 auto; /* Centers it if the parent container is wider */
    line-height: 1.5;
}


.links ul {
    list-style: none;
    padding: 0;
}

.links li {
    margin-bottom: 5px;
}

.links a {
    color: #00b7ff;
    text-decoration: none;
    font-weight: bold;
}

  .dramatic-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #b30000; /* Bold red for urgency */
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    gap: 15px; /* Space between image and text */
  }

  .dramatic-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
  }

  .icon2 {
    max-width: 50px;  /* Adjust size as needed */
    object-fit: contain; /* Ensures image fits without distortion */
  }

/* Mobile Menu Styling */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed; /* Fixed so it overlays everything */
        top: 0;
        left: 5;
        width: 60%;
        background: rgba(0, 0, 0, 0.95); /* Dark background for contrast */
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        z-index: 1050; /* Ensures it overlays content */
    }

    .nav-links li {
        display: block;
        padding: 5px 0;
    }

    .nav-links a {
        font-size: 1.5em;
        padding: 5px;
        display: block;
    }

    .nav-links.show {
        display: flex;
    }
}
