/*
Theme Name: Atratis
Theme URI: https://atratis.com
Author: David Mendes
Author URI: https://google.com
Description: A minimal, lightweight, and stunningly beautiful theme for Atratis.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atratis
*/

:root {
    --blue-1: #113e9a;
    --blue-2: #0e3380;
    --accent: #f59b1f;
    --text: #ffffff;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial;
    color: var(--text);
    background: linear-gradient(90deg,
            var(--blue-1) 0%,
            var(--blue-2) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}

.brand {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: clamp(28px, 3.6vw, 44px);
    display: inline-block;
    margin-bottom: 18px;
}

.brand .dot {
    color: var(--accent);
    margin-left: 4px;
}

h1 {
    font-size: clamp(20px, 3.2vw, 36px);
    margin: 0 auto 10px;
    line-height: 1.05;
    max-width: 720px;
    font-weight: 700;
}

p.lead {
    margin: 12px auto 22px;
    font-size: clamp(12px, 1.6vw, 16px);
    opacity: 0.95;
    max-width: 720px;
}

p.member {
    font-weight: 700;
    font-size: clamp(13px, 1.5vw, 16px);
}

.center-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input::placeholder {
    color: #fefefe;
}

.btn {
    background: var(--accent);
    color: var(--blue-1);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

#cardPreview {
    display: none;
    margin-top: 40px;
}

.card-container {
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#memberCard,
#memberCardBack {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.card-label {
    color: #113e9a;
    font-weight: 700;
    font-size: 14px;
    margin: 15px 0 8px;
    text-align: center;
}

.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 200px;
}
