/* style/beginner-guide.css */

/* Base styles for the page */
.page-beginner-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-beginner-guide-hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,blue_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide-hero-section > .page-beginner-guide-container {
    position: relative;
    z-index: 1;
}

.page-beginner-guide-main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107; /* Highlight with auxiliary color */
}

.page-beginner-guide-hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-beginner-guide-hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-beginner-guide-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-beginner-guide-btn-primary {
    background-color: #FFC107;
    color: #000; /* Ensure high contrast */
    border: 2px solid #FFC107;
}

.page-beginner-guide-btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-beginner-guide-btn-secondary {
    background-color: #007BFF;
    color: #fff;
    border: 2px solid #007BFF;
}

.page-beginner-guide-btn-secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-beginner-guide-btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* General Section Styling */
.page-beginner-guide-section {
    padding: 60px 0;
}

.page-beginner-guide-section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-beginner-guide-section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-beginner-guide-section-subtitle {
    font-size: 1.1em;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.page-beginner-guide-intro p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 15px;
}

.page-beginner-guide-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.page-beginner-guide-features-list li {
    background-color: #fff;
    padding: 15px 20px;
    border-left: 4px solid #007BFF;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.05em;
    color: #333;
    display: flex;
    align-items: center;
}

.page-beginner-guide-icon-check {
    color: #FFC107;
    font-size: 1.2em;
    margin-right: 10px;
}

.page-beginner-guide-icon-check::before {
    content: '✔'; /* Unicode checkmark */
}

/* Guide List Section */
.page-beginner-guide-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-beginner-guide-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-beginner-guide-card-title {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-beginner-guide-card-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    padding: 0 15px;
}

/* App Download Section */
.page-beginner-guide-app-download {
    background-color: #007BFF;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-beginner-guide-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-beginner-guide-app-text h2 {
    color: #FFC107;
}

.page-beginner-guide-app-text p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 20px auto 30px auto;
    color: #e0e0e0;
}

.page-beginner-guide-app-image-wrapper {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-app-image {
    width: 100%;
    max-width: 300px; /* Adjust as needed */
    height: auto;
    display: block;
}

/* Tips Section */
.page-beginner-guide-tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-beginner-guide-tips-list li {
    background-color: #fff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    font-size: 1.05em;
    color: #444;
    border-left: 5px solid #FFC107;
}

.page-beginner-guide-tips-list li strong {
    color: #007BFF;
    font-size: 1.1em;
}

/* CTA Section */
.page-beginner-guide-cta {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-beginner-guide-cta h2 {
    color: #FFC107;
    margin-bottom: 25px;
}

.page-beginner-guide-cta p {
    font-size: 1.15em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-beginner-guide-disclaimer {
    font-size: 0.9em;
    color: #bbb;
    margin-top: 30px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-beginner-guide-app-content {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .page-beginner-guide-app-text {
        flex: 1;
        padding-right: 40px;
    }

    .page-beginner-guide-app-image-wrapper {
        flex: 0 0 350px;
    }
}

@media (max-width: 767px) {
    .page-beginner-guide-main-title {
        font-size: 2.2em;
    }

    .page-beginner-guide-hero-description {
        font-size: 1em;
    }

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

    .page-beginner-guide-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-beginner-guide-btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-beginner-guide-card-grid {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-features-list {
        grid-template-columns: 1fr;
    }
}