/*
Theme Name: St. George Storage Theme
Template: twentytwentyfive
Description: Custom theme for St. George Storage
Author: You
Version: 1.0.1
*/

/* Core Resets to override Twenty Twenty-Five block containers */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
}

.wp-site-blocks {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hero Section Base */
.hero-section {
    background-color: #0d9488;
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Default dark overlay */
    z-index: -1;
}

/* Facility Page Specific Hero Override */
.facility-hero::after {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

/* Custom Component Hover Effects */
.facility-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(13, 148, 136, 0.3);
}

.reserve-button {
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.reserve-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Plugin Overrides for Rent Manager Shortcode */
.rmwb_listings-table-wrapper {
    width: 100%;
    overflow-x: auto;
}