@font-face {
  font-family: 'BadComic';
  src: url('fonts/BadComic-Regular.woff2') format('woff2'),
       url('fonts/BadComic-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BadComic';
  src: url('fonts/BadComic-Italic.woff2') format('woff2'),
       url('fonts/BadComic-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'BadComic', 'Montserrat', sans-serif;
  background: #f5f0e8;
  color: #333;
  min-height: 100vh;
  text-transform: uppercase;
}

/* ===== LINKS SECTION ===== */
.links-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.links-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/fon.jpeg') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
.links-section .container {
  position: relative;
  z-index: 2;
}

/* ===== GARFIELD TITLE ===== */
.garfield-title {
  margin-bottom: 4px;
  position: relative;
}
.garfield-logo {
  width: 650px;
  height: 195px;
  background: url('images/garfield.png') no-repeat center center;
  background-size: contain;
  margin: 0 auto;
  pointer-events: none;
  user-select: none;
}

/* ===== LINK CARDS ===== */
.link-card {
  background: transparent url('images/cloud.png') no-repeat center center;
  background-size: 100% 100%;
  border: none;
  border-radius: 0;
  padding: 30px 25px 25px;
  text-align: center;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 36px;
  transition: all .4s ease;
  position: relative;
  overflow: visible;
}
.col-12:nth-child(2n) .link-card { transform: rotate(-1deg); }
.col-12:nth-child(3n) .link-card { transform: rotate(1.5deg); }
.col-12:nth-child(5n) .link-card { transform: rotate(-2deg); }
.link-card:hover {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.link-card .link-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -4px;
  border: none;
  background: transparent;
  transition: all .35s ease;
}
.link-card:hover .link-icon {
  background: transparent;
  border-color: transparent;
}
.link-card .link-icon svg { width: 40px; height: 40px; }
.link-card .link-icon svg path { fill: #000; }
.link-card h5 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
  color: #000;
  letter-spacing: 0.5px;
  font-style: italic;
}
.link-card .link-body {
  position: relative;
  z-index: 1;
}

/* ===== GARFIELD BUTTON ===== */
.btn-garfield {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 32px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 3px solid #000;
  border-radius: 0;
  background: #FF8C00;
  color: #000;
  transition: all .3s ease;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  font-style: italic;
}
.btn-garfield:hover {
  background: #FF6600;
  color: #000;
  transform: scale(1.05);
  border-color: #000;
}
.btn-garfield:active {
  transform: scale(0.97);
}
.btn-garfield svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.suit-icon { font-size: 16px; line-height: 1; }

/* ===== ADMIN LINK ===== */
.admin-link {
  display: inline-block;
  font-size: 20px;
  opacity: 0.15;
  transition: opacity .3s ease;
  text-decoration: none;
  filter: grayscale(1);
}
.admin-link:hover {
  opacity: 0.6;
  filter: grayscale(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .garfield-logo { width: 420px; height: 126px; }
  .link-card { padding: 30px 20px; justify-content: center; }
  .link-card .link-icon { width: 56px; height: 56px; }
  .link-card .link-icon svg { width: 32px; height: 32px; }
  .link-card h5 { font-size: 15px; }
  .btn-garfield { padding: 8px 26px; font-size: 13px; }
}
@media (max-width: 480px) {
  .garfield-logo { width: 300px; height: 90px; }
  .link-card { padding: 24px 14px; justify-content: center; }
  .link-card .link-icon { width: 44px; height: 44px; }
  .link-card .link-icon svg { width: 24px; height: 24px; }
  .link-card h5 { font-size: 13px; }
  .btn-garfield { padding: 6px 20px; font-size: 12px; }
}