﻿@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;1,200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/*landing page*/

.landing-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
}

.landing-buttons {
    position: relative;
    z-index: 1;
}

    .landing-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 260px;
        min-height: 58px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        border-radius: 999px;
        background: linear-gradient(180deg, #ffffff, #d8d8d8 50%, #ffffff);
        box-shadow:  0 14px 28px rgba(60, 42, 110, 0.22);
        color: #8a174c;
        font-size: 22px;
        font-weight: 600;
        text-decoration: none;
        font-family: 'Kanit';
        position: relative;
        overflow: hidden;  
        transition: all 0.3s ease;
    }


        .landing-buttons a:hover {
            transform: translateY(-3px);
            filter: brightness(1.05);
            
        }


    .landing-buttons[data-button-style="solid"] .landing-buttons a {
        border: 0;
        background: linear-gradient(135deg, #ffffff, #ffe9a8);
        box-shadow: 0 14px 32px rgba(62, 42, 120, 0.28);
        color: #594000;
    }

    .landing-buttons[data-button-style="outline"] .landing-buttons a {
        
        background: rgba(255, 255, 255, 0.12);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 14px 28px rgba(44, 32, 86, 0.18);
        color: #ffffff;
        backdrop-filter: blur(10px);
    }

    .landing-buttons  .royal {
        border: 1px solid #d9d9d9;
        background: linear-gradient(180deg, #ffffff, #d8d8d8 50%, #ffffff);
        color: #8a174c;
    }

    .landing-buttons .solid {
        background: linear-gradient(135deg, #937023, #f4c764);
        color: #ffffff !important;
    }

    .landing-buttons .outline {
       
        background: rgba(139, 117, 255, 0.08);
        color: #5b4df3;
    }


.shiny-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 10%;
    height: 300%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}
