* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a; 
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Header */
header {
    padding: 20px;
    position: absolute;
    width: 100%;
    text-align: right;
    z-index: 100;
}

.lang-toggle {
    font-size: 0.65rem;
    color: #d4af37;
    padding-right: 20px;
}

.lang-toggle .inactive { color: #333; }

/* Hero Section */
.hero {
    min-height: 40vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 20px;
}

.main-logo-centered {
    width: 160px; /* 3x Bigger presence */
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.hero h1 {
    font-size: 2.2rem;
    color: #d4af37;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 3px;
}

.divider {
    width: 50px;
    height: 1px;
    background: #d4af37;
    margin: 15px auto;
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: #ffffff; /* CHANGED TO WHITE for high visibility */
    font-weight: 600;
}

/* Hub & Pillars */
.hub-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 20px 60px;
    max-width: 1000px; 
    margin: 0 auto;
}

.pillar {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 2px;
    overflow: hidden;
    transition: 0.3s;
}

.pillar:hover {
    border: 1px solid #d4af37;
    transform: translateY(-5px);
}

.pillar-image-container {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 65%, #111);
}

.pillar-content {
    padding: 20px;
    text-align: center;
    background: #111;
}

.pillar h3 { font-size: 1rem; color: #d4af37; margin-bottom: 8px; }
.pillar p { font-size: 0.65rem; color: #888; margin-bottom: 15px; text-transform: uppercase; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #d4af37;
    border: 1px solid #d4af37;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn:hover { background: #d4af37; color: #0a0a0a; }
.btn.primary { background: #d4af37; color: #0a0a0a; }

footer { padding: 40px; text-align: center; opacity: 0.4; font-size: 0.6rem; letter-spacing: 1px; }

@media (max-width: 800px) {
    .hub-container { grid-template-columns: 1fr; }
}