/* 
  Theme Name: So Art Déco Linktree Theme
  Author: Rafael Lacerda Busatta
  Version: 1.0
*/

:root {
    --background-color: #1a0a0a; /* Um preto profundo, não total */
    --text-color: #EAE0D5; /* Um tom de creme/bege elegante */
    --accent-color: #9D0B67; /* Um dourado para detalhes (opcional) */
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Josefin Sans', sans-serif; /* Fonte com vibe geométrica/Art Deco */
    overflow-x: hidden; /* Evita scroll horizontal */
}

.background-rays {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 250vmax;
    height: 250vmax;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(157, 11, 103, 0.1) 0deg 1.5deg, /* Usando a cor de destaque */
        transparent 1.5deg 15deg
    );
    animation: rotate-rays 80s linear infinite;
}

@keyframes rotate-rays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
main {
    position: relative;
    z-index: 2;
}

.deco-frame {
    border: 2px solid var(--text-color);
    background-color: rgba(26, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: url('logo.jpeg') no-repeat center center;
    background-size: cover;
}

.store-name {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 4px; /* Espaçamento característico */
    text-transform: uppercase;
}

.store-slogan {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--accent-color); /* Cor dourada para o slogan */
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color); /* Efeito dourado no hover */
}

.about-section h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
}

  .about-section p {
    font-family: 'Poppins', sans-serif; /* Fonte mais legível para texto corrido */
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
  }

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: rgba(234, 224, 213, 0.5); /* Cor do texto com opacidade */
}