/* Global */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #222;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #C62828;
    color: white;
}

header nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Hero */
.hero {
    background: repeating-linear-gradient(
        90deg,
        #7EC8E3,
        #7EC8E3 40px,
        white 40px,
        white 80px
    );
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.date {
    font-size: 1.2rem;
    margin-top: 10px;
}

.mayor {
    font-size: 1rem;
    margin-top: 5px;
    font-weight: bold;
}

.cta-buttons {
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin: 10px;
}

.primary {
    background: #C62828;
    color: white;
}

.secondary {
    background: #E86CA8;
    color: white;
}

/* About */
.about {
    padding: 60px 20px;
    text-align: center;
}

/* Traders */
.traders {
    padding: 60px 20px;
    background: #f7f7f7;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #7EC8E3;
}

.btn.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Apply */
.apply {
    padding: 60px 20px;
    text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}
