* {
    box-sizing: content-box;
}

body, html {
    position: relative;
    margin: 0 auto;

    font-family: "Roboto Condensed", helvetica, sans-serif;
    font-size: 18px;

    --color-primary: black;
    --color-primary-inv: rgb(246, 246, 246);
    --color-secondary:  #331c0c;
    --color-secondary-inv:rgb(246, 246, 246);
    --color-tertiary: #2a77ad;
    --color-tertiary-inv: white;
    --padding: 3em;

    overflow-x: hidden;


    height: 100%;
    /*Required for parallax*/
}

a {
    text-decoration: none;
    color: inherit;
}

.vignette {
    width:50%;
    max-width: 600px;
    padding: 2rem;
    box-sizing: border-box;
    margin:auto;
    display: block;
    white-space: pre-line;
}

/* COLORS */
.primary {
    background: var(--color-primary);
    color: var(--color-primary-inv);
}

.primary-inv {
    background: var(--color-primary-inv);
    color: var(--color-primary);
}

.secondary {
    background: var(--color-secondary);
    color: var(--color-secondary-inv);
}

.tertiary {
    background: var(--color-tertiary);
    color: var(--color-tertiary-inv);
}

/* PARALLAX */

.parallax {
    /* Set a specific height */
    min-height: 95%;
    opacity: 0.85;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 100% 100%; */

    position: relative;
    overflow: hidden;
}

.parallax > video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

.parallax .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translate(0%, -50%);
    text-align: center;
}


.parallax .caption > * {
    padding: 0.5em;
    width:fit-content;
}


/* SECTION */
section {
    display: block;
    padding: calc(2 * var(--padding));
    box-sizing: border-box;
    overflow-x: hidden;
}

.spacing>* {
    display: block;
    margin-bottom: 1em;
}



/* SIZE */
.size1 {
    font-size: 1em;
    max-height: 1em;
}

.size2 {
    font-size: 2em;
    max-height: 2em;
}

.size4 {
    font-size: 4em;
    max-height: 4em;
    max-width: 100%;
}

.size5 {
    font-size: 5em;
    max-height: 5em;
    max-width: 100%;
}


.title{

    box-sizing: border-box;
    margin-top: 1rem !important;
    margin-bottom: 3rem !important;

    font-weight: 400;
    font-style: normal;
    font-size: 5em;
    box-shadow: 4px 4px 6px #b8bec5, -4px -4px 6px #ffffff;

}

a img {
    height: var(--icon-size,1rem);
}
/* BTN */
.btn {
    display: block;
    padding: 1em;
    border-radius: 1em;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Box shadow effect on hover */
}
.btn:hover {
    background-color: var(--color-primary-inv);
    color:var(--color-primary);
}

/* COLUMNS */
.col2 {
    display: flex;
    align-items: flex-start;
    gap: calc(1 * var(--padding));
    justify-content: space-around;
}

.col2>* {
    width: calc(50% - var(--padding));
}


/* FLEX PLACEMENT */
.row {
    display: flex;
}

.grow {
    flex-grow: 1;
}

.wrap {
    flex-wrap: wrap;
}

.left {
    justify-content: left;
    display: flex;
}

.right {
    justify-content: flex-end;
    display: flex;
}

.toright {
    margin-left: auto;
}

.centered {
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.space-around {
    justify-content: space-around;
}

.round {
    border-radius: 50%;
}

.gap1 {
    gap: 1rem;
}
.gap2 {
    gap: 2rem;
}


svg:not(:root) {
    overflow: visible;
}




/* The device with borders */
.smartphone {
    display: block;
    position: relative;
    border: 12px black solid;
    border-top-width: 40px;
    border-bottom-width: 40px;
    border-radius: 28px;
    display: block;
    width: 360px;
    height: 640px;
    margin-bottom: 1em;
}

/* The horizontal line on the top of the device */
.smartphone:before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 10px;
}

/* The circle on the bottom of the device */
.smartphone:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translate(-50%, -50%);
    background: #333;
    border-radius: 50%;
}


.insta {
    display:block;
    width:90vw;
    margin:auto;
    height: calc( 60vw + 88px + 24px + 24px);
    margin-bottom:1rem;
    max-width:800px; 
    max-height: 756px;
}

@media only screen and (max-width: 1000px ) {
    body,html {
        font-size: 14px;
        --padding: 1em;
    }
    .col2 {
        flex-wrap: wrap;
    }
    .col2 >* {
        width:100%;
    } 
    .smartphone {
        border: unset;
        width:100%;
    }
    .smartphone:after,
    .smartphone:before {
        display: none;
    }
    .vignette {
        width: 70%;
    }
}


@media only screen and (max-width: 480px ) {
    .insta {
        height: calc( 60vw + 56px + 24px + 24px);
    }
    .vignette {
        width: 100%;
    }
}



  
  .opening-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1em;
    background: #f9f9f9;
  }
  
  .opening-hours-table th,
  .opening-hours-table td {
    padding: 12px 10px;
    text-align: center;
  }
  
  .opening-hours-table thead th {
    background: #e73948;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px 5px 0 0;
  }
  
  .opening-hours-table tbody tr {
    transition: background 0.2s;
  }
  
  .opening-hours-table tbody tr:hover {
    background: #ffeaea;
  }
  
  .opening-hours-table tbody td {
    color: #333;
    border-bottom: 1px solid #eaeaea;
  }
  
  .opening-hours-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  @media (max-width: 600px) {
    .opening-hours-container {
      padding: 10px 2px 10px 2px;
    }
    .opening-hours-table th,
    .opening-hours-table td {
      padding: 8px 4px;
      font-size: 0.95em;
    }
  }
  

  resto-click {  margin: clamp(1em, 1em + 5vh, 5em) auto;}