/* style/beginner-guide-choose-first-fight.css */

/* Base styles for the page content */
.page-beginner-guide-choose-first-fight {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-beginner-guide-choose-first-fight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-beginner-guide-choose-first-fight-hero {
    position: relative;
    background: linear-gradient(135deg, #1A202C 0%, #3A0F0F 100%); /* Dark gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 450px;
}

.page-beginner-guide-choose-first-fight-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 0 20px;
}

.page-beginner-guide-choose-first-fight-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E53E3E; /* Accent red for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-beginner-guide-choose-first-fight-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #CCCCCC;
}

.page-beginner-guide-choose-first-fight-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    overflow: hidden;
}

.page-beginner-guide-choose-first-fight-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Sections */
.page-beginner-guide-choose-first-fight-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-beginner-guide-choose-first-fight-section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide-choose-first-fight-section-title {
    font-size: 2.5em;
    color: #E53E3E; /* Accent red for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
}

.page-beginner-guide-choose-first-fight-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E53E3E;
    border-radius: 2px;
}

.page-beginner-guide-choose-first-fight p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-beginner-guide-choose-first-fight strong {
    color: #E53E3E;
}

/* List styles */
.page-beginner-guide-choose-first-fight-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-beginner-guide-choose-first-fight-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #C0C0C0;
}

.page-beginner-guide-choose-first-fight-list li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #E53E3E;
    font-size: 1.2em;
    top: 0;
}

.page-beginner-guide-choose-first-fight-list-styled li::before {
    content: '➡️';
}

/* Grid for factors */
.page-beginner-guide-choose-first-fight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-beginner-guide-choose-first-fight-grid-item {
    background-color: #2D3748; /* Slightly lighter dark background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-choose-first-fight-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-choose-first-fight-item-title {
    font-size: 1.8em;
    color: #E53E3E; /* Accent red for item titles */
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(229, 62, 62, 0.3);
    padding-bottom: 10px;
}

/* Buttons (CTA) */
.page-beginner-guide-choose-first-fight-cta-button,
.page-beginner-guide-choose-first-fight-button {
    display: inline-block;
    background-color: #E53E3E; /* Accent red for primary buttons */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-beginner-guide-choose-first-fight-cta-button:hover,
.page-beginner-guide-choose-first-fight-button:hover {
    background-color: #c53030; /* Darker red on hover */
    transform: translateY(-2px);
}

.page-beginner-guide-choose-first-fight-button-secondary {
    background-color: #2C5282; /* A complementary blue for secondary actions */
}

.page-beginner-guide-choose-first-fight-button-secondary:hover {
    background-color: #2A4365;
}

.page-beginner-guide-choose-first-fight-cta-button-outline {
    background-color: transparent;
    border: 2px solid #E53E3E;
    color: #E53E3E;
}

.page-beginner-guide-choose-first-fight-cta-button-outline:hover {
    background-color: #E53E3E;
    color: #FFFFFF;
}

.page-beginner-guide-choose-first-fight-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Images */
.page-beginner-guide-choose-first-fight-image-small {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-choose-first-fight-image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Call to Action Section */
.page-beginner-guide-choose-first-fight-call-to-action {
    background: linear-gradient(90deg, #E53E3E, #FF7B00); /* Vibrant gradient for CTA */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-choose-first-fight-call-to-action .page-beginner-guide-choose-first-fight-section-title {
    color: #FFFFFF;
}

.page-beginner-guide-choose-first-fight-call-to-action .page-beginner-guide-choose-first-fight-section-title::after {
    background-color: #FFFFFF;
}

.page-beginner-guide-choose-first-fight-call-to-action p {
    color: #FFF;
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-beginner-guide-choose-first-fight-title {
        font-size: 2.5em;
    }

    .page-beginner-guide-choose-first-fight-subtitle {
        font-size: 1.1em;
    }

    .page-beginner-guide-choose-first-fight-section-title {
        font-size: 2em;
    }

    .page-beginner-guide-choose-first-fight-item-title {
        font-size: 1.5em;
    }

    .page-beginner-guide-choose-first-fight-grid {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-choose-first-fight-cta-buttons {
        flex-direction: column;
    }

    .page-beginner-guide-choose-first-fight-cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-choose-first-fight-hero {
        padding: 60px 0;
    }

    .page-beginner-guide-choose-first-fight-title {
        font-size: 2em;
    }

    .page-beginner-guide-choose-first-fight-subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-choose-first-fight-section {
        padding: 40px 0;
    }

    .page-beginner-guide-choose-first-fight-section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-choose-first-fight-grid-item {
        padding: 20px;
    }

    .page-beginner-guide-choose-first-fight p,
    .page-beginner-guide-choose-first-fight-list li {
        font-size: 0.95em;
    }

    .page-beginner-guide-choose-first-fight-cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}