/*
Theme Name: Relay Day
Theme URI: https://relay.day
Author: Autofy Inc.
Author URI: https://autofy.live
Description: Custom marketing theme for relay.day - Your AI that actually remembers you. Built from Google Stitch designs with Tailwind CSS.
Version: 1.0.0
License: Proprietary
License URI: https://relay.day/terms
Text Domain: relay-day
*/

/* Base resets - Tailwind handles most styling via CDN */
body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

/* FAQ accordion arrow rotation */
details[open] summary .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-arrow {
    transition: transform 0.2s ease;
}

/* Bouncy hover effect */
.bouncy-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bouncy-hover:hover {
    transform: scale(1.03);
}

/* Candy shadows */
.candy-shadow-primary { box-shadow: 0 4px 16px rgba(224, 64, 160, 0.2); }
.candy-shadow-secondary { box-shadow: 0 4px 16px rgba(124, 82, 170, 0.2); }
.candy-shadow-tertiary { box-shadow: 0 4px 16px rgba(0, 150, 204, 0.2); }

/* Scroll margin for anchor navigation */
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* Glass card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
}
.mobile-menu.active {
    display: flex;
}

/* WordPress admin bar spacing */
body.admin-bar header.sticky {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header.sticky {
        top: 46px;
    }
}
