/* =========================
   FONTS 
========================= */
@font-face {
    font-family: "MyFont";
    src: url("../fonts/Oswald-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "MyFont1";
    src: url("../fonts/Oswald-SemiBold.ttf") format("truetype");
}

/* =========================
   BASE
========================= */
body {
    margin: 0;
    font-family: "MyFont1", Arial, sans-serif;
    background: linear-gradient(180deg, #c57c2f 0%, #d15d27 100%);
    position: relative;
}

/* Background logo */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/ANRO.png") no-repeat center;
    background-size: 570px;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* =========================
   HEADER
========================= */
#head {
    padding: 20px 10px;
    text-align: center;
    background: #710105;
    color: #CB8133;
    border-bottom: white 7px solid;
    font-family: "MyFont", Arial, sans-serif;
}

#head h1 {
    font-size: 64px;
    letter-spacing: 3px;
    margin: 0;
}

#head h2 {
    font-size: 26px;
    margin-top: 5px;
}

/* =========================
   NAV MENU
========================= */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: #710105;
    padding: 12px;
    width: 100%;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    color: #CB8133;
}

/* =========================
   PAGE LAYOUT
========================= */
#page {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

/* =========================
   HERO / INTRO
========================= */
.intro {
    text-align: center;
    padding: 60px 20px 30px;
    max-width: 800px;
}

.intro h1 {
    font-size: 50px;
    color: #710105;
    -webkit-text-stroke: 0.5px black;
    margin-bottom: 5px;
}

.tagline {
    font-size: 20px;
    font-style: "MyFont", italic;
    color: #710105;
    margin-bottom: 15px;
}

.intro h2 {
    font-size: 25px;
    font-weight: normal;
}

/* =========================
   GRID CONTENT
========================= */
.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    padding: 40px;
}
/* main index site content*/ 
.contentmain 
{ max-width: 800px;
 margin: 20px auto; 
 line-height: 1.6;
 color: white; 
font-style: "MyFont";
font-size: 20px;
}

/* =========================
   CARDS
========================= */
.card {
    background: #5d0508db;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-left: 4px solid white;
}

.card h4 {
    color: #ffae00;
    margin-bottom: 10px;
}

.card p {
    margin: 10px 0 5px;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card li {
    margin-bottom: 6px;
    color: #ddd;
}

/* =========================
   BADGES
========================= */
.badge {
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    margin-right: 6px;
    font-weight: bold;
}

.badge.lr { background: #28a745; }
.badge.mr { background: #2d6cdf; }
.badge.hr { background: #6f42c1; }
.badge.other { background: #6c757d; }

.badge.alt {
    background: #444;
    font-size: 10px;
}

/* =========================
   FOOTER
========================= */
#feet {
    text-align: center;
    background: #710105;
    color: #edc279;
    border-top: white 6px solid;
    width: 100%;
    padding: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .content {
        grid-template-columns: 1fr;
    }
}