/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /*Navbar Colors*/
    --ob-nav-text-color: #ff001e;
    --ob-nav-bg-color: #320610;
    /*Color primary*/
    --theme-primary-50: #F9F2EE;
    --theme-primary-100: #ffbdc4;
    --theme-primary-200: #ff8593;
    --theme-primary-300: #ff001e;
    --theme-primary-400: #ff1f39;
    --theme-primary-500: #ff001e;
    --theme-primary-600: #e0001a;
    --theme-primary-700: #c20017;
    --theme-primary-800: #a30013;
    --theme-primary-900: #320610;
    --theme-primary-A100: #F9F2EE;
    --theme-primary-A200: #ff99a5;
    --theme-primary-A400: #ff334b;
    --theme-primary-A700: #ff1a34;
    --theme-primary-contrast-50: #000000;
    --theme-primary-contrast-100: #000000;
    --theme-primary-contrast-200: #000000;
    --theme-primary-contrast-300: #FFFFFF;
    --theme-primary-contrast-400: #FFFFFF;
    --theme-primary-contrast-500: #320610;
    --theme-primary-contrast-600: #FFFFFF;
    --theme-primary-contrast-700: #FFFFFF;
    --theme-primary-contrast-800: #FFFFFF;
    --theme-primary-contrast-900: #FF001E;
    --theme-primary-contrast-A100: #000000;
    --theme-primary-contrast-A200: #000000;
    --theme-primary-contrast-A400: #FFFFFF;
    --theme-primary-contrast-A700: #FFFFFF;
    /*Fuente cliente*/
    --theme-font-family: "Montserrat", sans-serif;
}

/*Button shooping car disabled*/
mat-toolbar.mat-toolbar button.mdc-button.mat-mdc-button.mat-mdc-button-disabled.mat-unthemed.mat-mdc-button-base {
    color: #b1b1b161;
}

/*Dark version subfooter*/
/*Background subfooter*/
ob-footer.main-footer {
    background-color: #320610 !important;
}

/*Color links subfooter & copyright*/
ob-footer.main-footer,
ob-footer.main-footer a,
ob-footer.main-footer span.footer-copyright,
ob-footer.main-footer span.justify-end {
    color: #ff001e !important;
}

/*Button language links subfooter*/
/*Language & icon */
ob-footer.main-footer span.mdc-button__label,
ob-footer.main-footer mat-icon.mat-icon {
    color: #ff001e !important;
}

/*Border*/
ob-footer.main-footer ob-button>.mat-mdc-outlined-button {
    border: 1px solid#ff001e !important;
}

/*Powered by*/
/*Logo ONEBOX*/
ob-footer.main-footer img {
    filter: brightness(20) !important;
}

/*Text powered by*/
ob-footer.main-footer section.items-center {
    color: #ff001e;
}

/*LAYOUT*/
/* Imagenes*/
.description img {
    width: 100%;
}

section.info-img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columnas en desktop */
    gap: 32px;
}

section.info-img-section img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Texto */
section.text-info {
    padding-bottom: 32px;
}

.detall-zona-taules h3,
.image-vista-zona-taules h3,
.detall-primer-anfiteatre h3 {
    font-weight: bolder;
    font-size: 18px;
    padding-bottom: 16px;
}

.info h3 {
    font-weight: bolder;
    font-size: 18px;
    padding-bottom: 8px;
}

.bold-text {
    font-weight: bold !important;
}

.info li {
    margin-bottom: 8px !important;
}

.info ul {
    margin-block-start: 8px;
    padding-inline-start: 16px;
}

/*Responsive Mobile*/
@media (max-width: 768px) {

    section.info-img-section {
        grid-template-columns: 1fr;
        /* 1 columna en mÃ³vil */
    }

    /* Orden en mobile */
    .image-vista-zona-taules {
        order: 1;
    }

    .detall-primer-anfiteatre {
        order: 2;
    }

    .detall-zona-taules {
        order: 3;
    }

    .info {
        order: 4;
    }
}
/*LAYOUT----END*/