/*
Theme Name: Anselmo Coming Soon
Theme URI: https://anselmomontenegro.com
Author: Antigravity
Description: A modern Coming Soon theme for Mestre Anselmo Montenegro.
Version: 1.0
*/

:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --accent-color: #f7a300;
    /* Matching the golden/orange tone from the logo logic usually found in BJJ logos, adjustable */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.container {
    padding: 2rem;
    max-width: 600px;
    width: 90%;
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Loader Animation - A sleek, modern multi-ring system */
/* Loader Animation - Dashed Orbital Spinner */
.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    z-index: 1;
    pointer-events: none;
}

.loader-ring::before,
.loader-ring::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    border: 3px dashed var(--accent-color);
    animation: rotate-slow 10s linear infinite;
    opacity: 0.3;
}

.loader-ring::after {
    border: 3px dashed #ffffff;
    animation: rotate-slow 15s linear infinite reverse;
    opacity: 0.15;
    transform: scale(0.9);
}

.ring-1 {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--accent-color);
    animation: rotate-fast 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 0.8;
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-fast {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.message-box {
    margin-top: 3rem;
    animation: fadeIn 2s ease-in-out;
}

.message {
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.message h2 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: var(--accent-color);
    text-transform: uppercase;
}

.message p {
    font-size: 1rem;
    margin: 0;
    color: #cccccc;
}

/* Separator lines */
.separator {
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 1.5rem auto;
    opacity: 0.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive tweaks */
@media (max-width: 480px) {
    .logo {
        max-width: 180px;
    }

    .loader-ring {
        width: 190px;
        height: 190px;
    }

    .message h2 {
        font-size: 1.2rem;
    }

    .message p {
        font-size: 0.9rem;
    }
}