/* GLOBAL RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #050505;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ----------------------------------
   NAVIGATION BAR
-----------------------------------*/
.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    padding: 20px 32px;
    border-bottom: 3px solid #DAA520;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #DAA520;
    letter-spacing: 1px;
}

.logo-tagline {
    display: block;
    font-size: 12px;
    color: #cccccc;
    margin-top: -4px;
}

.nav-left a,
.nav-right a {
    margin: 0 15px;
    font-size: 17px;
    color: #ffffff;
    transition: 0.3s;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #DAA520;
}

/* ----------------------------------
   BUTTONS
-----------------------------------*/
.gold-btn {
    background: linear-gradient(135deg, #DAA520, #b8860b);
    padding: 12px 22px;
    border-radius: 10px;
    color: #000000;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.7);
    display: inline-block;
    transition: 0.3s;
}

.gold-btn:hover {
    opacity: 0.85;
}

.gold-btn.large {
    padding: 16px 30px;
    font-size: 20px;
}

.ghost-btn {
    border: 2px solid #DAA520;
    padding: 12px 22px;
    border-radius: 10px;
    color: #DAA520;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.ghost-btn:hover {
    background: rgba(218, 165, 32, 0.15);
}

/* ----------------------------------
   HERO SECTION
-----------------------------------*/
.hero {
    position: relative;
    background: url('/assets/images/industrial_bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 200px 25px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(218, 165, 32, 0.2),
        rgba(0, 0, 0, 0.9)
    );
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-family: Georgia, serif;
    font-size: 62px;
    line-height: 1.1;
    font-weight: bold;
    color: #DAA520;
    text-shadow: 0 0 22px rgba(218, 165, 32, 1);
}

.hero-subline {
    margin-top: 20px;
    font-size: 24px;
    color: #eaeaea;
}

/* ----------------------------------
   SECTIONS
-----------------------------------*/
.section {
    padding: 90px 35px;
    border-bottom: 1px solid #222222;
    background: #050505;
}

.section-alt {
    background: #101010;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 55px;
}

.section h2 {
    font-family: Georgia, serif;
    font-size: 40px;
    color: #DAA520;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
}

.section-actions {
    margin-top: 25px;
}

.section-actions a {
    margin-right: 12px;
}

/* Bullets */
.bullets {
    margin-top: 15px;
    padding-left: 25px;
}

.bullets li {
    margin-bottom: 8px;
}

/* ----------------------------------
   MEMBERSHIP GRID
-----------------------------------*/
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tier-card {
    background: #121212;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 22px;
    transition: 0.3s;
}

.tier-card:hover {
    transform: translateY(-3px);
}

.tier-card h3 {
    font-family: Georgia, serif;
    font-size: 26px;
    margin-bottom: 10px;
    color: #DAA520;
}

.tier-card .price {
    margin-top: 12px;
    font-weight: bold;
    font-size: 18px;
}

/* Kingdom colors */
.tier-card.jack { border-color: #DAA520; }
.tier-card.queen { border-color: #800080; }
.tier-card.king {
    border-color: #DAA520;
    box-shadow: 0 0 18px rgba(218,165,32,0.5);
}

/* ----------------------------------
   FOOTER
-----------------------------------*/
.site-footer {
    background: #000000;
    padding: 40px;
    border-top: 3px solid #DAA520;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.footer-bottom {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    margin-top: 10px;
}

/* ----------------------------------
   RESPONSIVE
-----------------------------------*/
@media (max-width: 900px) {

    .topnav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-inner {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 42px;
    }

    .hero {
        padding: 140px 20px;
    }
}
.login-grid {
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.login-card {
    background: #111;
    padding: 25px;
    border: 2px solid #333;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.login-card h3 {
    color: #DAA520;
    font-size: 26px;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.login-card p {
    color: #ccc;
    font-size: 15px;
}

.login-card:hover {
    transform: translateY(-5px);
    border-color: #DAA520;
    box-shadow: 0 0 14px rgba(218,165,32,0.5);
}

.login-card.rexed {
    border-color: #6a00ff;
    box-shadow: 0 0 12px rgba(106,0,255,0.5);
}

.login-card.admin {
    border-color: #ff4444;
    box-shadow: 0 0 12px rgba(255,68,68,0.5);
}
.login-form {
    margin-top: 25px;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    border: 1px solid #444;
    background: #0d0d0d;
    color: #fff;
    font-size: 16px;
}
.login-form {
    margin-top: 25px;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #444;
    border-radius: 10px;
    background: #121212;
    color: #fff;
    margin-bottom: 18px;
}
