/* Fonts & reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #1b0000;
    color: #fff;
}

header {
    background: linear-gradient(90deg, #8b0000, #ff0000);
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px solid #fff;
}

header h1 {
    font-size: 3em;
}

header p {
    margin-top: 10px;
    font-size: 1.2em;
    opacity: 0.8;
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px;
}

.card {
    background: #330000;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.1);
}

.card h2 {
    padding: 20px 10px;
    font-size: 1.5em;
    border-top: 1px solid #8b0000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #330000;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 2em;
    cursor: pointer;
    color: #fff;
}

.price-list {
    margin-top: 15px;
    line-height: 1.6;
}

.price-list span {
    display: block;
    margin: 5px 0;
}
