/* style.css */

:root {
  --text: #ffffff;
  --shadow: rgba(0, 0, 0, 0.85);
  --border: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg {
  position: fixed;
  inset: 0;
  background-image: url("imagens/background_golf_painting.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: -2;
}

.bg::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.container {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 4px;
}

.logo {
  height: 220px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.75));
}

.site-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 0 20px;
}

.main-inner {
  text-align: center;
}

.title {
  margin: 0 0 75px;
  font-variant: small-caps;
  letter-spacing: 1px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  text-shadow: 0 2px 10px var(--shadow);
}

.title span {
  display: block;
}

.subtitle {
  margin: 0 0 34px;
  font-size: clamp(16px, 2.2vw, 20px);
  text-shadow: 0 2px 10px var(--shadow);
}

.contact {
  margin-bottom: 30px;
  text-shadow: 0 2px 10px var(--shadow);
}

.contact-label {
  margin: 0 0 6px;
  font-size: 16px;
}

.link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}

.link:hover,
.link:focus-visible {
  border-bottom-color: rgba(255, 255, 255, 0.85);
  outline: none;
}

.social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-link {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  margin-top: auto;
  padding: 16px 0 22px;
}

.footer-text {
  margin: 0;
  text-align: center;
  font-size: 14px;
  text-shadow: 0 2px 10px var(--shadow);
}
