/* ===================================
   Iron Club Portal
   =================================== */

:root {
    --iron-red: #9B1C1C;
    --iron-darkred: #6B0F0F;
    --iron-black: #0F0F0F;
    --iron-gold: #D4AF37;
    --iron-lightgold: #E8D070;
    --text: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--iron-black);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}
/* ===================================
   HERO
   =================================== */

.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: linear-gradient(
        180deg,
        #111111 0%,
        #1b1b1b 100%
    );
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--iron-gold);
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: normal;
    color: white;
    margin-bottom: 20px;
}

.hero-content p {
    color: #bbbbbb;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
/* ---------- Header ---------- */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 50px;
    background: #101010;
    border-bottom: 1px solid #2c2c2c;
}

.logo img {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav a {
    color: #f3f3f3;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: var(--iron-gold);
}

/* ---------- Hero text fix ---------- */

.hero h1 {
    font-size: 58px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    color: #bbbbbb;
}
.hero {
    justify-content: flex-end;
    padding-bottom: 130px;
}

.hero h1 {
    display: block;
    font-size: 64px;
    line-height: 1;
}

.hero p {
    display: block;
    margin-top: 14px;
    font-size: 24px;
}
.hero-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-logo{
    height:220px;
    width:auto;

    margin-bottom:35px;
}

.hero h1{
    color:var(--iron-gold);
    font-size:60px;
    margin-bottom:15px;
}

.hero p{
    font-size:24px;
    color:#bbbbbb;
}1~.hero-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-logo{
    height:220px;
    width:auto;

    margin-bottom:35px;
}


