/*
Theme Name: Astra Child
Theme URI: https://yourwebsite.com/
Description: Child theme for Astra
Author: Your Name
Author URI: https://yourwebsite.com/
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/* Your custom CSS starts here */

/* GLASS PILL BUTTON */
.glass-pill-btn{
    position: relative;
    padding: 17px 35px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    overflow: hidden;

    /* vertical curvature (top highlight → bottom shadow) */
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.08) 40%,
      rgba(0,0,0,0.15) 100%
    );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

/* directional light edge (TOP RIGHT) */
.glass-pill-btn::before{
	content:"";
	position:absolute;
	inset:0;
	border-radius:999px;
	padding:1.5px;

	background: linear-gradient(170deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.1) 50%, rgb(255 255 255 / 0%) 50%, rgba(255, 255, 255, 0.9) 100%);

	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;

	pointer-events:none;
}


.glass-pill-btn:hover{
	background-color: rgba(255, 115, 0, 0.35);
}