/* Page-specific styles for expansions page */

.hero {
    position: relative;
    background: linear-gradient(to bottom, #f5f5dc, #d2b48c); /* parchment to terracotta */
    padding: 3rem 1rem;
    text-align: center;
    color: #2e2e2e;
    border-bottom: 3px solid #8b4513; /* bronze accent */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #556b2f; /* olive green */
    font-family: 'Times New Roman', serif;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 0 auto;
}

.philosophy, .catalog, .map-showcase, .mechanics, .synergies, .gallery, .testimonials, .acquisition, .digital-integration, .faq, .future {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #8b4513; /* bronze */
    border-bottom: 2px solid #d2b48c; /* terracotta */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.expansion-card {
    background: #fffaf0; /* floral white */
    border: 1px solid #d2b48c;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.expansion-card:hover {
    transform: translateY(-5px);
}

.expansion-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.expansion-card h3 {
    color: #556b2f;
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    color: #8b4513;
    margin-bottom: 1rem;
}

.map-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.map-gallery figure {
    flex: 1 1 350px;
    max-width: 500px;
    text-align: center;
}

.map-gallery img {
    width: 100%;
    height: auto;
    border: 2px solid #d2b48c;
    border-radius: 5px;
}

figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.accordion details {
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    padding: 1rem;
}

.accordion summary {
    cursor: pointer;
    font-weight: bold;
    color: #8b4513;
    font-size: 1.1rem;
}

.accordion img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #fffaf0;
}

table, th, td {
    border: 1px solid #8b4513;
    padding: 0.75rem;
    text-align: left;
}

th {
    background-color: #d2b48c;
    color: #2e2e2e;
}

.scroll-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scrollbar-width: thin;
}

.scroll-gallery img {
    height: 250px;
    width: auto;
    border-radius: 8px;
    border: 2px solid #d2b48c;
    flex-shrink: 0;
}

blockquote {
    background: #f5f5dc;
    border-left: 4px solid #556b2f;
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.rating {
    color: #ffd700; /* gold for stars */
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.acquisition ul, .digital-integration ul {
    list-style-type: none;
    padding-left: 0;
}

.acquisition li, .digital-integration li {
    margin-bottom: 0.5rem;
}

.acquisition a, .digital-integration a {
    color: #8b4513;
    text-decoration: underline;
}

.faq details {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.faq summary {
    font-weight: bold;
    color: #2e2e2e;
}

.future p {
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .expansion-grid {
        grid-template-columns: 1fr;
    }
    .map-gallery {
        flex-direction: column;
    }
}