/* Base Page Reset */
body {
    background-color: #080808;
    color: #e0e0e0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.landing-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Section: Responsive Flexbox */
.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-logo-container {
    flex: 1;
    max-width: 420px;
}

.hero-logo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-text-container {
    flex: 1.2;
}

.badge {
    background-color: #1f1f1f;
    color: #d4af37;
    font-size: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    border: 1px solid #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-title {
    font-size: 2.8rem;
    margin: 1rem 0 0.2rem 0;
    color: #ffffff;
    font-weight: 700;
    border: none;         /* Add this to kill the box */
    outline: none;        /* Add this to kill the box */
    box-shadow: none;     /* Add this to kill the box */
}

.tagline {
    color: #d4af37;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.description {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #d4af37;
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: #f0c435;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
}

.btn-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* Specs Container Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-card {
    background-color: #111111;
    border: 1px solid #222222;
    padding: 2rem;
    border-radius: 10px;
}

.spec-card h3 {
    color: #ffffff;
    margin-top: 0.5rem;
}

.spec-card p {
    color: #888888;
    line-height: 1.5;
    font-size: 0.95rem;
}

.card-icon {
    font-size: 1.8rem;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .cta-group {
        justify-content: center;
    }
}

/* Minimalist Top Navigation */
.top-nav {
    display: flex;
    justify-content: flex-end;
    padding: 2rem 3rem 0 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #888888;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #d4af37;
}

/* Page Wrappers */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem 1.5rem;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
}

.text-block h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.text-block p {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Disabled Button State */
.disabled-btn {
    background-color: #333333;
    color: #777777;
    cursor: not-allowed;
    border: 1px solid #444444;
}

.disabled-btn:hover {
    background-color: #333333; /* Prevent hover color change */
}

/* Ballet Section */
.ballet-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #222222;
    text-align: center;
}

.ballet-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.ballet-section p {
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.ballet-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    color: #555555;
    font-size: 0.85rem;
}

/* Language Toggle */
.top-nav {
    display: flex;
    justify-content: space-between; /* Pushes toggle left, links right */
    align-items: center;
    padding: 2rem 3rem 0 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lang {
    background: none;
    border: none;
    color: #555555;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.btn-lang:hover {
    color: #a0a0a0;
}

.btn-lang.active {
    color: #d4af37; /* Gold for the active language */
}

.divider {
    color: #333333;
    font-size: 0.85rem;
}
/* Hide the Blazor error UI by default */
#blazor-error-ui {
    display: none;
    background-color: #1a0606;
    color: #ffcccc;
    bottom: 0;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-top: 1px solid #ff0000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}