/* Simulator golf landing page */

/*hero section (same pattern as fitting.css — hero styles are page-scoped)*/
.hero {
    grid-template-rows: repeat(2, min-content) 1fr;
}

.hero>*:not(.hero-image) {
    grid-column: 2/3;
    z-index: 1;
    text-align: center;
}

.hero-title {
    grid-row: 1/2;
    letter-spacing: 1px;
}

.hero-description {
    grid-row: 2/3;
    letter-spacing: 0.18px;
    color: rgba(var(--rgb-white), .8);
}

.hero-btn-group {
    grid-row: 3/4;
    align-self: start;
    justify-self: center;
}

.hero-image {
    height: 700px;
    grid-column: 1/-1;
    grid-row: 1/-1;
    position: relative;
}

.hero-image>picture>img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(var(--rgb-black), .7);
}

@media (max-width: 576px) {
    .hero-image {
        height: 600px;
    }

    .hero-image>picture>img {
        height: 600px;
    }
}
/*hero section END*/

.sg-how-img {
    width: 100%;
    border-radius: 8px;
}

/* Hour price cards */
.sg-price-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 720px;
    margin: 0 auto 40px;
}
@media (max-width: 640px) {
    .sg-price-cards {
        grid-template-columns: 1fr;
    }
}
.sg-price-card {
    border: 1px solid rgba(var(--rgb-green-dark), .18);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
}
.sg-price-label {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
    opacity: .7;
    margin-bottom: 10px;
}
.sg-price-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}
.sg-price-value span {
    font-size: 18px;
    font-weight: 600;
}

/* Package table */
.sg-table-wrap {
    max-width: 720px;
    margin: 0 auto;
    overflow-x: auto;
}
.sg-price-table {
    width: 100%;
    border-collapse: collapse;
}
.sg-price-table th,
.sg-price-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(var(--rgb-green-dark), .15);
}
.sg-price-table th {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--green-dark);
}
.sg-price-table td:last-child,
.sg-price-table th:last-child {
    text-align: right;
    white-space: nowrap;
}

/* Guide (article) pages */
.guide-title {
    font-size: 42px;
    line-height: 1.15;
    color: var(--green-dark);
}
@media (max-width: 640px) {
    .guide-title {
        font-size: 30px;
    }
}
.guide-body {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}
.guide-related {
    max-width: 720px;
    margin: 0 auto 48px;
}
.guide-related-links {
    display: grid;
    gap: 12px;
    justify-items: center;
}

/* Golf-indoor comparison page */
.gi-table td,
.gi-table th {
    text-align: left;
    white-space: normal;
}
.gi-table td:last-child,
.gi-table th:last-child {
    text-align: left;
    white-space: normal;
}
.gi-venues {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}
.gi-link {
    color: var(--green-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* FAQ (same look as the homepage FAQ; classes defined locally so the page
   doesn't depend on home.css) */
.home-faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.home-faq-item {
    border-bottom: 1px solid rgba(var(--rgb-green-dark), .15);
}
.home-faq-question {
    cursor: pointer;
    padding: 18px 8px;
    font-size: 18px;
    color: var(--green-dark);
    list-style-position: outside;
}
.home-faq-question:hover {
    opacity: .75;
}
.home-faq-answer {
    padding: 0 8px 18px;
    line-height: 1.6;
}
