:root {
    --pink-main: #ff8fbc;
    --pink-accent: #ff5fa2;
    --pink-soft: #ffd1e6;

    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.55);
    --glass: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    color: var(--white);
    overflow-x: hidden;
}

/* ===== BACKGROUND ===== */
.background {
    position: fixed;
    inset: 0;
    z-index: -3;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== OVERLAY ===== */
.overlay {
    min-height: 100vh;
    background: var(--overlay-dark);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-soft), var(--pink-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== NAV BUTTONS ===== */
.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    position: relative;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-accent));
    box-shadow: 0 8px 22px rgba(255, 95, 162, 0.35);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-links a:hover::before {
    transform: translateX(100%);
}

.nav-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 95, 162, 0.6);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--pink-main);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== MAIN ===== */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.main-card {
    max-width: 780px;
    padding: 3.5rem 3rem;
    text-align: center;
    border-radius: 28px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-card h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--pink-soft), var(--pink-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        padding: 1.5rem;
        gap: 1rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-15px);
        transition: 0.3s;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* ===== PROJECTS PAGE ===== */

.projects {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--pink-soft), var(--pink-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Card */
.project-card {
    padding: 2.2rem 2rem;
    border-radius: 24px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.8s ease forwards;
}

.project-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.project-dates {
    font-size: 0.85rem;
    opacity: 0.75;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.8rem;
}

/* Button */
.project-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-accent));
    box-shadow: 0 8px 22px rgba(255, 95, 162, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.project-content .project-btn {
    margin-top: 1.2rem;   /* pushes button down */
    display: inline-block;
}

/* Extra safety: prevent animation bleed */
.project-content .project-btn::before {
    pointer-events: none;
}
.project-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.project-btn:hover::before {
    transform: translateX(100%);
}

.project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255, 95, 162, 0.6);
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .page-title {
        font-size: 2.3rem;
    }
}
/* ===== PROJECT DETAIL PAGE ===== */

.project-page {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.project-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.project-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.highlight-box {
    padding: 1.2rem 1.4rem;
    border-radius: 16px;
    background: rgba(255, 143, 188, 0.15);
    border: 1px solid rgba(255, 143, 188, 0.4);
    margin-bottom: 2rem;
}

.project-content h2 {
    margin: 2.2rem 0 0.8rem;
}

.project-side h3 {
    margin-bottom: 1rem;
}

/* Discord button */
.discord-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #5865F2, #404EED);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(88, 101, 242, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(88, 101, 242, 0.6);
}

/* ===== CAROUSEL ===== */
.carousel {
    overflow: hidden;
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-item {
    min-width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
    .project-layout {
        grid-template-columns: 1fr;
    }
}
/* ===== VOIDRP PAGE ===== */

.section-title {
    margin: 3rem 0 1.5rem;
    text-align: center;
    font-size: 2rem;
}

/* IMAGE CAROUSEL */
.image-carousel {
    overflow: hidden;
    border-radius: 22px;
    margin: 2.5rem 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.image-carousel .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.image-carousel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ===== HORIZONTAL TIMELINE ===== */

.timeline-horizontal {
    overflow-x: auto;
    padding: 10rem 1rem 2rem;
}

.timeline-track {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    min-width: max-content;
    padding-bottom: 3rem;
}

/* Horizontal line */
.timeline-track::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

/* Event */
.timeline-event {
    position: relative;
    width: 320px;
    height: 70px;
    flex-shrink: 0;
    padding-top: 2.5rem; /* space for floating card */
}

/* Dot */
.timeline-dot {
    position: absolute;
    top: 113px; /* aligns with timeline line */
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--pink-main);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(255, 143, 188, 0.8);
    z-index: 3;
}

/* Card */
.timeline-content {
    position: absolute;
    bottom: 0%;          /* float ABOVE the dot */
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -1.5rem; /* space between card and dot */

    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}
.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-date {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-soft);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.92;
}
/* ===== COMMISSIONS PAGE ===== */

.commissions-page {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.commission-section {
    margin-bottom: 3.5rem;
}

.commission-section h2 {
    margin-bottom: 0.8rem;
}

.commission-section p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* Price card */
.price-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pink-soft);
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.price-card ul li {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.price-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Highlight box reuse */
.highlight-box {
    margin-top: 3rem;
}

/* Mobile */
@media (max-width: 600px) {
    .price {
        font-size: 1.4rem;
    }
}

/* ===== QUEUE BUTTONS ===== */

.queue-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.queue-btn {
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-accent));
    box-shadow: 0 10px 28px rgba(255, 95, 162, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.queue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(255, 95, 162, 0.6);
}

/* ===== SOCIAL ICONS ===== */
.main-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

/* Anchor + button unified */
.socials a,
.socials button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--glass-border);

    display: flex;                /* RESTORED */
    align-items: center;          /* RESTORED */
    justify-content: center;      /* RESTORED */

    font-size: 1.3rem;
    color: var(--pink-main);
    cursor: pointer;

    text-decoration: none;        /* UNDERLINE FIX */
    outline: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        color 0.25s ease;
}

.socials i {
    line-height: 1;
    pointer-events: none;
}

/* Hover */
.socials a:hover,
.socials button:hover {
    transform: translateY(-3px);
    color: var(--pink-soft);
    box-shadow: 0 0 20px rgba(255, 143, 188, 0.6);
}

/* Remove default button styles */
.socials button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--glass-border);
}

/* ===== DISCORD MODAL ===== */

.discord-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 200;
}

.discord-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.discord-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    padding: 2rem 2.2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    max-width: 320px;
}

.discord-box h3 {
    margin-bottom: 0.6rem;
}

.discord-box p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.discord-box strong {
    font-size: 1.2rem;
    color: var(--pink-soft);
    display: block;
    margin-bottom: 1.5rem;
}

.discord-box button {
    display: block;              /* allows centering */
    width: 100%;                 /* full-width button */
    margin: 1.2rem auto 0;       /* center + spacing */

    padding: 0.7rem 0;
    border-radius: 999px;
    border: none;

    background: linear-gradient(
        135deg,
        var(--pink-main),
        var(--pink-accent)
    );

    font-weight: 600;
    font-size: 1rem;
    color: #000;
    cursor: pointer;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 143, 188, 0.5);
}
