/* style/-g.css */
/* Page specific styles for 'Đá gà' */

.page--g {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text for contrast on dark background */
    background-color: #121212; /* Dark background */
    line-height: 1.6;
}

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

.page--g__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page--g__section:nth-of-type(even) {
    background-color: #1A1A1A;
}

.page--g__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page--g__subtitle {
    font-size: 1.8em;
    color: #1E90FF; /* Secondary color for subtitles */
    margin-bottom: 25px;
    font-weight: 600;
}

.page--g__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC; /* Slightly lighter grey for paragraphs */
}

.page--g__link {
    color: #1E90FF; /* Secondary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page--g__link:hover {
    color: #FFD700; /* Primary color on hover */
    text-decoration: underline;
}

.page--g__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page--g__button--primary {
    background-color: #FFD700; /* Primary color */
    color: #121212; /* Dark text for contrast */
    margin-right: 15px;
}

.page--g__button--primary:hover {
    background-color: #E0C000;
    color: #000000;
}

.page--g__button--secondary {
    background-color: #1E90FF; /* Secondary color */
    color: #FFFFFF; /* White text for contrast */
    border: 2px solid #1E90FF;
}

.page--g__button--secondary:hover {
    background-color: #1A7DD9;
    border-color: #1A7DD9;
    color: #FFFFFF;
}

.page--g__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page--g__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.page--g__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page--g__list--bullet {
    list-style-type: none;
    padding-left: 0;
}

.page--g__list--bullet li {
    position: relative;
    padding-left: 30px;
}

.page--g__list--bullet li::before {
    content: '•';
    color: #FFD700; /* Primary color for bullets */
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.page--g__list--check {
    list-style-type: none;
    padding-left: 0;
}

.page--g__list--check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}

.page--g__list--check li::before {
    content: '✔';
    color: #1E90FF; /* Secondary color for checkmarks */
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0px;
    font-weight: bold;
}

.page--g__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A1A1A, #000000);
    color: #FFFFFF;
    gap: 40px;
}

.page--g__hero-content {
    flex: 1;
    max-width: 600px;
}

.page--g__hero-title {
    font-size: 4em;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #FFD700; /* Primary color */
    font-weight: 900;
}

.page--g__hero-description {
    font-size: 1.3em;
    margin-bottom: 35px;
    color: #E0E0E0;
}

.page--g__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
}

.page--g__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page--g__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page--g__card {
    background-color: #222222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.page--g__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page--g__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700; /* Primary color border */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page--g__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Primary color */
    padding: 15px 20px 10px;
    font-weight: bold;
}

.page--g__card-title a {
    color: #FFD700;
    text-decoration: none;
}

.page--g__card-title a:hover {
    color: #1E90FF;
    text-decoration: underline;
}

.page--g__card-description {
    font-size: 0.95em;
    color: #B0B0B0;
    padding: 0 20px;
    flex-grow: 1;
}

.page--g__guide-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page--g__guide-steps {
    flex: 2;
}

.page--g__guide-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page--g__guide-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page--g__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page--g__feature-item {
    background-color: #222222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page--g__feature-item:hover {
    transform: translateY(-5px);
}

.page--g__feature-icon {
    width: 120px; /* Larger icon size */
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page--g__feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page--g__feature-description {
    font-size: 1em;
    color: #B0B0B0;
}

.page--g__responsible-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page--g__responsible-text {
    flex: 2;
    min-width: 300px;
}

.page--g__responsible-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page--g__responsible-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page--g__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page--g__hero-content {
        max-width: 100%;
    }

    .page--g__hero-title {
        font-size: 3.2em;
    }

    .page--g__hero-description {
        font-size: 1.1em;
    }

    .page--g__hero-image-wrapper {
        margin-top: 40px;
        max-width: 100%;
    }

    .page--g__guide-layout {
        flex-direction: column;
    }

    .page--g__responsible-content {
        flex-direction: column;
    }

    .page--g__guide-image-wrapper, .page--g__responsible-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page--g__section-title {
        font-size: 2.2em;
    }

    .page--g__subtitle {
        font-size: 1.5em;
    }

    .page--g__hero-title {
        font-size: 2.5em;
    }

    .page--g__hero-description {
        font-size: 1em;
    }

    .page--g__button {
        padding: 12px 25px;
        font-size: 1em;
        margin-bottom: 15px;
    }

    .page--g__button--primary {
        margin-right: 0;
    }

    .page--g__card-grid, .page--g__features-grid {
        grid-template-columns: 1fr;
    }

    .page--g__card-image, .page--g__feature-icon, .page--g__guide-image, .page--g__responsible-image {
        height: 200px; /* Adjust height for smaller screens if needed, maintaining min-size */
    }
}

@media (max-width: 480px) {
    .page--g__section-title {
        font-size: 1.8em;
    }

    .page--g__hero-title {
        font-size: 2em;
    }

    .page--g__button {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page--g__button--large {
        width: auto; /* Allow large button to adjust naturally */
        display: inline-block;
    }
    .page--g__feature-icon {
        width: 100px; /* Smaller icon size for very small screens */
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }
}