/* style2.css - Styling til upload siden */

/* Reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  background:linear-gradient(180deg,#f5f7fb 0%,#eef2f7 50%,#e9eef7 100%);
  color:#1f2937;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding:40px 18px;
}

.wrap{
  max-width:960px;
  margin:0 auto;
  background:rgba(255,255,255,0.95);
  border-radius:14px;
  box-shadow:0 8px 30px rgba(27,40,61,0.12);
  display:grid;
  grid-template-columns:1fr 400px;
}

@media(max-width:880px){
  .wrap{grid-template-columns:1fr}
}

.intro{
  padding:40px;
  border-right:1px solid rgba(15,23,42,0.06);
}
@media(max-width:880px){
  .intro{border-right:none;text-align:center}
}

.intro h1{margin:0 0 10px;font-size:34px}
.intro h1 span{color:#0b74ff;font-weight:700;font-size:.9em}
.intro h2{margin:8px 0;font-size:18px;color:#334155;font-weight:600}
.intro p{margin:16px 0;color:#475569;line-height:1.5}

.info{padding:40px;display:flex;flex-direction:column;justify-content:center}
.info p{margin:0 0 18px;color:#334155;line-height:1.6}

/* QR billede centreres og styles */
.intro img{
  display:block;
  margin:20px auto;
  max-width:200px;
  height:auto;
  border-radius:12px;
  background:#fff;
  padding:12px;
  box-shadow:0 6px 18px rgba(15,23,42,0.08);
}

/* Jens billede centreres */
.info img{
  display:block;
  margin:20px auto;
  height:auto;
}

/* HubSpot-orange knap */
.button-5{
  appearance:none;
  border:0;
  display:inline-block;
  padding:12px 20px;
  font-size:16px;
  font-weight:700;
  border-radius:10px;
  cursor:pointer;
  background:linear-gradient(90deg,#ff7a59,#ff5c35);
  color:white;
  box-shadow:0 8px 18px rgba(255,122,89,0.25),inset 0 -2px 0 rgba(255,255,255,0.06);
  transition:transform .12s ease,box-shadow .12s ease;
}
.button-5:hover{box-shadow:0 12px 26px rgba(255,92,53,0.28)}
.button-5:active{transform:translateY(1px)}
.button-5:focus{outline:3px solid rgba(255,92,53,0.3)}

/* Links */
a{color:inherit;text-decoration:none}
a>.button-5{display:inline-block}

/* Små skærme */
@media(max-width:480px){
  body{padding:22px}
  .intro h1{font-size:26px}
  .intro img{max-width:180px}
  .info img{max-width:180px}
}

/* Print */
@media print{
  body{background:#fff;padding:0}
  .wrap{box-shadow:none;border-radius:0}
  .intro img,.info img{display:none}
}