/* ✧ sashajewel ✧ Creative Theme with Full Vibe Support ✧ */

/* ------------------------- */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background 0.5s, color 0.5s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  padding: 0 12px;
  overflow-x: hidden;
  position: relative;
  color: #f5d4ff; /* default text */
  background: #0f1021; /* fallback background */
}

/* ------------------------- */
/* Header & Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  flex-wrap: wrap;
}

header h1 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
}

nav a:hover {
  opacity: 1;
}

/* ------------------------- */
/* Sections & Hero */
.section {
  padding: 60px 20px;
  text-align: center;
}

.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
}

.hero p {
  max-width: 600px;
  margin: 20px auto;
  opacity: 0.9;
}

/* ------------------------- */
/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

.art-card {
  text-align: center;
}

.art-card .art {
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.art-card .art:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 20px rgba(255,255,255,0.25);
}

.art-card .art img,
.art-card .art iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-title {
  margin: 10px 0;
}

/* ------------------------- */
/* Buttons */
button,
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: inherit;
  background: linear-gradient(135deg, #ff6ec7, #8e44ad);
  box-shadow: 0 0 10px rgba(255, 110, 199, 0.6);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

button:hover,
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

button:active,
.btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 20px rgba(255, 110, 199, 1);
}

/* ------------------------- */
/* Layout Helpers */
.vibe-container,
.btn-container {
  text-align: center;
  margin: 20px 0;
}

.about-content,
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.clicker-container {
  text-align: center;
  padding: 20px;
  margin: 40px auto;
  max-width: 300px;
  border-radius: 15px;
  background: inherit;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: inherit;
}

/* ------------------------- */
/* Contact page form */
.contact-section input,
.contact-section textarea {
  background: rgba(255,255,255,0.05);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 15px;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

/* ------------------------- */
/* Footer */
footer {
  text-align: center;
  padding: 20px;
  opacity: 0.8;
}

/* ------------------------- */
/* Quotes */
.quote {
  font-style: italic;
  opacity: 0.8;
  margin-top: 20px;
}

/* ------------------------- */
/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* ------------------------- */
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------- */
/* Mobile */
@media (max-width: 600px) {
  header { flex-direction: column; text-align: center; gap: 10px; }
  nav { justify-content: center; }
  .hero { padding: 60px 15px; }
  .hero h2 { font-size: 2rem; }
  button, .btn { display: block; width: 80%; margin: 15px auto; }
  .gallery { grid-template-columns: 1fr; }
}

/* ------------------------- */
/* Desktop */
@media (min-width: 900px) {
  .hero { padding: 120px 20px; }
  .gallery { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* ------------------------- */
/* ------------------------- */
/* Vibe system colors & backgrounds */
body.vibe-1 { background: linear-gradient(120deg, #1e1e2f, #3a2c5a, #ff9a9e); color: #f5d4ff; }
body.vibe-2 { background: linear-gradient(120deg, #ffe4d6, #ff9a9b, #9c1a6b); color: #9c1a6b; }
body.vibe-3 { background: linear-gradient(120deg, #a0d8f1, #6cb6e6, #002b5b); color: #002b5b; }
body.vibe-4 { background: linear-gradient(120deg, #0b3d0b, #1a7c1a, #c5f1c5); color: #c5f1c5; }
body.vibe-5 { background: linear-gradient(135deg, #ff7f50, #ffdc73, #4b0082); color: #000; }
body.vibe-6 { background: linear-gradient(120deg, #ff6f61, #ff9a85, #fff1e6); color: #fff1e6; }
body.vibe-7 { background: linear-gradient(120deg, #b3e5fc, #82d8ff, #0d47a1); color: #0d47a1; }
body.vibe-8 { background: linear-gradient(120deg, #2e003e, #6b0072, #ffb3ff); color: #ffb3ff; }
body.vibe-9 { background: linear-gradient(120deg, #fffae3, #ffd27f, #b35400); color: #b35400; }
body.vibe-10 { background: linear-gradient(120deg, #d0f0fd, #82e1f0, #003f5c); color: #003f5c; }

/* Vibe buttons inherit */
body.vibe-1 button, body.vibe-1 .btn { background: linear-gradient(135deg, #ff9a9e, #3a2c5a); color: inherit; }
body.vibe-2 button, body.vibe-2 .btn { background: linear-gradient(135deg, #ff9a9b, #9c1a6b); color: inherit; }
body.vibe-3 button, body.vibe-3 .btn { background: linear-gradient(135deg, #6cb6e6, #002b5b); color: inherit; }
body.vibe-4 button, body.vibe-4 .btn { background: linear-gradient(135deg, #1a7c1a, #c5f1c5); color: inherit; }
body.vibe-5 button, body.vibe-5 .btn { background: linear-gradient(135deg, #ff7f50, #4b0082); color: inherit; }
body.vibe-6 button, body.vibe-6 .btn { background: linear-gradient(135deg, #ff6f61, #fff1e6); color: inherit; }
body.vibe-7 button, body.vibe-7 .btn { background: linear-gradient(135deg, #82d8ff, #0d47a1); color: inherit; }
body.vibe-8 button, body.vibe-8 .btn { background: linear-gradient(135deg, #6b0072, #ffb3ff); color: inherit; }
body.vibe-9 button, body.vibe-9 .btn { background: linear-gradient(135deg, #ffd27f, #b35400); color: inherit; }
body.vibe-10 button, body.vibe-10 .btn { background: linear-gradient(135deg, #82e1f0, #003f5c); color: inherit; }