/* Hero Section */
.game-hero {
    background-color: #3aaa35;
}
.succursale {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}
.succursale svg {
    color: #ffffff;
}
.succursale span {
    text-transform: capitalize;
    margin-top: 0 !important;
    font-weight: 500 !important;
}
.game-hero h1,
.game-hero span {
    color: #ffffff;
}
.game-hero h1 {
    font-size: 62px;
}
.game-hero span {
    font-size: 32px;
    font-weight: 400;
    margin-top: 15px;
}
.columns {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 80px));
    height: 100%;
}
.game-hero .columns .col-1 {
    padding: 2em;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
.game-hero .columns .col-2 img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
/* Stats Section */
.game-stats {
    background-color: rgb(58, 170, 53, 10%);
}
.game-stats-grid {
    display: flex;
    flex-direction: row;
}
.stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 60px;
}
.stats .stat-item {
    padding: 1.5em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stats .stat-item.icon img {
    width: 50px;
    margin-bottom: 20px;
}
.stats .stat-item.value img {
    width: 85px;
    margin-bottom: 20px;
}
.game-stats .price {
    background-color: #000000;
    color: #ffffff;
    padding: 4em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 350px;
    margin-right: 60px;
    justify-content: center;
}
.game-stats .price h4 {
    color: #ffffff;
    font-size: 64px;
}
.game-stats .price span {
    font-weight: bold;
    font-size: 24px;
    margin-top: 20px;
}
.stats h6 {
    font-size: 16px;
    color: #3aaa35;
    text-transform: none;
}
/* Info Section */
.game-info {
    padding: 4em 0;
}
.game-info .columns {
    gap: 80px;
}
.game-info h2 {
    text-transform: none;
    color: #000000;
    font-size: 32px;
    margin-bottom: 20px;
}
/* Calendar */
#abk-calendar .abk-calendar-nav button:first-child,
#abk-calendar .abk-calendar-nav button:last-child,
#abk-bookform-container form fieldset div input[type="radio"],
#abk-bookform-container form fieldset div label,
#abk-bookform-container form .abk-nb-container select {
    cursor: pointer;
}
/* Responsive Settings */
@media (max-width: 1735px) {
    .game-stats .price {
        min-width: 275px;
        margin-right: 40px;
    }
    .game-stats .price h4 {
        font-size: 52px;
    }
    .stats {
        gap: 0 30px;
    }
    .game-stats-grid.container {
        padding: 0;
    }
}
@media (max-width: 1000px) {
    .columns {
        grid-template-columns: 100%;
    }
    .game-hero .columns .col-1 {
        order: 2;
        padding: 4em 1em;
    }
    .game-hero h1 {
        font-size: 36px;
    }
    .game-hero span {
        font-size: 20px;
        margin-top: 5px;
    }
    .game-info .columns .col-1 {
        order: 2;
    }
    .game-stats-grid {
        flex-direction: column;
    }
    .game-stats-grid.container {
        padding: 0;
        max-width: 100%;
    }
    .game-stats .price {
        min-width: 100%;
        margin-right: 0;
    }
    .stats {
        padding: 0 2em;
    }
    .stats .stat-item {
        flex: 100px;
        text-align: center;
    }
}
