:root{
  --bg: #ffffff;
  --fg: #111111;
  --accent: #111111;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; margin: 0; }

body{
  background-image: url("/assets/images/Lecentraltzoumaz3.jpg");
  background-repeat: no-repeat;
  background-position: center 10%;
  background-size: cover;
  background-attachment: fixed;
}

/* Layout */
.page{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  gap: 2rem;
}

.content{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

/* Cards row (info + PDF) */
.cards-row{
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between; /* ⬅ PDF goes right */
  width: 100%;
  max-width: 700px;
}

.cards-row .contact-card{
  flex: 1;
}

/* Contact cards */
.contact-card{
  padding: .75rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  background: #fff;
  text-align: left;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.25;
  max-width: 300px;
}

.contact-card h2{
  margin: 0 0 .25rem 0;
  font-size: 1.05em;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-card a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.contact-card a:hover{
  border-bottom-style: solid;
}

/* Menu PDF card */
.menu-card{
  max-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #transparent;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover{
  transform: scale(1.05); /* expand slightly */
}

.menu-image{
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
		  /* Insta icon placement and size*/
.instagram {
  margin-top: 10px;      /* space under contact card */
  margin-left: auto;     /* push from left */
  margin-right: 10%;     /* 10% from right */
}

.instagram .insta-icon {
  height: 50px;          /* max height */
  width: auto;
  display: block;
}

/* Footer */
.footer{
  color: #000;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: .75rem 1rem;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 700px){
  	.cards-row{
    flex-direction: column;
    align-items: center;
  }

  	.menu-card{
    max-width: 100%;
  }
.instagram {
    margin-left: auto;
    margin-right: auto;   /* centers the block */
    display: flex;
    justify-content: center;
  }

  .instagram .insta-icon {
    height: 50px;         /* keep it small on mobile */
  }
}
		  /*wide screen*/
@media (min-width: 930px){
  .cards-row{
    margin-top: 10rem; /* adjust value until perfect */
  }
}
