:root {
    --dogui-green: #3e947e;
    --dogui-glow: rgb(146,222,203);
    --outline: rgba(122, 255, 231, 0.904);
    --light-text: #f0f0f0;
    --background-dark: #0b0b0b;
}

@font-face {
    font-family: Norwester;
    src: url("/public/fonts/norwester/norwester.otf") format("opentype");
}

body {
    background-color: var(--background-dark);
    color: var(--light-text);
    font-family: 'Norwester', sans-serif;
    background-image: url('/public/img/dogui/stars.png');
    background-size: 300px 300px;
    background-repeat: repeat;
}

body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(var(--dogui-glow) 1px, transparent 1px),
        radial-gradient(var(--dogui-glow) 1px, transparent 1px),
        radial-gradient(var(--dogui-glow) 1px, transparent 1px),
        radial-gradient(var(--dogui-glow) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 400px 400px, 500px 500px;
    background-position: 0 0, 100px 100px, 200px 200px, 300px 300px;
    animation: moveStars 120s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 70%;
}

.content {
    padding: 2rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* hero section */
.dogui-hero {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.dogui-hero img {
    width: 3.5rem;
    margin-bottom: 0.5rem;
}

.dogui-hero h1 {
    font-family: 'Norwester', serif;
    font-size: 3.5rem;
    color: var(--dogui-green);
    margin-bottom: 0.5rem;
    filter: drop-shadow(rgba(21, 159, 124, 0.70) 0px 0px 1.54087px) drop-shadow(rgba(53, 159, 132, 0.75) 0px 0px 12.7043px) drop-shadow(rgba(53, 159, 132, 0.44) 0px 0px 38.113px);
}

.dogui-hero h2 {
    font-size: 1.5rem;
    color: var(--dogui-glow);
    margin-bottom: 1rem;
}

.dogui-hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.live-demo-link {
    background-color: var(--dogui-green);
    color: var(--background-dark);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
}

.live-demo-link:hover {
    background-color: var(--dogui-glow);
}

/* sections */
section {
    margin-top: 2rem;
}

h3 {
    color: var(--dogui-glow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 0.75rem;
}

/* visuals / gallery */
.visual-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.visual-gallery img {
    width: 100%;
    max-width: 300px;
    border: 2px solid var(--dogui-green);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.visual-gallery img:hover {
    transform: scale(1.05);
}

/* footer links */
.dogui-footer-links ul li a {
    color: var(--dogui-green);
    text-decoration: underline;
}

.dogui-footer-links ul li a:hover {
    color: var(--dogui-glow);
}

/* animation keyframes */
@keyframes moveStars {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(500px, 500px);
    }
}