
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
:root {
    --primary: #005f27;
    --secondary: #FFD700;
    --light-bg: #f9f9f9;
}
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}
.hero {
    position: relative;
    background: url('../img/banner/2.jpg') center/cover no-repeat fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.btn-cta {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}
.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-alt {
    background: var(--light-bg);
}
.section-title {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 2rem;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: .5rem auto 0;
}
.history-table {
    overflow-x: auto;
}
.history-table table {
    width: 100%;
    border-collapse: collapse;
}
.history-table th,
.history-table td {
    padding: .75rem;
    text-align: center;
    border: 1px solid #ddd;
}
.history-table thead {
    background: var(--primary);
    color: #fff;
}
.btn-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color .3s;
}
.btn-link:hover {
    color: var(--secondary);
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 2rem;
}
.hotel-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform .3s, box-shadow .3s;
}
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.hotel-card h5 {
    margin-top: 0;
    color: var(--primary);
    font-size: 1.2rem;
}
.hotel-card a {
    color: var(--secondary);
    text-decoration: none;
}
.sponsors .tier {
    margin-bottom: 3rem;
    text-align: center;
}
.sponsors .tier h4 {
    margin-bottom: 1rem;
    color: #555;
}
.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.sponsor-logos img {
    max-height: 80px;
    filter: grayscale(100%);
    transition: filter .3s;
}
.sponsor-logos img:hover {
    filter: none;
}
.location-desc {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
