/* Gryphon Majesty - Definitive Design System (Restoration) */

/* ================== FONTS ================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Outfit:wght@300;400;600&display=swap');

/* ================== VARIABLES ================== */
:root {
    --bg-black: #000000;
    --gold: #d4af37;
    --gold-dim: rgba(212, 175, 55, 0.6);
    --gold-faint: rgba(212, 175, 55, 0.1);
    --text-white: #ffffff;
    --text-gold: #d4af37;
    --text-gray: #a0a0a0;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ================== BACKGROUND WATERMARK ================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pattern mimicking the image motifs */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c13.8 0 25 11.2 25 25S43.8 55 30 55 5 43.8 5 30 16.2 5 30 5zm0 5c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm0 10c5.5 0 10 4.5 10 10s-4.5 10-10 10-10-4.5-10-10 4.5-10 10-10z' fill='%23d4af37' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: -1;
    pointer-events: none;
}

/* ================== TYPOGRAPHY ================== */
h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

.gold-text { color: var(--gold); }
.white-text { color: var(--text-white); }

/* ================== LAYOUT ================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* ================== HEADER ================== */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-faint);
    transition: var(--transition);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* ================== HERO ================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero .tagline {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero .about-label {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.hero p.bio {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 40px;
}

.hero p.bio strong {
    color: var(--gold);
}

.metrics {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

.actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-gold {
    background-color: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background-color: #fff;
}

.btn-outline {
    border: 1px solid var(--gold-dim);
    color: var(--gold);
}

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

/* ================== PHILOSOPHY ================== */
.philosophy .label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.philosophy h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.philosophy .desc {
    max-width: 650px;
    margin-bottom: 25px;
    color: var(--text-white);
}

.philosophy .btn-arrow {
    display: inline-flex;
    align-items: center;
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 8px 15px;
    border-radius: 0; /* Flat rectangle like the image */
    transition: var(--transition);
    margin-bottom: 20px;
}

.philosophy .btn-arrow:hover {
    background-color: #fff;
}

/* ================== QUOTE BOX ================== */
.quote-box {
    margin: 20px 0 40px;
    padding: 30px 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    position: relative;
    max-width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3rem;
    color: #10b981; /* Greenish/Emerald like in the image */
    font-family: var(--font-heading);
    line-height: 1;
    opacity: 0.8;
}

.quote-box blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 15px;
    padding-left: 10px;
    font-weight: 400;
}

.quote-box cite {
    display: block;
    font-size: 1rem;
    color: #10b981; /* Matching emerald green */
    text-align: left;
    font-weight: 600;
}

/* ================== CONNECTION GRID ================== */
.connection h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10px;
}

.connection h2 span {
    color: var(--gold);
}

.connection p.subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
}

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

.social-card {
    border: 1px solid var(--gold-faint);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    transition: var(--transition);
}

.social-card:hover {
    background: var(--gold-faint);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.social-card svg {
    width: 32px;
    height: 32px;
    fill: var(--gold);
    margin-bottom: 15px;
}

.social-card span {
    color: var(--text-white);
    font-size: 0.8rem;
}

/* ================== FOOTER ================== */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--gold-faint);
}

footer p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.75rem;
}

/* ================== REVEAL ANIMATIONS ================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================== AI EXPLORE BAR ================== */
.ai-explore-bar {
    margin-top: 60px;
    padding: 20px 30px;
    border: 1px solid var(--gold-faint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    flex-wrap: wrap;
}

.ai-explore-label {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.ai-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.ai-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}

.ai-icon-btn svg, .ai-icon-btn img {
    width: 22px;
    height: 22px;
    fill: var(--text-white);
    transition: var(--transition);
}

.ai-icon-btn img {
    /* Cor dourada (#d4af37) a partir do preto */
    filter: brightness(0) saturate(100%) invert(72%) sepia(50%) saturate(618%) hue-rotate(8deg) brightness(89%) contrast(89%);
}

.ai-icon-btn:hover {
    background: var(--gold-faint);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.ai-icon-btn:hover svg {
    fill: var(--text-white);
}

.ai-icon-btn:hover img {
    /* Cor clara (branca) ao passar o mouse */
    filter: brightness(0) saturate(100%) invert(100%);
}

@media (max-width: 900px) {
    .hero h1 { font-size: 4rem; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics { gap: 30px; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .social-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .metrics { flex-direction: column; gap: 20px; }
    .actions { flex-direction: column; width: 100%; gap: 15px; }
    .btn { text-align: center; width: 100%; }
    section { padding: 60px 0; }
    .hero { padding-top: 100px; }
    .philosophy h2 { font-size: 1.8rem; }
    .connection h2 { font-size: 2rem; }
    .quote-box { padding: 25px 20px; }
}
