

/* SECTION */
.section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    box-sizing: border-box;
}
.sub-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    box-sizing: border-box;
}

.tile-container {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;

    max-width: 600px;
    margin: 2rem auto;

    justify-content: center;
    align-items: center;
}

.tile {

    max-height: 200px;
    max-width: 200px;
    aspect-ratio: 1;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 1rem;

    color: var(--color-two-inv, white);
    background: var(--color-two, currentColor);
    border: 1px solid var(--color-two, currentColor);
    
    text-decoration: unset;
    text-align: center;

    transition: all 0.2s ease, visibility 0s;
}

.tile:hover {
    color: var(--color-two, currentColor);
    background: var(--color-two-inv, white);
}


.btn {
    background-color: transparent;
    padding: 0.7rem 1.5rem;
    box-sizing: border-box;
    margin: 0 1rem;
    border: 1px solid currentColor;
    text-transform: uppercase;
    display:block;
    width: fit-content;
    transition-duration: 0.50s;
    transition-property: color, background-color;
}
.btn:hover{
    background-color: black;
    color:white;
}


.btn-full {
    background-color: white;
    padding: 0.7rem 1.5rem;
    box-sizing: border-box;
    margin: 0 1rem;
    text-transform: uppercase;
    display:block;
    width: fit-content;
    color:black;
    border-radius: 50px;
    transition-duration: 0.50s;
    transition-property: color, background-color;
    font-weight: unset;
}
.btn-full:hover{
    background-color: black;
    color:white;
}


/* STYLE1 */


.section .hero {
    height: calc(60vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
   
    background-attachment: fixed;
    background-position: center center;

    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;/*space-evenly;*/
    color:white;

    font-family: 'Playfair Display', serif;
    font-weight: bolder;
    margin-bottom: 1em;
}

.hero-style1  {
    clip-path: polygon(75% 0%,100% 15%,100% 85%,25% 100%,0% 90%,0% 10%);  /*https://codepen.io/stoumann/pen/abZxoOM*/
}
.hero-style2  {
    clip-path: polygon(28% 8%,100% 0%,100% 84%,79% 100%,43% 85%,0% 92%,0% 0%);
}

@media only screen and (max-width: 500px ) {
    .section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .sub-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
}
