
@import url('https://fonts.googleapis.com/css2?family=Arizonia&family=Poppins:wght@300;400;500;600;700&display=swap');
/*======================================
TREEHOUSE MASSAGE
MAIN CSS
======================================*/
@import url("header.css");
@import url("hero.css");
@import url("about.css");
@import url("treatments.css");
@import url("gallery.css");
@import url("loyalty.css");
@import url("footer.css");
@import url("responsive.css");



/*======================================
RESET
=======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8f6f2;

    color:#333;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    border:none;

    font-family:inherit;

}


/*======================================
CSS VARIABLES
=======================================*/

:root{

    --green:#556B2F;

    --green-dark:#415223;

    --gold:#B28A3B;

    --cream:#F8F6F2;

    --white:#ffffff;

    --dark:#222;

    --gray:#777;

    --shadow:

    0 15px 35px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s;

}


/*======================================
CONTAINER
=======================================*/

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}


/*======================================
SECTION
=======================================*/

section{

    padding:90px 0;

}


/*======================================
SECTION TITLE
=======================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

}

.section-title h2{

    font-family:'Playfair Display',serif;

    font-size:46px;

    margin:15px 0;

    color:var(--green);

}

.section-title p{

    color:var(--gray);

    max-width:650px;

    margin:auto;

}


/*======================================
BUTTON
=======================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    background:var(--green);

    color:white;

    font-weight:600;

    transition:var(--transition);

}

.btn:hover{

    background:var(--gold);

    transform:translateY(-4px);

}

.btn-outline{

    background:transparent;

    border:2px solid white;

    color:white;

}

.btn-outline:hover{

    background:white;

    color:var(--green);

}


/*======================================
SMALL BUTTON
=======================================*/

.btn-small{

    display:inline-block;

    background:var(--green);

    color:white;

    padding:10px 20px;

    border-radius:30px;

    transition:.3s;

}

.btn-small:hover{

    background:var(--gold);

}


/*======================================
CARD
=======================================*/

.card{

    background:white;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


/*======================================
HEADING
=======================================*/

h1{

    font-family:'Playfair Display',serif;

}

h2{

    font-family:'Playfair Display',serif;

}

h3{

    font-weight:600;

}


/*======================================
PARAGRAPH
=======================================*/

p{

    color:#666;

}


/*======================================
UTILITY
=======================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}





/*======================================
FEATURES
=======================================*/

.features{

    margin-top:-70px;

    position:relative;

    z-index:10;

}

.features .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.feature-card{

    background:white;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    width:70px;

    height:70px;

    background:var(--green);

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin:auto;

    margin-bottom:20px;

}

.feature-card h3{

    margin-bottom:15px;

    color:var(--green);

}

.feature-card p{

    color:#777;

    font-size:15px;

}







/*======================================
SECTION SPACING
=======================================*/

.treatments .section-title,

.price-list .section-title{

    margin-bottom:50px;

}

/* ===== WhatsApp Popup ===== */
.wa-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.wa-content{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    width:300px;
}

.wa-option{
    display:block;
    margin:15px 0;
    padding:12px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.wa-option:hover{
    background:#1da851;
}

.close-btn{
    margin-top:15px;
    padding:10px 20px;
    border:none;
    background:#666;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}


/*======================================
BOOK DROPDOWN
=======================================*/

.book-dropdown{
    position:relative;
    display:inline-block;
}

.book-btn{
    display:flex;
    align-items:center;
    gap:8px;
}

.book-menu{
    position:fixed;

    top:0;
    left:0;

    width:200px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.15);

    overflow:hidden;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);

    transition:all .25s ease;
    pointer-events:none;
    backdrop-filter:blur(10px);
}

.book-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

.book-menu a{

    display:flex;

    align-items:center;

    gap:15px;

    padding:15px;

    color:#333;
}

.book-menu a:hover{

    background:#f5f5f5;
}

.book-menu i{

    color:#25D366;

    font-size:22px;
}

.book-menu div{

    display:flex;
    flex-direction:column;
}

.book-menu strong{

    color:#333;
}

.book-menu small{

    color:#777;
}

