/* ============================================
   LAIDBACK LIZARD LINKTREE STYLES
   Based on beatcrafterz.com brand identity
   ============================================ */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Font */
@font-face {
  font-family: 'Wallman';
  src: url('laidback-lizard-font.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  /* Brand Colors from beatcrafterz.com */
  --primary-green: #003d12;
  --accent-green: rgb(22, 163, 74);
  --light-green: rgba(22, 163, 74, 0.2);
  --white: #ffffff;
  --black: #000000;
  --gray: #666666;

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-image: url('lizard-skin.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #000000;
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: auto;
  position: relative;
}

/* Gradient Fade Effect over Lizard Skin */
.lizard-skin-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 26, 10, 0.65) 50%, rgba(0, 61, 18, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Custom Cursor - Disabled */
#cursor {
  display: none;
}

/* Main Container */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: var(--spacing-md);
  position: relative;
  z-index: 2;
}

.content {
  text-align: center;
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Logo Container */
.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-lg);
  z-index: 10;
}

.logo-placeholder {
  position: relative;
  z-index: 10;
}

.peace-logo {
  width: 250px;
  height: auto;
  margin-bottom: var(--spacing-sm);
  animation: gentle-pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--accent-green));
  position: relative;
  z-index: 10;
}

.brand-name {
  font-family: 'Wallman', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 30px;
  color: var(--accent-green);
  letter-spacing: 0.02em;
  opacity: 0.95;
}

/* Glow Animation */
.logo-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
  opacity: 0.3;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes gentle-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.2;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1.2);
  }
}

/* Link Buttons */
.links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.link-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(22, 163, 74, 0.3), transparent);
  transition: left var(--transition-slow);
}

.link-button:hover::before {
  left: 100%;
}

.link-button:hover {
  background: var(--accent-green);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
  border-color: var(--white);
}

.link-button:active {
  transform: scale(1.05);
}

.link-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Footer */
.footer {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(22, 163, 74, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-shop-link {
  font-size: 0.875rem;
  color: var(--gray);
  text-decoration: none;
  font-weight: 400;
  transition: color var(--transition-normal);
}

.footer-shop-link:hover {
  color: var(--accent-green);
}

.footer p {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  #cursor {
    display: none;
  }

  main {
    padding: var(--spacing-md);
  }

  .brand-name {
    font-size: 2.2rem;
  }

  .peace-logo {
    width: 220px;
    height: auto;
  }

  .link-button {
    width: 75px;
    height: 75px;
  }

  .link-icon {
    width: 36px;
    height: 36px;
  }

  .links {
    gap: 1.25rem;
  }

  .tagline {
    font-size: 1.05rem;
  }

  .footer p {
    font-size: 0.875rem;
  }

  .footer-shop-link {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.8rem;
  }

  .peace-logo {
    width: 180px;
    height: auto;
  }

  .links {
    gap: 1rem;
  }

  .link-button {
    width: 65px;
    height: 65px;
  }

  .link-icon {
    width: 28px;
    height: 28px;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .footer p {
    font-size: 0.875rem;
  }

  .footer-shop-link {
    font-size: 0.875rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  .link-button {
    border: 1px solid black;
    color: black;
  }

  #cursor,
  .logo-glow {
    display: none;
  }
}
