/* ===== HOME PAGE BACKGROUND ===== */
.home-wrapper {
    min-height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

/* ===== INNER WRAPPER ===== */
.home-inner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

/* ===== HOME MAIN  ===== */
.home-main {
    flex-grow: 1;
    max-width: 1200px;
    width: 100%;        
    margin: 0 auto;
    padding: 2rem 1rem;
}

.home-section {
    position: relative;
}

/* ===== SECTION TITLE ===== */
.home-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

/* ===== GRID ===== */
.home-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    position: relative;
    z-index: 10;
}

/* ===== CARD ===== */
.home-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}

/* ===== IMAGE ===== */
.home-image {
    height: 190px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

/* ===== TEXT ===== */
.home-card-title {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-top: 0.75rem;
}

.home-card-desc {
    color: white;
    text-align: center;
    margin: 0.5rem 1rem;
}

/* ===== BUTTON ===== */
.home-button {
    display: block;
    width: 150px;
    margin: 1rem auto 0;
    text-align: center;
    padding: 0.5rem 1rem;

    background: rgba(59,130,246,0.25);
    border: 1px solid rgba(147,197,253,0.5);
    color: white;
    border-radius: 0.5rem;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

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

.home-button:hover {
    background: rgba(59,130,246,0.35);
    box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
