/* AXA photobooth site styles (branded social buttons) */
:root {
  --axa-red: #e71922;
  --axa-blue: #00008f;
  --axa-dark-blue: #00005b;
  --axa-light-grey: #f4f5f7;
  --page-pink: #fce8e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;

  background-color: var(--page-pink);
  background-image: url('/assets/images/axa-background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: var(--axa-red);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(500px, 90vw);
  max-height: 130px;
}

.content {
  text-align: center;
}

h1 {
  margin: 0 0 10px;
  color: var(--axa-red);
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1.08;
  font-weight: 700;
}

.intro {
  max-width: 540px;
  margin: 0 auto 24px;
  color: var(--axa-red);
  font-size: 17px;
  line-height: 1.5;
}

.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.button {
  width: 100%;
  min-height: 54px;
  padding: 14px 22px;

  border: 0;
  border-radius: 12px;

  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;

  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
}

.button:focus,
.button:hover {
  transform: translateY(-2px);
}

/* Branded social button colors */
.social-button.fb { background: #1877F2; color: #ffffff; }
.social-button.x  { background: #000000; color: #ffffff; }
.social-button.ig { background: linear-gradient(45deg,#feda75,#d62976,#962fbf,#4f5bd5); color: #ffffff; }
.social-button.wa { background: #25D366; color: #ffffff; }

.caption-panel {
  margin-top: 20px;
  padding: 16px 18px;

  background: rgba(255, 255, 255, 0.92);

  border: 2px solid var(--axa-red);
  border-radius: 14px;

  text-align: left;
}

.caption-label {
  margin-bottom: 7px;
  color: var(--axa-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caption {
  margin: 0;
  color: var(--axa-red);
  font-size: 16px;
  line-height: 1.45;
}

#message {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--axa-red);
  font-size: 14px;
  line-height: 1.4;
}

.footer {
  margin-top: 28px;
  color: var(--axa-red);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.copy-button {
  margin-top: 14px;
  padding: 10px 18px;

  border: 0;
  border-radius: 999px;

  background: var(--axa-red);
  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus {
  background: #cf1019;
}

@media (max-width: 480px) {
  .page {
    padding: 20px 14px 32px;
  }

  .logo {
    max-width: 92vw;
    max-height: 105px;
  }

  .intro {
    font-size: 16px;
  }

  .button {
    min-height: 52px;
    font-size: 15px;
  }
}
