
/* Section Layouts */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #9a733b;
    text-align: center;
}

/* Content Grids */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.intro-content,
.loyalty-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.intro-text,
.loyalty-text {
    flex: 1 1 50%;
}

.intro-image,
.loyalty-image {
    flex: 1 1 45%;
}

.image-frame {
    border: 5px solid #e3c78f;
    padding: 5px;
    background: white;
}

/* Gaming Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.option-card {
    background: #fff;
    border: 1px solid #e5ddd5;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-image {
    margin-bottom: 1rem;
}

.option-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3e2f1c;
}

.option-features {
    list-style: disc inside;
    margin-top: 0.5rem;
}

/* Loyalty Program */
.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.tier-card {
    background: #fef8ec;
    border-left: 5px solid #c19b6c;
    padding: 1rem;
    border-radius: 8px;
}

.tier-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #9c7a44;
    margin-bottom: 0.5rem;
}

.gold-button {
    display: inline-block;
    background-color: #c5a56a;
    color: white;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
}

.gold-button:hover {
    background-color: #a58550;
}

/* Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-card {
    background: #fffdf8;
    border: 1px solid #e5ddd5;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
}

.event-date {
    background: #9a733b;
    color: white;
    padding: 0.5rem;
    text-align: center;
    border-radius: 6px;
    width: 60px;
}

.event-date .month {
    font-size: 0.9rem;
    display: block;
}

.event-date .day {
    font-size: 1.6rem;
    font-weight: bold;
}

.event-details {
    flex: 1;
}

.event-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #9a733b;
    text-decoration: underline;
}
.responsible-cta{

    display: flex;
    justify-content: center;
}
.responsible-content p{
    text-align: center;
}