/*
Theme Name: Atelier del Riposo
Theme URI: https://atelierdelriposo.it
Author: Atelier del Riposo Team
Description: Tema personalizzato per l'Atelier del Riposo, creato per valorizzare la boutique dedicata al sonno e al benessere. Il tema utilizza una palette classica di bianco, nero e marrone beige per trasmettere eleganza e calore, abbinate a immagini evocative di letti e materassi di design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atelierdelriposo
*/

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #b3a183; /* tonalità marrone/beige per l'accento */
}

.hero {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  text-align: center;
}

.section {
  padding: 60px 20px;
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #000000;
  text-align: center;
}

.section p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: center;
}

.button {
  display: inline-block;
  background-color: #b3a183;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #95876c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666666;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fafafa;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

.form-group textarea {
  min-height: 120px;
}

.form-group input[type="submit"] {
  background-color: #b3a183;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.form-group input[type="submit"]:hover {
  background-color: #95876c;
}