/*
Theme Name: RuleOne Studios
Theme URI: https://ruleonestudios.com
Author: RuleOne Studios
Author URI: https://ruleonestudios.com
Description: A modern one-page theme for RuleOne Studios - Epic Sports Rap & Sync-Ready Music
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ruleone-studios
Tags: one-page, music, dark, responsive, custom-background, custom-logo
*/

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
  /* RuleOne Studios Brand Colors */
  /* Green: #00a79d | Grey: #6d6e71 | White: #ffffff | Black: #232020 */
  
  --background: hsl(0, 5%, 13%);
  --foreground: hsl(0, 0%, 100%);
  
  --card: hsl(0, 5%, 10%);
  --card-foreground: hsl(0, 0%, 100%);
  
  --primary: hsl(174, 100%, 33%);
  --primary-foreground: hsl(0, 0%, 100%);
  
  --secondary: hsl(225, 2%, 20%);
  --secondary-foreground: hsl(0, 0%, 100%);
  
  --muted: hsl(225, 2%, 20%);
  --muted-foreground: hsl(225, 2%, 55%);
  
  --accent: hsl(174, 100%, 33%);
  --accent-foreground: hsl(0, 0%, 100%);
  
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);
  
  --border: hsl(225, 2%, 25%);
  --input: hsl(225, 2%, 25%);
  --ring: hsl(174, 100%, 33%);
  
  --radius: 0.25rem;
  
  /* Custom design tokens */
  --glow-primary: 0 0 15px hsla(174, 100%, 33%, 0.3);
  --glow-primary-strong: 0 0 25px hsla(174, 100%, 33%, 0.4);
  --gradient-hero: linear-gradient(180deg, hsla(0, 5%, 13%, 0) 0%, hsl(0, 5%, 13%) 100%);
  --gradient-card: linear-gradient(135deg, hsl(0, 5%, 15%) 0%, hsl(0, 5%, 8%) 100%);
  
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================
   Base Styles
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--foreground);
}

.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }

.text-glow {
  text-shadow: var(--glow-primary);
}

.box-glow {
  box-shadow: var(--glow-primary);
}

.gradient-card {
  background: var(--gradient-card);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes subtleShimmer {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-10px) translateX(-50%); }
}

.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-pulse-glow {
  animation: subtleShimmer 3s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsla(174, 100%, 28%, 1);
  box-shadow: var(--glow-primary);
}

.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--glow-primary);
}

.btn-hero:hover {
  background-color: hsla(174, 100%, 38%, 1);
  box-shadow: var(--glow-primary-strong);
  transform: scale(1.02);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
  border: 1px solid var(--border);
}

.btn-hero-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--glow-primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 0;
  transition: all 0.5s ease;
}

.nav.scrolled {
  background-color: hsla(0, 5%, 13%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(225, 2%, 25%, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .nav-logo img {
    height: 3rem;
  }
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.2em;
}

@media (min-width: 768px) {
  .nav-logo-text {
    font-size: 1.25rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsla(0, 0%, 100%, 0.8);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background-color 0.3s;
}

.nav-cta:hover {
  background-color: hsla(174, 100%, 28%, 1);
}

/* Mobile Menu */
.nav-toggle {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsla(225, 2%, 25%, 0.5);
  margin-top: 1rem;
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .nav-link {
  font-size: 1.125rem;
}

.mobile-menu .nav-cta {
  justify-content: center;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(0, 5%, 13%, 0.6);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-tagline {
  font-family: var(--font-body);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1rem;
  }
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--muted-foreground);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.7);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: hsla(0, 0%, 100%, 0.5);
}

/* ============================================
   Music Player Section
   ============================================ */
.music-section {
  padding: 6rem 0;
  background-color: var(--card);
}

.music-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .music-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.now-playing {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.player-album-art {
  width: 16rem;
  height: 16rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: var(--glow-primary);
}

@media (min-width: 768px) {
  .player-album-art {
    width: 18rem;
    height: 18rem;
  }
}

.player-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.player-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.player-album {
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
}

.player-progress {
  width: 100%;
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary);
  width: 35%;
  transition: width 0.1s;
}

.progress-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.player-controls button {
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s;
}

.player-controls button:hover {
  color: var(--primary);
}

.play-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--primary) !important;
  color: var(--primary-foreground) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-primary);
}

.play-btn:hover {
  background-color: hsla(174, 100%, 38%, 1) !important;
  box-shadow: var(--glow-primary-strong);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 24rem;
  margin: 0 auto;
}

.volume-slider {
  flex: 1;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
  overflow: hidden;
}

