/*
Theme Name: Oblò SAS Hub
Theme URI: https://oblosas.it
Author: Paolo Fuschino / Oblò SAS
Description: Tema minimale per landing hub centrale.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: oblosas-hub
*/

body {
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.logo {
  max-width: 220px;
  height: auto;
  margin: 0 auto;
}

.payoff {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1rem 0;
  opacity: .9;
}

.circles {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin: 2rem 0;
}

.circle-link {
  display: inline-flex;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  background: #fff;
}

.circle-link:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

.circle-link img {
  max-width: 65%;
  max-height: 65%;
  display: block;
}

/* Footer styles */
.footer-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0 0;
  background: transparent;
}

.footer {
  max-width: 960px;
  width: 100%;
  font-size: .85rem;
  color: #555;
  border-top: 1px solid #eee;
  padding: .5rem .75rem .25rem;
  box-sizing: border-box;
  text-align: center;
}

.footer-row {
  margin-bottom: 8px;
  line-height: 1.2;
  word-break: break-word;
}

.footer-row:last-child {
  margin-bottom: 0;
}

/* General styles */
a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.disclaimer {
  margin-top: .5rem;
  line-height: 1.2;
}

/* Media queries */
@media (max-width: 720px) {
  .circles {
    gap: .75rem;
  }
  
  .circle-link {
    width: 120px;
    height: 120px;
  }
  
  .payoff {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding-top: 5rem;
  }
}