hgroup {
    min-height: auto;
    height: auto;
}

hgroup>nav>a {
    margin: auto;
}

/* Form styling */
/* Heading styling */
#type-selection h2 {
    color: #111;
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

#type-selection {
    min-height: 60vh;
}

.session-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 2rem auto;
}

.session-selection>a {
    text-decoration: none;
    outline: 1px #1119 solid;
    color: #111;
    min-width: max(25%, 200px);
    width: 380px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    overflow: hidden;
}

.session-selection>a.discounted {
    outline: 4px #f44 solid;
}

.session-selection>a.discounted .bottom-tags p.price {
    color: #f44;
    font-weight: 600;
}

.session-selection>a.discounted .bottom-tags strong {
    color: #1119;
    text-decoration: line-through;
    font-weight: 300;
}

.session-selection>a i {
    position: absolute;
    left: 1rem;
    opacity: 0.5;
}

.session-selection>a:hover {
    background: #1113;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.4);
}

.desc-header {
    color: white;
    text-align: center;
    padding: 0.5rem;
    flex-grow: 1;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-blend-mode: overlay !important;
}

.top-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-info h3 {
    font-weight: 300;
    text-align: center;
    padding: 1rem 0.5rem;
    margin: 0;
    text-transform: uppercase;
}

.desc-header>p {
    font-size: 1rem;
    position: relative;
    width: 100%;
    padding: 1rem 0.5rem;
    margin: 0;
    text-align: center;
    filter: blur(5px);
    opacity: 0;
    transition: all 0.15s ease-in-out;
    /* Adjust the time here if needed */
}

a:hover .desc-header>p {
    filter: blur(0px);
    opacity: 1;
}


.top-info p::before {
    content: "";
    position: absolute;
    width: 80%;
    left: 50%;
    top: 0;
    height: 1px;
    background: #1119;
    transform: translateX(-50%);
}

.bottom-tags {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-top: 1px solid #1119;
}

.bottom-tags>p {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.4rem;
}

.bottom-tags p:nth-child(2) {
    border-left: 1px solid #1119;
}

.recommended {
    position: relative;
}

.recommended {
    border: 3px solid var(--light-gold) !important;
}

.recommended::before {
    content: "Recommended";
    position: absolute;
    left: 0;
    top: -2rem;
    width: 100%;
    text-align: center;
    color: #1119;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 4rem auto;
    color: black;
}

.packages>summary {
    width: fit-content;
    padding: 0.5rem 3rem;
    display: block;
    border-radius: 10px;
    margin: auto;
    font-weight: 600;
    color: #f44;
    cursor: pointer;
}

.packages>div>p {
    max-width: 600px;
    margin: auto;
    color: #444;
    text-align: center;
    line-height: 2rem;
}

.packages>summary:hover {
    background: #0003;
}

.packages>summary::Before {
    content: "Show ";
}

.packages[open]>summary::Before {
    content: "Hide ";
}

.packages>div>div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 80%;
    min-width: min(100%, 600px);
    max-width: 1000px;
    margin: auto;
    margin-top: 2rem;
}

.package-entry {
    flex: 1;
    padding: 1rem;
    margin: 0.5rem;
    background: #0001;
    border-radius: 1rem;
}

.package-entry h2 {
    margin: 0.5rem 0;
}

.package-entry p {
    margin: 0;
}

/*Check if on mobile */
@media (max-width: 600px) {
    .desc-header>p {
        opacity: 1;
        filter: blur(0px);
    }
}



details form {
    padding: 1rem;
    box-sizing: border-box;
background: #0001;padding: 1rem;
 border-radius: 1rem;
    border: #1119 1px solid;
    max-width: 500px;
margin: auto;
    display: flex;
    flex-direction: column;
}

details form > input {
    margin: 1rem;
}

details form>input[type="submit"] {
    margin: 1rem auto;
    width: fit-content;
    padding: 0.5rem 2rem;
    border-radius: 10px;
    background: #f44;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
}
details form>input[type="text"] {
    padding: 0.5rem;
    border-radius: 10px;
    border: #1119 1px solid;
    outline: none;
    font-size: 1.2rem;
}