/* GLOBAL STYLES */
body {
    margin: 0;
    background: #0d0d0d;
    color: #e6e6e6;
    font-family: 'Inter', sans-serif;
}

/* HERO BANNER */
.hero {
    background: url('images/banner/andromeda.jpg') no-repeat center center/cover;
    height: 55vh;
    display: flex;
    align-items: center;
}

.hero-text {
    margin-left: 60px;
    max-width: 500px;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0));
    padding: 20px 30px;
    border-radius: 8px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin: 0;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #cccccc;
}

/* TILE GRID */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 40px;
}

.tile {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.tile h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.1rem;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
