body {
	background: -webkit-radial-gradient(#B6C5AC, #74816C);
	background: radial-gradient(#B6C5AC, #74816C);
}

.wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-top: 10%;
    position: relative;
    cursor: pointer;
}

.wrapper:hover .middle {
    width: 50px;
    height: 50px;
    top: 24%;
    left: 27%;
    border-radius: 50%;
    background-color: white;
    opacity: 0.3;
}

.wrapper:hover .top {
    -webkit-transform:rotate(45deg);
    top: 40%;
    border-radius: 10px;
    background-color: white;
}

.wrapper:hover .bottom {
    -webkit-transform:rotate(-45deg);
    top: 40%;
    border-radius: 10px;
    background-color: white;
}

.bar {
    width: 80px;
    height: 10px;
    border: 2px solid white;
    position: absolute;
    border-radius: 10px;
}

.top {
    left: 15%;
    top: 20%;
    -webkit-transition: all 0.5s;
}

.middle {
    left: 15%;
    top: 40%;
    -webkit-transition: all 0.5s;
}

.bottom {
    left: 15%;
    top: 60%;
    -webkit-transition: all 0.5s;
}

h2 {
    font-family: 'helvetica neue';
    color: white;
    text-align: center;
}

header h1,
header p {
    color: white;
}

.menu {
    background-color: rgba(116, 129, 108, 0.95);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 300px;
    transition: all 0.3s ease;
}

.menu.hidden {
    display: none;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu ul li:last-child {
    border-bottom: none;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-family: 'helvetica neue', sans-serif;
    font-size: 18px;
    display: block;
    transition: all 0.2s ease;
}

.menu ul li a:hover {
    color: #B6C5AC;
    transform: scale(1.05);
}

/* Artist Package Title Styling */
.artist-package-title {
    color: white;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: white;
    font-family: 'helvetica neue', sans-serif;
}

/* Package Grid Layout */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Package Card Container */
.package-card {
    display: flex;
    flex-direction: column;
}

/* Package Header (smallest) */
.package-header {
    background-color: rgba(116, 129, 108, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-family: 'helvetica neue', sans-serif;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    border: 2px solid white;
}

/* Package Details (largest/middle) */
.package-details {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    min-height: 200px;
    border-left: 2px solid white;
    border-right: 2px solid white;
    flex-grow: 1;
}

.package-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.package-details ul li {
    padding: 12px 0;
    font-family: 'helvetica neue', sans-serif;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(116, 129, 108, 0.2);
}

.package-details ul li:last-child {
    border-bottom: none;
}

/* Package Footer (bottom) */
.package-footer {
    background-color: rgba(182, 197, 172, 0.9);
    text-align: center;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    border: 2px solid white;
}

.package-footer h2 {
    margin: 10px 0 5px 0;
    color: #333;
    font-size: 32px;
}

.package-footer .price-label {
    display: block;
    color: #555;
    font-family: 'helvetica neue', sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}

.package-footer .book-button {
    background-color: white;
    color: #333;
    border: 2px solid #74816C;
    padding: 12px 30px;
    font-size: 16px;
    font-family: 'helvetica neue', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.package-footer .book-button:hover {
    background-color: #74816C;
    color: white;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}
