
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ffe96b, #ff88c2, #7dc8ff);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #222;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3 {
    font-family: 'Bangers', cursive;
    color: #111;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.for-sale {
    background: #ff0;
    padding: 10px;
    border: 2px dashed #000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-banner {
    width: 100%;
    border: 4px solid #111;
    margin-bottom: 20px;
    box-shadow: 8px 8px #222;
}

.feature-panel {
    margin: 30px 0;
    text-align: center;
}

.feature-panel img {
    max-width: 100%;
    border: 4px solid #111;
    box-shadow: 8px 8px #222;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border: 3px solid #111;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 6px 6px #111;
    transition: transform 0.2s;
}
.card:hover {
    transform: scale(1.03);
}

.card img {
    max-width: 100%;
    height: auto;
    border-bottom: 2px solid #111;
    margin-bottom: 10px;
}

a { color: #d00070; text-decoration: none; font-weight: bold; }
a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .hero-banner {
        margin-bottom: 15px;
    }
}
