﻿@font-face {
    font-family: 'Montserrat';
    src: url('/Content/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* supporta dal thin al black */
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/Content/fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* supporta dal thin al black */
    font-style: italic;
}

/**************************************************************************************************************/

body {
    font-family: Montserrat;
    background-color: #f0f9fa;
}

footer {
    background-color: rgba(0, 60, 30, 1);
}

.navbar-custom {
    background: linear-gradient(to bottom, rgba(0, 60, 30, 1), rgba(0,0,0,0));
}

.hero-section {
    position: relative;
    background: url('/Content/img/banner_hero.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay che scurisce l'immagine ma NON i testi */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* aumenta/diminuisci l’ultimo valore (0.4) */
    z-index: 1;
}

/* Contenuto sopra l’overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 500;
}

.main-text {
    font-size: 3rem;
    font-weight: 500;
}

.text-orange {
    color: #bd4f0a;
}

a.categoria {
    font-size: 1.75rem;
    text-decoration: none;
}

a.categoria:hover,
a.categoria.force-hover,
i.chisiamo.force-hover,
h4.chisiamo.force-hover {
    color: #f5843d;
}

img.categoria-img:hover,
img.categoria-img.force-hover,
img.chisiamo-img.force-hover {
    filter: brightness(1.2);
}

.col-clickable {
    cursor: pointer;
}

.bg-custom {
    background-color: rgb(0, 60, 30);
}

.info-col i {
    font-size: 20px;
    color: #fff;
    background-color: rgb(0, 60, 30);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.custom-card {
    -webkit-box-shadow: 13px 13px 20px -20px #000000;
    box-shadow: 13px 13px 20px -20px #000000;
    border: 0;
    border-radius: 0;
}