/* ==========================================================
   CHIRALA RESORTS
   GLOBAL STYLES
   Version: 1.0
========================================================== */

/*=========================================
=            CSS VARIABLES                =
=========================================*/

:root{

    --primary:#ff6464;
    --primary-dark:#ff5555;

    --text:#202124;
    --text-light:#6b7280;

    --white:#ffffff;

    --radius:22px;

    --shadow:0 18px 60px rgba(0,0,0,.22);

    --transition:.35s ease;

}

/*=========================================
=            GLOBAL RESET                 =
=========================================*/

*,
*::before,
*::after{

    box-sizing:border-box;

}

img{

    max-width:100%;
    height:auto;
    display:block;

}

a{

    transition:var(--transition);
    text-decoration:none;

}

button{

    transition:var(--transition);

}

/*=========================================
=            COMMON BUTTONS               =
=========================================*/

.elementor-button{

    transition:var(--transition);

}

.elementor-button:hover{

    transform:translateY(-2px);

}

/*=========================================
=            COMMON TITLES                =
=========================================*/

.section-title h2{

    font-size:48px!important;
    font-weight:800!important;
    color:#111827!important;
    text-align:center;
    margin-bottom:15px!important;

}

.section-subtitle h2{

    max-width:720px;
    margin:0 auto!important;

    text-align:center;

    font-size:18px!important;

    line-height:1.8;

    color:#6b7280!important;

}

/*=========================================
=            FOOTER                       =
=========================================*/

.footer-section{

    background:#0f172a;

    color:#e2e8f0;

    padding:90px 20px 30px;

}

.footer-top{

    max-width:1200px;

    margin:auto;

    display:flex;

    flex-wrap:wrap;

    gap:40px;

}

.footer-bottom{

    max-width:1200px;

    margin:60px auto 0;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-copyright{

    color:#94a3b8;

    font-size:15px;

}

/*=========================================
=            UTILITIES                    =
=========================================*/

.text-center{

    text-align:center;

}

.hidden{

    display:none!important;

}