/*
Theme Name: 	Improntae Theme 2
Description:  Tema custom wordpress
Version:     	1.0.0
Author:     	Aniello Furmio
Author URI:   http://aniellofurmio.it
Site:         http://aniellofurmio.it
Text Domain: 	Improntae_Theme
Domain Path: 	/languages
Tags:        	grid-layout, blog, custom-menu, featured-images, right-sidebar
License:    	GNU General Public License v3.0
License URI:	http://www.gnu.org/licenses/gpl-3.0.html
*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;600;700&family=Shadows+Into+Light&display=swap');


/* ! Reset */
body,
html {
  font-size: 16px;
  font-family: 'Quicksand', sans-serif;
  /*font-family: 'Shadows Into Light', cursive;*/
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style-type: revert-layer;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

hr {
  border: none;
  border-bottom: 1px solid #ddd
}

.col-50.text-white.desktop__content {
    margin-top: 50px;
	text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

/* ! Title System */
.text-0 {
  font-size: 5rem;
  line-height: 1;
}

h1,
.text-1 {
  font-size: 2.5rem;
}

h2,
.text-2 {
  font-size: 1.6rem;
  text-transform: uppercase;
}

h3,
.text-3 {
  font-size: 1.3rem;
}

h4,
p,
.text-4 {
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
}

h1,
h2,
h3,
h4,
p,
ol,
ul {
  margin-bottom: 1rem;
}


/* Contenitore degli articoli */
.recent-posts-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    padding: 20px;
}

/* Singolo articolo */
.post-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: scale(1.05);
}

/* Immagine del post */
.post-image img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* Titolo del post */
.post-title {
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}

.post-title a {
    text-decoration: none;
    color: #333;
}

.post-title a:hover {
    color: #0073aa;
}

/* Excerpt del post */
.post-excerpt {
    font-size: 14px;
    color: #666;
    margin: 15px 0;
    line-height: 1.5;
}

/* Pulsante "Leggi di più" */
.read-more-button {
    display: inline-block;
    background-color: #54628c;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.read-more-button:hover {
    background-color: #fff;
	border: 1px solid #000;
}

tr {
    border: 1px solid #000;
}

td {
    border: 1px solid #000;
	padding: 5px;
}

@media (max-width: 768px) {
	.recent-posts-wrapper {
        flex-direction: column; /* Dispone gli articoli verticalmente */
        align-items: center;
    }

    .post-item {
        width: 90%; /* Riduce la larghezza per adattarsi meglio agli schermi piccoli */
        margin-bottom: 20px; /* Aggiunge spazio tra gli articoli */
		margin-left: 20px;
    }
	
  .text-0 {
    font-size: 4rem
  }
}

/* ! Button system */
.button {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  background: #333;
  color: #fff;
  padding: 14px 25px;
  display: inline-block;
  border-radius: 4px
}

.button:hover {
  background: #000;
}

.button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.button--round {
  background: #fff;
  color: #000;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: bold;
}

.button--round:hover {
  background: #000;
  color: #fff;
}

.button--round-outline {
  background: transparent;
  color: #fff;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: bold;
  border: 1px solid #fff
}

.button--round-outline:hover {
  background: #fff;
  color: #000;
}


/* Components
--------------------------------------------------------- */

/* ! Header */
.header {
  background: #333;
  display: flex;
  justify-content: space-between;
}

.header a {
  color: #fff;
  display: block;
  padding: 15px;
}

.header__menu {
  margin-bottom: 0;
}

.header__menu li {
  display: inline-block;
}

.header__logo {
  font-weight: bold;
}

/* ! Cover */
.cover {
  background: #eee;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cover__content {
  max-width: 600px;
  margin: 0 auto
}

.cover--image {
  min-height: 600px;
  color: #fff;
  justify-content: flex-end;
  text-align: left;
}

.cover--image .cover__content {
  max-width: 1250px;
  width: 100%;
}

.cover--image h1,
.cover--image h2 {
  font-size: 2.4rem;
}

.cover--image h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: normal;
}


/* ! Tiles */

.tiles {
  min-height: 500px;
  border-radius: 30px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.tiles__label {
  position: absolute;
  bottom: 30px;
  left: 30px
}

.tiles__content {
  padding: 30px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

/* ! card */
.card {
  background: #eee;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

/* ! Footer */
.footer {
  background: #eee;
  padding-top: 30px;
}


/* ! Grid System */
.griglia {
  display: flex;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto
}

.griglia--small {
  max-width: 900px
}

.griglia--center {
  justify-content: center;
}

.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-30 {
  width: 30%;
}

.col-33 {
  width: 33.33%;
}

.col-40 {
  width: 40%;
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: 60%;
}

.col-70 {
  width: 70%;
}

.col-80 {
  width: 80%;
}

.col-90 {
  width: 90%;
}

.col-100 {
  width: 100%;
}

[class*='col-'] {
  padding: 10px;
}

.col-xs-8 {
    margin-top: 20px;
}

@media (max-width: 768px) {
  [class*='col-'] {
    width: 100%;
  }

  .sma-33 {
    width: 33.33%;
  }

  .sma-50 {
    width: 50%;
  }

  .sma-25 {
    width: 25%;
  }
}

/* ! Helpers */

.br {
  border: 1px solid red;
}

.img-res {
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mb-05 {
  margin-bottom: 0.5rem !important;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mtb {
  margin-top: 80px;
  margin-bottom: -60px;
}

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.text-right {
  text-align: right
}

.text-red {
  color: var(--rosso);
}

.uppercase {
  text-transform: uppercase;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.px-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  //*padding-top: 4rem !important;*//
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pl-0 {
  padding-bottom: 0;
}

.pl-1 {
  padding-bottom: 1rem !important;
}

.pl-2 {
  padding-bottom: 2rem !important;
}

.pl-3 {
  padding-bottom: 3rem !important;
}

.pl-4 {
  padding-bottom: 4rem !important;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.icon-small {
  width: 40px;
  padding: 8px;
}

.icon-white {
  filter: invert(1);
}

.bg-dark {
  background: #000;
}

.text-white {
  color: #fff;
}

.text-blu {
  color: #000;
  font-size: 34px;
}

.text-bluScuro {
  color: var(--blu-scuro);
}

.text-quick {
  font-family: 'Quicksand', sans-serif;
}

.text-shadows {
  font-family: 'Shadows Into Light', cursive;
}

.h-center {
  display: flex;
  align-items: center;
  flex-flow: column
}

.v-center {
  display: flex;
  justify-content: center;
  flex-flow: column
}

.v-end {
  display: flex;
  justify-content: flex-end;
  flex-flow: column
}

.font-normal {
  font-weight: 400;
}

.none {
  display: none;
}

@media (max-width: 768px) {
  .sma-none {
    display: none;
  }
}

@media (min-width: 768px) {
.col-50.text-white.desktop__content {
    margin-top: -14px;
    margin-left: 15px;
	text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}
	}


/* end file */