/* home.css - Page-specific styles for GameCityPolska home page */
.hero {
    position: relative;
    text-align: center;
    color: white;
}
.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero-cta .button {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #d4a574; /* Terracotta color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.expansion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.expansion-item {
    flex: 1 1 200px;
    text-align: center;
}
.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
        justify-items: center;
            align-items: center;
}
.resource-link {
    display: block;
    padding: 1rem;
    background-color: #f5f5dc; /* Parchment color */
    text-align: center;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
}
/* Additional styles for other sections */
.experience, .strategy-spotlight, .digital-highlights, .expansions, .community, .developer-dispatch, .resources, .gallery-teaser {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
h2 {
    color: #2e8b57; /* Olive green */
    margin-bottom: 1rem;
}
.button:hover, .resource-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
.hero-content {
      width: 100%;
}
}