/* Minimal Static Wallpaper Gallery CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff3aa6;
  --secondary: #6a0dad;
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #666666;
  --border: #e0e0e0;
}

html {
  min-height: 100vh;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 500;
  backdrop-filter: blur(8px);
}

.brand {
  flex: 1;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  width: 36px;
  height: 36px;
}

.brand-text {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text);
}

/* Main content */
main {
  padding-top: 76px;
  padding-bottom: 120px;
}

/* Site intro */
.site-intro {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 58, 149, 0.02));
}

.site-intro h1 {
  font-size: clamp(28px, 6vw, 48px);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-intro p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery sections */
.gallery-section {
  padding: 40px 16px;
}

.gallery-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 58, 149, 0.2);
}

.scroll-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 58, 149, 0.4);
}

.scroll-btn:active {
  transform: scale(0.95);
}

.gallery-wrap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.gallery-wrap::-webkit-scrollbar {
  height: 6px;
}

.gallery-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-wrap::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Cards */
.card {
  flex-shrink: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(255, 58, 149, 0.1);
  scroll-snap-align: center;
}

.card.ratio-9-16 {
  aspect-ratio: 9 / 16;
  width: 180px;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(255, 58, 149, 0.25);
}

.card:active {
  transform: translateY(-2px) scale(1.01);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reviews section */
.reviews {
  padding: 60px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 36px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.review {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  text-align: left;
}

.review:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(255, 58, 149, 0.15);
}

.stars {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.review p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.review-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(240, 240, 245, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border 0.3s ease;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: var(--muted);
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 58, 149, 0.02);
}

.review-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 58, 149, 0.4);
}

.btn:active {
  transform: translateY(0);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-columns {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.footer-columns h2 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.footer-columns a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-columns a:hover {
  color: var(--primary);
}

.footer-columns p {
  font-size: 13px;
  line-height: 1.6;
}

.credits {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-wrap {
    gap: 12px;
  }

  .card.ratio-9-16 {
    width: 160px;
  }

  .review-form {
    padding: 24px;
  }

  .reviews h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .site-intro {
    padding: 40px 16px;
  }

  .site-intro h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .site-intro p {
    font-size: 14px;
  }

  .gallery-section {
    padding: 30px 12px;
  }

  .gallery-controls {
    gap: 8px;
  }

  .scroll-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .card.ratio-9-16 {
    width: 140px;
  }

  .reviews {
    padding: 40px 16px;
  }

  .review-grid {
    gap: 16px;
  }

  .review {
    padding: 16px;
  }

  .review-form {
    padding: 20px;
  }

  .review-form input,
  .review-form textarea {
    margin-bottom: 12px;
    padding: 10px 12px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .footer-columns {
    gap: 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.site-description{
  max-width:520px;
  margin:40px auto;
  text-align:center;
  padding:0 20px;
}

/* Image protection */
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.site-description h1{
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
}

.site-description p{
  font-size:15px;
  color:#666;
  line-height:1.5;
}