/* ========================================
   Artisound Studio — Shared Stylesheet
   ======================================== */

:root {
  --bg-main: #0a192f;
  --bg-card: #112240;
  --accent: #38bdf8;
  --text-main: #e5e7eb;
  --text-muted: #94a3b8;
  --border-soft: rgba(255,255,255,0.08);
}

/* Reset & Global */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Layout Utilities */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section {
  margin-bottom: 80px;
}

/* Header & Navigation */

header {
  background: rgba(10, 25, 47, 0.95);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav strong {
  font-size: 1.1rem;
  font-weight: 600;
}

nav a {
  margin-left: 20px;
  font-weight: 500;
  padding-bottom: 4px;
}

nav a.active {
  border-bottom: 2px solid var(--accent);
}

nav a:hover {
  color: var(--accent);
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--accent);
  color: #0a192f;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #7dd3fc;
}

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

.btn.secondary:hover {
  background: var(--accent);
  color: #0a192f;
}

/* Hero Section */

.hero {
  text-align: left;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 650px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Grid & Cards */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card h3 {
  margin-bottom: 12px;
}

/* Footer */

footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer nav {
  margin-bottom: 10px;
}

footer a {
  color: var(--text-muted);
  margin: 0 10px;
}

footer a:hover {
  color: var(--accent);
}

/* Media Queries */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin: 10px 10px 0 0;
  }

  .container {
    padding: 60px 20px;
  }
}
/* ========================================
   Artisound Studio — Shared Stylesheet
   ======================================== */

:root {
  --bg-main: #0a192f;
  --bg-card: #112240;
  --accent: #38bdf8;
  --text-main: #e5e7eb;
  --text-muted: #94a3b8;
  --border-soft: rgba(255,255,255,0.08);
}

/* Reset & Global */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Layout Utilities */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section {
  margin-bottom: 80px;
}

/* Header & Navigation */

header {
  background: rgba(10, 25, 47, 0.95);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav strong {
  font-size: 1.1rem;
  font-weight: 600;
}

nav a {
  margin-left: 20px;
  font-weight: 500;
  padding-bottom: 4px;
}

nav a.active {
  border-bottom: 2px solid var(--accent);
}

nav a:hover {
  color: var(--accent);
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--accent);
  color: #0a192f;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #7dd3fc;
}

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

.btn.secondary:hover {
  background: var(--accent);
  color: #0a192f;
}

/* Hero Section */

.hero {
  text-align: left;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 650px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Grid & Cards */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card h3 {
  margin-bottom: 12px;
}

/* Footer */

footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer nav {
  margin-bottom: 10px;
}

footer a {
  color: var(--text-muted);
  margin: 0 10px;
}

footer a:hover {
  color: var(--accent);
}

/* Media Queries */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin: 10px 10px 0 0;
  }

  .container {
    padding: 60px 20px;
  }
}
