/* ==========================
   Reset & Global Styles
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================
   Header & Navigation
========================== */
.header {
    background-color: #111;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #222;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo {
    height: 100px;
}

.site-name {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6a00, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 18px;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-top: 15px;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

.nav-links li a:hover {
    background-color: #222;
}

/* ==========================
   Hero Section
========================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.hero-content h1 {
    font-size: 56px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

/* ==========================
   Sections & Cards
========================== */
.sections {
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    background-color: #0b0b0b;
}

.card {
    background-color: #111;
    padding: 30px;
    border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.card h3 {
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card h2 {
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffcc00;
}

.card p {
    font-size: 14px;
    color: #bbbbbb;
}

/* Latest Content Heading */
.latest-content-heading {
    color: #ffcc00;
    text-align: center;
    margin-bottom: 30px;
}

/* ==========================
   Footer
========================== */
.footer {
    background-color: #111;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #222;
}

.footer a {
    color: #fff;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}
/* ==========================
   Dashboard Page
========================== */

.dashboard-header {
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #222;
}

.dashboard-container {
    max-width: 700px;
    margin: 40px auto;
    background-color: #111;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.dashboard-info {
    margin-top: 20px;
    padding: 20px;
    background-color: #0b0b0b;
    border: 1px solid #222;
    border-radius: 8px;
}

.dashboard-update {
    margin-top: 20px;
    color: #ffcc00;
    font-style: italic;
    text-align: center;
}
