/* Template-specific styles for template-1 */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom CSS Variables */
:root {
    /* Add your CSS variables here */
}

/* Custom CSS from Visual Editor */
@font-face {
    font-family: 'Nexa';
    src: url('/website-templates/default-template/assets/fonts/Nexa-Heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nexa';
    src: url('/website-templates/default-template/assets/fonts/Nexa-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Banner Overlay */
/* Banner Overlay */
.banner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    /* Customize opacity as needed */
    transition: background-color 0.3s ease;
}