/* === Global === */
body {
    background-color: #050505;
    color: #EAEAEA;
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #EAEAEA;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
p { color: #ccc; margin-bottom: 1rem; font-size: 1rem; }

/* === Containers === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* === Buttons === */
.btn {
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    border: 1px solid #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #D4AF37;
    color: #050505;
}

.btn-primary:hover {
    background-color: #F4CF57;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.3);
}

.btn-secondary:hover {
    border-color: #D4AF37;
    background-color: rgba(212,175,55,0.05);
}

/* === Inputs === */
.input {
    width: 100%;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.input:focus {
    outline: none;
    border-bottom: 1px solid #D4AF37;
}

.input-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

/* === Cards === */
.card {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
}

/* === Animations === */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* === Images === */
img {
    display: block;
    max-width: 100%;
    height: auto;
}
.btn-link {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a1a1aa;
    text-decoration: none;
}

.btn-link:hover {
    color: #ffffff;
}


/* === Responsive === */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 3rem; }
}
