/* Custom Styles for AQR - Industrial Theme */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --color-primary: #D32F2F;
    /* Red */
    --color-secondary: #212121;
    /* Dark Grey/Black */
    --color-accent: #FFFFFF;
    /* White */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: #f5f5f5;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-industrial {
    background-color: #D32F2F;
    /* bg-red-700 */
    color: white;
    font-weight: 700;
    /* font-bold */
    padding: 0.75rem 1.5rem;
    /* py-3 px-6 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* tracking-wider */
    transition: all 0.3s ease-in-out;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    border: none;
    cursor: pointer;
}

.btn-industrial:hover {
    background-color: #000000;
    /* hover:bg-black */
    color: white;
}

.section-padding {
    padding-top: 4rem;
    /* py-16 */
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        /* md:py-24 */
        padding-bottom: 6rem;
    }
}

.container-custom {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

/* Map specific styles */
#map {
    height: 600px;
    width: 100%;
    z-index: 1;
}

/* Custom Marker Cluster styles if needed later */

/* Navigation */
.nav-link {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    /* tracking-wide */
    font-weight: 700;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-link:hover {
    color: #ef4444;
    /* hover:text-red-500 */
}

.mobile-menu-btn {
    color: white;
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
}