.volume-fill {
  height: 100%;
  background-color: var(--primary);
  width: 75%;
}

/* Playlist */
.playlist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.playlist-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: hsla(225, 2%, 20%, 0.3);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
}

.playlist-item:hover {
  border-color: var(--border);
  background-color: hsla(225, 2%, 20%, 0.5);
}

.playlist-item.active {
  background-color: hsla(174, 100%, 33%, 0.1);
  border-color: hsla(174, 100%, 33%, 0.3);
}

.playlist-item.active .playlist-item-title {
  color: var(--primary);
}

.playlist-item-cover {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  object-fit: cover;
}

.playlist-item-info {
  flex: 1;
}

.playlist-item-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.playlist-item-album {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.playlist-item-duration {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.playlist-item-play {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.playlist-item:hover .playlist-item-play {
  background-color: hsla(174, 100%, 33%, 0.2);
  color: var(--primary);
}

.playlist-item.active .playlist-item-play {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 6rem 0;
  background-color: var(--background);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(20%) brightness(0.9) contrast(1.1) saturate(0.75);
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .about-image img {
    height: 600px;
    object-position: center;
  }
}

.about-image:hover img {
  filter: none;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(174, 100%, 33%, 0.1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.about-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsla(0, 5%, 13%, 0.2), transparent);
}

.about-decorator-1 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 12rem;
  height: 12rem;
  border: 2px solid hsla(174, 100%, 33%, 0.3);
  border-radius: var(--radius);
  z-index: -1;
}

.about-decorator-2 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: hsla(174, 100%, 33%, 0.1);
  border-radius: var(--radius);
  z-index: -1;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-title {
  text-align: center;
}

@media (min-width: 1024px) {
  .about-title {
    text-align: left;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(225, 2%, 25%, 0.5);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid hsla(174, 100%, 33%, 0.5);
  border-radius: var(--radius);
  color: var(--primary);
  font-size: 0.875rem;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
  padding: 6rem 0;
  background-color: var(--card);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-subtitle {
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 1rem auto 0;
}

.services-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  position: relative;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.5s;
}

.service-card:hover {
  border-color: hsla(174, 100%, 33%, 0.5);
  box-shadow: 0 0 30px hsla(174, 100%, 33%, 0.15);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: hsla(174, 100%, 33%, 0.1);
  color: var(--primary);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.service-subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .service-title {
    font-size: 1.875rem;
  }
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  padding: 6rem 0;
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-title {
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-title {
    text-align: left;
  }
}

.contact-description {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.contact-item-value:hover {
  color: var(--primary);
}

.contact-streaming {
  padding-top: 2rem;
}

.contact-streaming h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.streaming-links {
  display: flex;
  gap: 1rem;
}

.streaming-link {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(0, 0%, 100%, 0.7);
  transition: all 0.3s;
}

.streaming-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--glow-primary);
}

/* Contact Form */
.contact-form {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsla(0, 0%, 100%, 0.7);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: hsla(225, 2%, 20%, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  background-color: hsla(225, 2%, 30%, 1);
  color: hsla(0, 0%, 100%, 0.4);
  cursor: not-allowed;
  box-shadow: none;
}

.form-submit:disabled:hover {
  background-color: hsla(225, 2%, 30%, 1);
  box-shadow: none;
  transform: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 2rem 0;
  background-color: var(--card);
  border-top: 1px solid hsla(225, 2%, 25%, 0.5);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  transition: color 0.3s;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-logo {
    text-align: left;
  }
}

.footer-logo:hover {
  color: var(--primary);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-nav {
    gap: 1.5rem;
  }
}

.footer-link {
  color: hsla(0, 0%, 100%, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 0.75rem;
  }
}

.footer-link:hover {
  color: var(--primary);
}

.footer-legal {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-legal {
    text-align: right;
  }
}

.footer-legal a {
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ============================================
   SVG Icons (inline styles)
   ============================================ */
.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 2.5rem;
  height: 2.5rem;
}

/* ============================================
   Responsive Utilities
   ============================================ */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}


/* ============================================
   GHL Widget Theme Override
   ============================================ */
#chat-widget-container button,
#chat-widget-container .chat-widget-button,
[data-widget-id="695d79361dcd0b27693b7f55"] button {
  background-color: hsl(174, 100%, 33%) !important;
  background: hsl(174, 100%, 33%) !important;
}

#chat-widget-container button:hover,
#chat-widget-container .chat-widget-button:hover,
[data-widget-id="695d79361dcd0b27693b7f55"] button:hover {
  background-color: hsl(174, 100%, 28%) !important;
  background: hsl(174, 100%, 28%) !important;
}



