/*
Theme Name: Astra Child
Theme URI: https://yourdomain.com
Description: Child theme for Astra
Author: Krishna Das
Template: astra
Version: 1.0
*/

/* Your custom styles below */

/* GLOBAL */
/* CONTAINER */
.hms-demo {
    text-align: center;
    padding: 80px 20px;
}

.hms-demo h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hms-demo-sub {
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.hms-demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.hms-demo-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.hms-demo-card:hover {
    transform: translateY(-5px);
}

/* LIST */
.hms-demo-card ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
    color: #555;
}

/* BUTTON */
.hms-demo-card .hms-btn {
    margin-top: 15px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hms-demo-grid {
        grid-template-columns: 1fr;
    }
}

.hms-btn-primary{
    background:#0d6efd;
    color:#fff;
    border-radius: 10px;
}

.hms-demo-card .hms-btn {
    margin-top: 15px;
    display: inline-block;
}

.hms-demo-card .hms-btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
}

.hms-demo-card .hms-btn-primary:hover {
    background: #1d4ed8;
}

.hms-demo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff3cd;
    color: #856404;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    z-index: 9999;
}

/* Exit Button */
.hms-exit-demo {
    background: #dc2626;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.hms-exit-demo:hover {
    background: #b91c1c;
}

/* PUSH CONTENT DOWN */
body {
    margin-top: 45px;
}