/*
Theme Name: Webdazy
Theme URI: https://aymaanenterprises.com
Author: Webdazy
Author URI: https://aymaanenterprises.com
Description: Webdazy — a fully custom, responsive WordPress theme built for Aymaan Enterprises, a trusted Indian exporter of fresh fruits & vegetables, dehydrated products & spices, and premium rice. Built with Tailwind CSS, Heroicons, a sticky header, smooth scrolling, and a database-backed contact system with admin + auto-reply emails and full mail logging. Brand palette derived from the company logo (teal #18C0B4 / slate #486060).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webdazy
Tags: business, export, food, responsive, custom-colors, sticky-header, contact-form
*/

/* All visual styling is handled by Tailwind CSS (loaded in header.php) plus
   assets/css/custom.css. This file exists to register the theme with WordPress. */
   
.hero-bg {
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 100vh; /* Optional: Full viewport height */
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
                    rgba(0, 0, 0, 0.65),
                    rgba(0, 0, 0, 0.65)
                ),
                url('/images/aymaan.jpg') center center / cover no-repeat;
    z-index: 0;
}

/* Keep content above the overlay */
.hero-bg > * {
    position: relative;
    z-index: 1;
}