/*
Theme Name: Local ARTbeat
Theme URI: https://localartbeat.com/
Author: Your Name
Author URI: https://localartbeat.com/
Description: A modern, glassmorphic WordPress theme for Local ARTbeat, featuring video support, app showcase, support, and news pages.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: localartbeat
Tags: glassmorphism, modern, responsive, video, app, news, support
*/

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #10101a;
  color: #fff;
}

/* Glass card base style */
.glass-card {
  background: rgba(24, 26, 38, 0.7);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Accent gradients */
.gradient-accent {
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  color: #222;
}
.gradient-blue {
  background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
  color: #fff;
}
.gradient-purple {
  background: linear-gradient(90deg, #a770ef 0%, #f6d365 100%);
  color: #fff;
}
.gradient-green {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #222;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 0;
}

/* Logo serif accent */
.logo-accent {
  font-family: 'Playfair Display', serif;
  color: #ffcc33;
  font-weight: 700;
}

/* App links (store badges) */
.app-links {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 0 0;
  flex-wrap: wrap;
  align-items: center;
}
.app-links a {
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.15s;
}
.app-links a:hover {
  transform: scale(1.05);
}

/* Video grid and cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.video-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.video-embed iframe, .video-embed video {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* Screenshot grid */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.screenshot-card img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

/* Blog/news list */
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.blog-post {
  padding: 1.5rem;
}
.post-meta {
  font-size: 0.95em;
  color: #bbb;
  margin-bottom: 0.5rem;
}
.post-excerpt {
  margin-bottom: 1rem;
}

/* Footer and header */
.site-footer, .site-header {
  margin: 0 auto 2rem auto;
  max-width: 900px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-content, .header-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.site-logo {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}
.site-nav {
  flex: 1;
  text-align: center;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.15s;
}
.site-nav a:hover {
  color: #ffcc33;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .glass-card {
    padding: 1rem;
  }
  .site-header, .site-footer {
    padding: 1rem;
  }
  .footer-content, .header-content {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .site-logo {
    font-size: 1.4rem;
  }
  .site-nav ul {
    gap: 1rem;
  }
  .app-links {
    gap: 0.5rem;
  }
}
