/* Mon beau SPORT — styles */

:root {
  --red: #E31B23;
  --red-dark: #B8151C;
  --black: #1A1A1A;
  --gray-bg: #F5F5F5;
  --white: #FFFFFF;
  --gray-text: #444444;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--red-dark);
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, var(--black) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.08;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 640px;
}

.hero-logo {
  width: min(280px, 75vw);
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--red);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: var(--gray-bg);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 5px solid var(--red);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray-text);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.domains-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.badges li {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  font-style: italic;
}

.section.about .badges li {
  background: var(--gray-bg);
}

/* Hours */
.hours-card {
  background: var(--white);
  border: 2px solid var(--black);
  max-width: 480px;
  overflow: hidden;
}

.section.hours .hours-card {
  box-shadow: 4px 4px 0 var(--red);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 1rem 1.25rem;
  text-align: left;
}

.hours-table thead {
  background: var(--black);
  color: var(--white);
}

.hours-table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.hours-table tbody tr:nth-child(even) {
  background: var(--gray-bg);
}

.hours-table td:last-child {
  font-weight: 700;
  color: var(--red);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  margin-bottom: 0.25rem;
}

.contact-list address {
  font-style: normal;
}

.contact-list a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
}

.contact-list a:hover {
  color: var(--red);
}

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--black);
  overflow: hidden;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-contact a {
  color: var(--white);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--red);
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-grid {
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
