/* styles.css */
:root{
  font-family: system-ui, Arial, sans-serif;

  --brand-red: #FC0C34;
  --brand-red-dark: #D90A2D;
  --brand-red-soft: #FFE7EC;

  --ink: #141414;
  --text: #2B2B2B;
  --surface: #FFFFFF;
  --border: #E9E2DD;
}

body{
  margin: 0;
  line-height: 1.5;
  color: var(--text);
  background: var(--surface);
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}

header{
  border-bottom: 1px solid var(--border);
}

/* default button style */
button{
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

button:hover{
  border-color: var(--brand-red);
}

/* optional: a primary button style for your main CTA */
.btn-primary{
  background: var(--brand-red);
  color: #fff;
  border: 1px solid var(--brand-red);
}

.btn-primary:hover{
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

/* Logo */
.site-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-logo{
  height: 180px;   /* try 72–96px */
  width: auto;
  display: block;
}

.site-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.site-nav{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.site-nav a{
  text-decoration: none;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 10px;
}

.site-nav a:hover{
  background: var(--brand-red-soft);
  color: var(--brand-red-dark);
}
.hero{
  padding: 28px 0;
}

.hero-actions{
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
}

.hero--bg{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 56px 24px;
  margin: 18px 0 28px;
  color: var(--ink);

  /* Background image */
  background-image:
    linear-gradient(90deg, rgba(255,247,240,0.92), rgba(255,247,240,0.65)),
    url("assets/images/hero-bologna.jpg");
  background-size: cover;
  background-position: center;
}

/* keeps text nicely aligned and not too wide */
.hero-inner{
  max-width: 560px;
}

.gallery{
  margin: 34px 0 10px;
  padding-top: 10px;
}

.muted{
  color: var(--text);
  opacity: 0.85;
  margin-top: -6px;
}

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

.gallery-card{
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.gallery-card img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption{
  padding: 12px 14px;
  font-weight: 600;
  color: var(--ink);
}

.credits{
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

.lead{
  font-size: 1.1rem;
  max-width: 70ch;
}

.about-grid{
  display: grid;
  gap: 24px;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  margin-top: 18px;
}

.bullets{
  padding-left: 18px;
}

.about-photo{
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.about-photo img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about-photo figcaption{
  padding: 12px 14px;
  color: var(--text);
  opacity: 0.9;
  font-size: 0.95rem;
}

.cta-line{
  margin-top: 18px;
}

/* Mobile */
@media (max-width: 760px){
  .about-grid{ grid-template-columns: 1fr; }
}

.about-photos{
  display: grid;
  gap: 16px;
}

.about-photo{
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.about-photo img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about-photo figcaption{
  padding: 12px 14px;
  color: var(--text);
  opacity: 0.9;
  font-size: 0.95rem;
}

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

h1{
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
}

.hero-actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}

.btn-primary{
  background: var(--brand-red);
  color: #fff;
  border: 1px solid var(--brand-red);
}
.btn-primary:hover{
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

.btn-secondary{
  background: var(--brand-red-soft);
  color: var(--brand-red-dark);
  border: 1px solid var(--border);
}
.btn-secondary:hover{
  border-color: var(--brand-red);
}

.btn-secondary::after{
  content: "→";
  font-weight: 700;
}
