@charset "UTF-8";

/*
|--------------------------------------------------------------------------
| BarnSheet / ArenaRank
| File: /css/style.css
|--------------------------------------------------------------------------
| Global / public-facing shared styles only.
| Admin-specific styles belong in /css/admin.css
|--------------------------------------------------------------------------
*/

/* --------------------------------------------------------------------------
   Reset / Base
--------------------------------------------------------------------------- */

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

html {
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    padding-left: 1.25rem;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header / Navigation
--------------------------------------------------------------------------- */

.site-header {
    background: #0f2f5f;
    border-bottom: 4px solid #f28c1b;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px 0;
}

.site-logo {
    max-height: 72px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    padding-left: 0;
}

.main-nav a {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #f28c1b;
}

/* --------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */

.hero {
    background: url('../images/show_jumping.png') center center / cover no-repeat;
}

.hero-overlay {
    background: linear-gradient(rgba(15, 47, 95, 0.87), rgba(15, 47, 95, 0.83));
    padding: 95px 0;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.coming-soon-badge {
    display: inline-block;
    background: #f28c1b;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 14px;
}

.hero-tagline {
    font-size: 1.2rem;
    max-width: 760px;
    margin: 0 auto 16px;
}

.hero-text {
    font-size: 1rem;
    max-width: 820px;
    margin: 0 auto 28px;
    color: #dbe4f0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Shared Buttons
--------------------------------------------------------------------------- */

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #f28c1b;
    color: #ffffff;
}

.btn-primary:hover {
    background: #d97408;
}

.btn-secondary {
    background: #ffffff;
    color: #0f2f5f;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* --------------------------------------------------------------------------
   Sections
--------------------------------------------------------------------------- */

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 38px;
}

.section-title h2 {
    font-size: 2rem;
    color: #0f2f5f;
    margin-bottom: 10px;
}

.section-title p {
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Cards
--------------------------------------------------------------------------- */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 22px;
}

.card-content h3 {
    font-size: 1.25rem;
    color: #0f2f5f;
    margin-bottom: 10px;
}

.card-content p {
    color: #4b5563;
    font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Features
--------------------------------------------------------------------------- */

.features-section {
    background: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: #f9fafb;
    border-left: 4px solid #f28c1b;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-box h4 {
    color: #0f2f5f;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.feature-box p {
    color: #4b5563;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   CTA
--------------------------------------------------------------------------- */

.cta-section {
    background: #eef3f9;
}

.cta-box {
    text-align: center;
    background: #0f2f5f;
    color: #ffffff;
    border-radius: 16px;
    padding: 48px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto;
    color: #dbe4f0;
}

/* --------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */

.site-footer {
    background: #091c39;
    color: #d1d5db;
    text-align: center;
    padding: 24px 0;
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Generic Alerts (safe for shared use)
--------------------------------------------------------------------------- */

.alert {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.96rem;
}

.alert-error {
    background: #ffe1e1;
    color: #9b1c1c;
    border: 1px solid #f5b7b7;
}

.alert-success {
    background: #e4f9e7;
    color: #166534;
    border: 1px solid #b7e4c0;
}

.alert-notice {
    background: #e8f0fb;
    color: #18417b;
    border: 1px solid #bfd4f2;
}

/* --------------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------------- */

@media (max-width: 992px) {
    .cards,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.35rem;
    }
}

@media (max-width: 640px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .cards,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-overlay {
        padding: 75px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }

    .card-image {
        height: 220px;
    }
}