/* Classes Page Specific Styles */
.luxury-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.luxury-btn {
    position: relative;
    padding: 12px 30px;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0px, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 6px), linear-gradient(180deg, #0a0a0e 0%, #050507 100%);
    color: #ad9459;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 220px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px; 
    padding: 1px;
    background: linear-gradient(45deg, #563810, #C68A2C, #F5ECC3, #C68A2C, #563810);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.luxury-btn:hover {
    color: #fff;
    background-color: #0f0f12; 
    text-shadow: 0 0 8px rgba(198, 138, 44, 0.6);
    box-shadow: 0 0 20px rgba(198, 138, 44, 0.15);
}

.luxury-btn:hover::before {
    opacity: 1;
}