/* PAGE BACKGROUND (inherits from index.css) */
body {
    background-color: #0D0D0D;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #C7C7C7;
}

/* PAGE SECTION */
.page-section {
    padding: 20px;
    text-align: center;
    background-color: #0D0D0D;
}

.page-title {
    font-size: 2.4rem;
    color: #E6E6E6;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #C7C7C7;
    opacity: 0.85;
    margin-bottom: 50px;
}



/* PACKAGE CARDS — MATCH GAME CARD STYLE */
.package-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* PACKAGE CARD */
.package-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 12px;
    width: 280px;
    padding: 20px;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card h3 {
    color: #E6E6E6;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.package-card p {
    color: #C7C7C7;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.package-card ul {
    padding-left: 20px;
    color: #C7C7C7;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* HOVER EFFECT — SAME AS GAME CARDS */
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.18);
    border-color: rgba(0, 255, 255, 0.25);
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.portfolio-item img {
    height: 260px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #222;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logoportfolio-item img {
    height: 150px;
    width: 60%;
    border-radius: 12px;
    border: 1px solid #222;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logoportfolio-item-l img {
    height: 150px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #222;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0ff;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.25s ease;
}

.cta-button:hover {
    background-color: #00cccc;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}


/* SAME HOVER GLOW AS CARDS */
.portfolio-item img:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.18);
    border-color: rgba(0, 255, 255, 0.25);
}

/* MOBILE */
@media (max-width: 768px) {
    .package-row {
        gap: 20px;
    }

    .package-card {
        width: 90%;
    }

    .portfolio-grid {
        gap: 20px;
    }
}


