/*
Theme Name: Grenada State Theme
Theme URI: https://example.com
Author: Gemini
Author URI: https://example.com
Description: A professional construction corporate theme using TailwindCSS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grenada-state
*/

/* Base Styles moved from the HTML template */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Montserrat', sans-serif;
}

/* Refined Borders */
.custom-border-r {
    border-right: 1px solid #e2e8f0;
}
.custom-border-b {
    border-bottom: 1px solid #e2e8f0;
}

/* Stronger layout separators */
.layout-separator-b {
    border-bottom: 4px solid #1e3a8a;
}
.layout-separator-t {
    border-top: 4px solid #1e3a8a;
}

@media (min-width: 768px) {
    .md-border-r {
        border-right: 1px solid #e2e8f0;
    }
}

/* Image Hover Effects */
.hover-zoom img {
    transition: transform 0.5s ease;
}
.hover-zoom:hover img {
    transform: scale(1.05);
}

/* Gradient overlay for text readability on images */
.text-overlay-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}