/* --- Stile generale sito Cane Fiorito --- */

body {
    font-family: "Lexend", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
    background-color: #fafafa;
    color: #333;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero section */
.hero {
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* Testo hero */
.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
}

/* Cards libri homepage */
.row .col-md-4, .row .col-6 {
    text-align: center;
}

.row .col-md-4 img, .row .col-6 img {
    border: 3px solid #ffcc00;
    transition: transform 0.3s, box-shadow 0.3s;
}

.row .col-md-4 img:hover, .row .col-6 img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background-color: #f0f0f0;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Form contatti */
form .form-control {
    border-radius: 0.5rem;
}

form button {
    background-color: #ffcc00;
    border: none;
    color: #333;
    font-weight: bold;
}

form button:hover {
    background-color: #e6b800;
}

/* Grazie page */
section.container.text-center img {
    max-width: 400px;
    margin-top: 20px;
}

.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}

.grandstander {
  font-family: "Grandstander", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.lexend-<uniquifier> {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.size48{
    font-size: 48px;
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }

    .size48{
        font-size: 36px;
    }
}
