/*
 Theme Name: Visit Collecorvino - Child
 Theme URI: https://visitcollecorvino.it
 Description: Child theme for Twenty Twenty-Four with palette and basic styles for Visit Collecorvino.
 Author: Andrea Ricciardi
 Template: twentytwentyfour
 Version: 1.0.0
*/

/* Palette */
:root{
  --vc-olive:#4A5A2C;
  --vc-cream:#F2EADA;
  --vc-navy:#10243B;
  --vc-ochre:#C5911A;
  --vc-sand:#E8E1D4;
}

body{
  background-color: var(--vc-cream);
  color:#223;
}

a{ color: var(--vc-olive); }
a:hover{ color: var(--vc-ochre); }

/* Header tweaks */
.wp-site-blocks > header{
  background: linear-gradient(0deg, rgba(16,36,59,.75), rgba(16,36,59,.75)), url('/wp-content/themes/visit-collecorvino-child/assets/hero.jpg') center/cover no-repeat;
  color: white;
}

/* Buttons */
.wp-element-button, .wp-block-button__link{
  background: var(--vc-olive);
  border-radius: 8px;
  padding:.7rem 1.1rem;
}
.wp-element-button:hover{ background: var(--vc-ochre); }

/* Section helpers */
.section{
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) 16px;
}
.section .lead{ font-size: clamp(18px, 2.2vw, 22px); line-height: 1.6; }
.card-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 18px;
}
.card{
  background:white;
  border-radius:16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  padding:18px;
}
footer.wp-block-template-part{
  background: var(--vc-navy);
  color: #fff;
}
footer a{color:#fff;}
*/