/* Tailwind Directives */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Styles */
:root {
    --primary: #8c0606;
    --primary-dark: #720505;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

a {
    transition: all 0.3s ease;
}

.topbar {
    background-color: #1a1a1a;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}