/*
Theme Name: Softzapy Theme
Theme URI: https://softzapy.com/
Author: Softzapy
Author URI: https://softzapy.com/
Description: WordPress theme adapted from static site, preserving exact design.
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: softzapy
Text Domain: softzapy
*/

/* Original CSS from style.css - UNCHANGED */
/* Gradient brand text */
.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Dark theme specifics for containers */
.dark .dark\:bg-dark-bg { background-color: #0f172a; }
.dark .dark\:bg-dark-card { background-color: #111827; }

/* Mobile menu overlay state */
#mobile-menu.show { display: block; }
/* Banner Styles */
#announcement-banner {
    position: relative;
    z-index: 50;
}

/* Smooth banner hide animation */
#announcement-banner {
    transition: all 0.3s ease-in-out;
}

/* Ensure content shifts smoothly when banner is closed */
body:has(#announcement-banner[style*="display: none"]) {
    transition: margin-top 0.3s ease-in-out;
}

/* Mobile responsiveness for banner */
@media (max-width: 768px) {
    #announcement-banner .container > div {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    #announcement-banner .flex.items-center.space-x-2 {
        justify-content: center;
    }
}

/* Banner close button hover effects */
#banner-close:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Banner text emphasis */
#announcement-banner .font-bold {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}