:root {
    --bg-color: #080808;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-color: #c09047;
    --accent-color-hover: #d1a45d;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Premium Diagonal Weave Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.015),
        rgba(255, 255, 255, 0.015) 1px,
        transparent 1px,
        transparent 12px
    );
    pointer-events: none;
    z-index: 0;
}

/* Subte background glow effects for depth */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    animation: float1 15s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #1a1a1a 0%, transparent 70%);
    animation: float2 18s ease-in-out infinite alternate;
}

/* Main Layout */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 800px;
    text-align: center;
}

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 1.0s; }
.delay-4 { animation-delay: 1.4s; }
.delay-5 { animation-delay: 1.8s; }

/* Logo */
.logo-container {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

.main-logo:hover {
    transform: scale(1.02);
}

/* Typography */
.text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    opacity: 0.5;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--text-primary);
    max-width: 600px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-top: 1rem;
}

.description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Link */
.contact-info {
    margin-top: 2rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-link svg {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.email-link:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--accent-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.email-link:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.8s forwards;
}

.powered-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ajasis-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.ajasis-link:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.ajasis-logo {
    height: 24px;
    width: auto;
    /* In case the logo is dark, add a drop shadow to make it visible, or invert it if necessary */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Animations */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(3%, 5%) scale(1.05); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-3%, -5%) scale(1.05); }
}

/* Media Queries */
@media (max-width: 600px) {
    .main-logo {
        max-width: 200px;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
}
