﻿/* HERO */


.hero {
    text-align: center;
    padding: 80px 20px 50px;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
    }

    .hero p {
        margin-top: 10px;
        opacity: 0.9;
    }

/* GLASS CARD */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgb(94 94 94 / 12%);
    transition: 0.3s;
    background: linear-gradient(135deg, #e3f4ff, #e7fbf6, #ffffff);
}

    .glass:hover {
        transform: translateY(-6px);
    }

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: auto !important;
    background: white !important;
}

/* HEADINGS */
h2 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffd369;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 0px 30px;
    border-radius: 30px;
    background: linear-gradient(to right, #ff9966, #ff5e62);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .btn:hover {
        transform: scale(1.05);
    }

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    opacity: 0.8;
}

/* MOBILE */
@media(max-width:600px) {
    .hero h1 {
        font-size: 2rem;
    }
}
