:root {
    --primary: #DC3467;
    --secondary: #8A4FFF;
    --bg: #0A0A0A;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
    background: var(--bg);
    color: white;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--primary);
    bottom: -3px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    width: 90%;
}

.hero h1 {
    font-family: "Pilcrow Rounded", sans-serif;
	font-weight: 630;
    font-size: clamp(2rem, 10vw, 6rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.word-cycler {
    display: inline-block;
    position: relative;
    height: 1.2em;
    width: 100%;
    margin: 0.5rem 0;
}

.word-cycler span {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 400;
    animation: wordCycle 12s infinite;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

@keyframes wordCycle {
    0% { opacity: 0; transform: translateY(10px); }
    5% { opacity: 1; transform: translateY(0); }
    20% { opacity: 1; transform: translateY(0); }
    25% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.word-cycler span:nth-child(1) { animation-delay: 0s; }
.word-cycler span:nth-child(2) { animation-delay: 3s; }
.word-cycler span:nth-child(3) { animation-delay: 6s; }
.word-cycler span:nth-child(4) { animation-delay: 9s; }

.astro {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: "Pilcrow Rounded", sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary);
}

.feature-card, .project-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover, .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px 0 rgba(220, 52, 103, 0.2);
}

.parallax-showcase {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;

}

.showcase-caption {
    background: rgba(15, 15, 15, 0.65);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    max-width: 800px;
    margin: 2rem;
}
#showcase-astro {
    background-image: url('images/astroslairmockup.jpg');
	
}

#showcase-book {
    background-image: url('images/Finding Will.webp');
}

#showcase-games {
    background-image: url('images/games.webp');
}

#showcase-designs {
    background-image: url('images/posters.webp');
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 -0.75em;
}

.column {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    padding: 0.75em;
}

.project-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.project-links a {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
}

.project-links a:first-child {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.project-links a:last-child {
    border: 1px solid var(--primary);
    color: white;
}

/* Typography */
h2, h3 {
    font-family: "Pilcrow Rounded", sans-serif;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

p, li {
    font-family: "Satoshi", sans-serif;
    margin-bottom: 1rem;
}

li {
    text-align: left;
    list-style: square;
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    display: block;
    background-color: #101010;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .features {
        padding: 2rem 1rem;
    }
    
    .column {
        max-width: 100%;
        padding: 0.5em;
    }
    
    .row {
        gap: 1.5rem;
    }
    
    .parallax-showcase {
        background-attachment: scroll;
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(220, 52, 103, 0.2);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn span,
.submit-btn svg {
    position: relative;
    z-index: 1;
}

.submit-btn svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .styled-form {
        padding: 1.5rem;
    }
}

}
/* Form Styles */
.styled-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.styled-form:hover {
    box-shadow: 0 8px 32px 0 rgba(220, 52, 103, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #DC3467;
    box-shadow: 0 0 0 2px rgba(220, 52, 103, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(45deg, #DC3467, #8A4FFF);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8A4FFF, #DC3467);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 52, 103, 0.3);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive Form */
@media (max-width: 768px) {
    .styled-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}