/* GENERAL STYLES */
body {
    background-color: #1a1a1a; /* Dark Charcoal */
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    text-align: center;
    background-image: url('background-texture.jpg');
    background-size: cover;
}

/* HEADER & LOGO */
header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { height: 60px; }

/* HERO TEXT */
.hero h1 {
    font-size: 2.5rem;
    color: #d4af37; /* Gold color */
    margin-top: 50px;
}

/* THE PILLARS LAYOUT */
.hub-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    flex-wrap: wrap;
}

.pillar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #d4af37;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px); /* Makes it pop up like the mock */
    background: rgba(212, 175, 55, 0.1);
}

.pillar img {
    width: 100%;
    border-radius: 5px;
}

/* GOLD BUTTONS */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}