/* RORA.h – Custom Styles */

/* Auth Gate */
#auth-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.auth-box {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #2c2c2c;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(33, 37, 41, 0.95) !important;
}

/* Hero */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow: hidden;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(13, 202, 240, 0.28) 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse 55% 55% at 82% 38%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 55% 55% at 82% 38%, #000 30%, transparent 75%);
    pointer-events: none;
}

.hero-eyebrow {
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
}

.hero-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background-color: #0dcaf0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    top: 14px;
    right: -14px;
    bottom: -14px;
    left: 14px;
    border: 2px solid rgba(13, 202, 240, 0.55);
    border-radius: 1rem;
    z-index: 0;
}

.hero-img {
    position: relative;
    z-index: 1;
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -20px rgba(15, 52, 96, 0.35);
}

/* Sections */
section {
    scroll-margin-top: 60px;
}

section h2 {
    position: relative;
    display: inline-block;
}

section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #0dcaf0;
    margin-top: 8px;
    border-radius: 2px;
}

/* Cards */
.card {
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

/* CTA Section */
.btn-info {
    color: #fff;
    border-color: #0dcaf0;
    background-color: #0dcaf0;
}

.btn-info:hover {
    background-color: #0bb5d4;
    border-color: #0bb5d4;
    color: #fff;
}

.btn-outline-info:hover {
    color: #fff;
}

/* Footer */
footer a {
    color: #0dcaf0;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
