/* GLOBAL */
body {
    margin: 0;
    background: linear-gradient(#001F3F, #003A8C);
    font-family: 'Roboto', sans-serif;
    color: white;
}

/* HEADER */
header {
    background: #001F3F;
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #FFD700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 12px #00CFFF;
    object-fit: cover;
}

header h1 {
    font-family: 'Bangers';
    font-size: 48px;
    margin: 0;
    color: #FFD700;
    text-shadow: 3px 3px #000;
}

/* NAVIGATION */
nav {
    margin-left: auto;
}

nav a {
    color: #FFFFFF;
    margin-left: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.2s;
}

nav a:hover {
    background: #00CFFF;
    color: #000;
}

/* HERO */
.hero {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(#003A8C, #005FCC);
    border-bottom: 5px solid #FFD700;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.4);
}

.hero h2 {
    font-family: 'Bangers';
    font-size: 70px;
    margin: 0;
    color: #FFD700;
    text-shadow: 4px 4px #000;
}

.hero p {
    font-size: 22px;
    margin-top: 15px;
    text-shadow: 2px 2px #000;
}

/* BUTTONS */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 24px;
    background: #FFD700;
    color: #000;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 4px #B8860B;
    transition: 0.2s;
}

.btn:hover {
    background: #00CFFF;
    box-shadow: 0 4px #0088AA;
}

.btn:active {
    box-shadow: 0 2px #B8860B;
    transform: translateY(2px);
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin: 50px 0 20px;
    font-family: 'Bangers';
    font-size: 50px;
    color: #FFD700;
    text-shadow: 3px 3px #000;
}

/* CARDS */
.posts {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.card {
    background: #002A66;
    border: 4px solid #00CFFF;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.7);
}

.card h3 {
    font-family: 'Bangers';
    color: #FFD700;
    font-size: 32px;
    margin-top: 0;
    text-shadow: 2px 2px #000;
}

.card p {
    font-size: 18px;
}

/* FOOTER */
footer {
    background: #001F3F;
    padding: 25px;
    text-align: center;
    margin-top: 50px;
    border-top: 5px solid #FFD700;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.7);
}

footer a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 12px;
    font-weight: bold;
}