/*
Theme Name: Paul Silva Theme
Theme URI: https://paulsilva.com
Author: Paul Silva
Description: Description.
Version: 1.5
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paulsilva
*/

body {
    position: relative;
    z-index: 1;
    margin: 0;
    background: #0c0c0c;
    color: #f2f2f2;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
nav {
    text-align: center;
    padding: 2rem 0;
}
nav a {
    color: #b497d6;
    margin: 0 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}
nav a:hover {
    color: #e1c766;
}
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem;
    text-align: center;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
section:nth-child(even) {
    background: #111;
}
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #e1c766;
}
.tagline {
    font-size: 1.5rem;
    font-style: italic;
}
canvas#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
