/*
Theme Name:     Anastasia
Theme URI:      n/a
Template:       kadence
Author:         Carole Petithomme
Author URI:     https://moncoachwp.fr
Description:    Child Theme Description
Version:        1.0
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/

/* Bouton base */
.cap-cal-btn {
    display:inline-block;
    padding:15px 30px;
    background-color:#DCA54A;
    color:white;
    border:none;
    border-radius:30px;
    font-size:18px;
    font-family:'Borel', cursive;
    font-weight:bold;
    line-height:1.6;
    cursor:pointer;
    transition:all 0.3s ease;
}

.cap-cal-btn:hover {
    background-color:#B4E0BB;
}

/* Responsive */
@media (max-width:767px){
    .cap-cal-btn { font-size:16px; }
}
@media (min-width:768px) and (max-width:1024px){
    .cap-cal-btn { font-size:17px; }
}

/* VERSION 2 */
/*.cap-version-2 .cap-cal-btn {
    border-radius:5px;
    background:#000;
}*/

/* VERSION 3 */
.cap-version-3 .cap-cal-btn {
  /** background:linear-gradient(45deg,#DCA54A,#B4E0BB);*/
}

/* MODAL */
.cap-cal-modal {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.8);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.cap-cal-inner {
    position:relative;
    width:95%;
    max-width:1200px;
    height:90%;
    background:white;
    border-radius:10px;
    padding:20px;
    box-shadow:0 5px 30px rgba(0,0,0,0.3);
}

.cap-cal-content {
    width:100%;
    height:100%;
    overflow:auto;
}

.cap-cal-close {
    position:absolute;
    top:10px;
    right:10px;
    background:#DCA54A;
    color:white;
    border:none;
    border-radius:50%;
    width:40px;
    height:40px;
    font-size:24px;
    cursor:pointer;
}

.cap-cal-close:hover {
    background:#B4E0BB;
}

.cap-loading {
    text-align:center;
    padding:40px;
    color:#999;
}

