/* Base Styles */
:root {
    --deep-black: #0A0A0A;
    --blood-red: #B00000;
    --faded-red: #700000;
    --warning-yellow: #FFD700;
    --ashen-gray: #CCCCCC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--deep-black);
    color: var(--ashen-gray);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

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

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

.btn {
    display: inline-block;
    background-color: var(--blood-red);
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
}

.btn:hover {
    background-color: #F00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(176, 0, 0, 0.4);
}

/* Header Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(176, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.main-title {
    font-size: 7rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 0 20px rgba(176, 0, 0, 0.8);
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.subtitle {
    color: var(--warning-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.intro-text {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* What We Offer Section */
.what-we-offer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 80px 0;
}

.what-we-offer h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 50px;
}

.pillars {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    justify-content: center;
}

.pillar {
    flex: 1;
    padding: 20px;
    min-width: 300px;
    max-width: 350px;
}

.pillar h3 {
    color: var(--blood-red);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.pillar-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    height: 100%;
    border-left: 3px solid var(--blood-red);
    transition: all 0.3s ease;
}

.pillar-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(176, 0, 0, 0.3);
    border-left-width: 6px;
}

.empowerment {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 50px auto 20px;
}

/* Mission Section */
.mission {
    background-color: #080808;
    text-align: center;
    padding: 80px 0;
}

.mission h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
}

.mission-intro {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

.focus-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.focus-area {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-top: 3px solid var(--blood-red);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.focus-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(176, 0, 0, 0.3);
}

.focus-area h3 {
    color: var(--warning-yellow);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

/* Call to Action Section */
.cta {
    background-color: #0a0a0a;
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.cta-message {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    padding: 60px 0;
    text-align: center;
    background-color: #000;
}

.security-notice {
    font-family: 'Courier New', monospace;
    background-color: rgba(176, 0, 0, 0.1);
    padding: 15px;
    border-left: 3px solid var(--blood-red);
    display: inline-block;
    margin: 20px 0;
    max-width: 600px;
}

.contact-info {
    margin: 30px 0;
    font-size: 1.2rem;
}

.commitment {
    color: var(--warning-yellow);
    font-size: 1.4rem;
    margin: 30px 0;
    font-style: italic;
}

/* Animated Elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 1.2s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .pillars, .focus-areas {
        flex-direction: column;
        align-items: center;
    }
    
    .pillar, .focus-area {
        width: 100%;
        max-width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 15px 20px;
    }
    
    .what-we-offer h2, .mission h2, .cta h2 {
        font-size: 2.5rem;
    }

    /* Adjust password entry layout on mobile */
    .password-entry {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 350px; /* Consistent max width */
        margin-left: auto;
        margin-right: auto;
    }

    #passwordInput {
        width: 100%;
        max-width: 100%; /* Take full width within the container */
        text-align: center;
    }

    #joinButton {
        width: 100%; /* Make button full width */
    }
}

/* Add styles for password input and error message */
.password-entry {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Space between input and button */
    margin-top: 20px; /* Add some space above the input */
}

#passwordInput {
    padding: 15px 20px;
    font-size: 1rem;
    border: 1px solid var(--faded-red);
    background-color: #111;
    color: var(--ashen-gray);
    font-family: Arial, Helvetica, sans-serif;
    flex-grow: 1; /* Allow input to take available space */
    max-width: 300px; /* Limit max width */
}

#passwordInput::placeholder {
    color: #555;
}

#joinButton {
    /* Button styles are already defined by .btn */
    flex-shrink: 0; /* Prevent button from shrinking */
}

.error-message {
    color: var(--warning-yellow);
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.5em; /* Reserve space to prevent layout shift */
    display: none; /* Hidden by default */
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Academy Page Specific Styles */
body.academy-page {
    background-image: linear-gradient(rgba(10, 10, 10, 0.80), rgba(10, 10, 10, 0.80)), url('Wolf Academy.jpeg');
    background-repeat: no-repeat;
    background-position: left center;
    background-attachment: fixed;
    background-size: 900px auto; /* New size: 3x larger */
}

/* Add padding to main container on academy pages to avoid text overlapping the left-aligned logo */
/* Removed padding to allow text to flow over logo */
/*
.academy-page .container {
    padding-left: 950px; 
}
*/

.academy-modules {
    margin-top: 40px;
}

.course-module {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--blood-red);
    transition: all 0.3s ease;
}

.course-module:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-left-color: var(--warning-yellow);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(176, 0, 0, 0.2);
}

.course-module h3 {
    color: var(--warning-yellow);
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.course-module p {
    margin-bottom: 8px;
    line-height: 1.7;
}

.course-module p strong {
    color: var(--ashen-gray); /* Make 'Focus:' and 'Topics:' slightly brighter */
}

/* Adjust Academy styles for mobile */
@media (max-width: 768px) {
    body.academy-page {
        background-size: cover; /* Cover might look better on mobile */
    }
    .course-module h3 {
        font-size: 1.5rem;
    }
}

/* Make course modules clickable */
a.course-module-link {
    text-decoration: none; /* Remove default underline */
    display: block; /* Ensure the link wraps the whole block */
    cursor: pointer;
}

/* Ensure nested elements inherit color correctly */
a.course-module-link .course-module * {
    color: inherit;
}

/* Styles for the bottom-right wolf image */
#bottom-right-wolf {
    position: fixed;
    bottom: 10px; /* Small offset from edge */
    right: 10px;  /* Small offset from edge */
    width: 200px; /* New size: Doubled */
    height: auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Fade-in transition */
    z-index: 99; /* Keep it above most content */
    pointer-events: none; /* Prevent interaction */
}

#bottom-right-wolf.visible {
    opacity: 0.8; /* Final opacity when visible */
} 