body {
    background-color: #000; /* Deep black background */
    color: #ffb6c1; /* Soft pink text */
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Pirata+One', cursive; /* Gothic font */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff0000; /* Crimson Red accents */
    text-shadow: 2px 2px 5px #ffb6c1;
}

header {
    padding: 50px 20px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://www.transparenttextures.com/patterns/dark-matter.png');
    border-bottom: 3px double #ff0000;
}
    

.book-btn {
    display: inline-block;
    background: #000;
    color: #ff0000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #ff0000;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 20px;
}

.book-btn:hover {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 15px #ffb6c1;
}

/* Gallery Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 40px;
}

.img-card img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #ffb6c1;
    transition: transform 0.3s;
}

.img-card img:hover {
    transform: scale(1.05);
    border-color: #ff0000;
}

/* Pricing Menu */
.menu {
    padding: 50px 20px;
    background: #111;
}

.menu-box {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #ff0000;
    padding: 30px;
    background: rgba(255, 182, 193, 0.05);
    border-radius: 20px;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #444;
}

footer {
    padding: 40px;
    font-size: 0.8rem;
    color: #666;
}