@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

button,
.btn,
.card {
    border-radius: 0.15rem;
}

.bg-theme{
    background: linear-gradient(135deg, #ca1c6a 0%, #ff878b 100%);
}

.form-control {
    border: 2px solid #ccc;
    border-radius: 4px;
    background: transparent;
    padding: 0.75rem 0.5rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #ca1c6a;
    outline: none;
    box-shadow: none;
}

.form-label{
    font-size: 0.933rem;
}

.border-theme{
    border-width: 2px !important;
    border-color: #ca1c6a !important;
}

body {
    background-color: #fff;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
  
.hero-index {
    background: linear-gradient(135deg, #ca1c6a 0%, #ff878b 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-secondary {
    background: linear-gradient(135deg, #ca1c6a 0%, #ff878b 100%);
    padding: 4rem 0;
}

.feature-card {
    background: #fff;
    border: 2px solid #d62976;
    border-radius: 1rem;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.navbar {
    background-color: #fff;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #d62976 !important;
    font-weight: 500;
}

.navbar .btn-outline-pink {
    border-color: #d62976;
    color: #d62976;
}

.navbar .btn-outline-pink:hover {
    background-color: #d62976;
    color: #fff;
}

footer {
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
    background-color: #f8f9fa;
    color: #666;
}

.color-theme {
    color: #d62976 !important;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: background-color .2s, border-color .2s;
}

.image-placeholder:hover {
    background-color: #f0f0f0;
    border-color: #999;
    cursor: pointer;
}

.image-placeholder i {
    font-size: 2rem;
    color: #bbb;
}

@media (min-width: 768px) {
    .image-placeholder {
        height: 300px;
    }
}  

/* Scrollbar style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #e7e7e7;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #cacaca;
    border-radius: 8px;
}



/* sweet alert style */
.swal-text {
    font-size: 1.2rem;
    color: black;
}




/* modal style */
.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.modal-header {
    border-bottom: none;
    background-color: #ffffff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.modal-footer {
    border-top: none;
    background-color: #ffffff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}




/* button style */
.button-82-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
        transform
        600ms
        cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
        to left,
        hsl(340deg 100% 16%) 0%,
        hsl(340deg 100% 32%) 8%,
        hsl(340deg 100% 32%) 92%,
        hsl(340deg 100% 16%) 100%
    );
}

.button-82-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
        transform
        600ms
        cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .button-82-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }
}

.button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition:
        transform
        250ms
        cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition:
        transform
        250ms
        cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
    outline: none;
}


/* plan styles */
.plan-card {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
    padding: 1rem;
    text-align: center;
}

.plan-card input[type="radio"] {
    display: none;
}

.plan-card .plan-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.plan-card.highlight {
    border-color: #ca1c6a;
    box-shadow: 0 4px 12px rgba(202, 28, 106, 0.25);
    color: #ca1c6a;
}

.plan-card:hover {
    border-color: #ca1c6a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.plan-card input[type="radio"]:checked + .plan-card-content {
    border-color: #ca1c6a;
}

.plan-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: none !important;
}

.plan-selection .col {
    margin-bottom: 1rem;
}