/* Reset some default styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Body styling */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom right, #1f1c2c, #928dab);
    color: whitesmoke;
}


/* Heading section */

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    text-align: center;
}

.heading img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.heading p {
    font-size: 1.5rem;
    font-weight: 500;
}


/* Choose section */

.choose {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* space between cards */
    width: 90%;
    max-width: 1000px;
}


/* Menu cards */

.menuCH {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 30px;
    flex: 1 1 300px;
    /* responsive width */
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.menuCH:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}


/* Headings and paragraphs inside cards */

.menuCH h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #fff;
}

.menuCH p {
    margin-bottom: 20px;
    color: #ddd;
    font-size: 1rem;
}


/* Button styling */

.btnWrapper button {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #ff6f61;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btnWrapper button:hover {
    background: #ff3b2f;
    transform: scale(1.05);
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .menuCH {
        flex: 1 1 80%;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .heading img {
        width: 140px;
        height: 140px;
    }
    .heading p {
        font-size: 1.2rem;
    }
    .btnWrapper button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}