body {
    background: url('../images/lord.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Page Title */
.page-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3rem;
    text-align: center;
    margin-top: 40px;
    text-shadow: 4px 4px 10px #000;
}

/* Card Layout */
.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
}

/* Cards */
.project-card {
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffffffbb;
    border-radius: 15px;
    width: 350px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.project-card:hover {
    transform: scale(1.05);
    background-color: rgba(0, 0, 0, 0.9);
}

.project-card h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Description Style */
.desc {
    background: rgba(20, 20, 20, 0.85);
    padding: 12px;
    border-radius: 8px;
    text-shadow: 2px 2px 8px #000;
}

/* Responsive video embed */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Back button */
.back-home {
    display: block;
    width: 200px;
    margin: 30px auto 60px auto;
    padding: 10px;
    text-align: center;
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-home:hover {
    background: #fff;
    color: #000;
}

/* Mobile Friendly */
@media (max-width: 700px) {
    .project-card {
        width: 90%;
    }
    .page-title {
        font-size: 2.2rem;
    }
}
