/* Global Reset & Dark Theme */
:root {
  --bg-color: #0f0f0e;
  --card-bg: #161614;
  --text-main: #e6e6e6;
  --text-muted: #999999;
  --gold: #c5a059;
  --gold-hover: #dfb76c;
  --border-dark: #262624;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
header {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-color);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 60px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  background: transparent;
}

.btn-gold:hover {
  background-color: var(--gold);
  color: var(--bg-color);
}

/* Main Hero Section with Background Image */
.hero-section {
  flex: 1;
  width: 100%;
  position: relative;
  background-image: linear-gradient(rgba(15, 15, 14, 0.85), rgba(15, 15, 14, 0.85)), url('studio-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 3rem;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.subheading-gold {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero-description {
  v: var(--text-muted);
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Global Footer Styles */
footer {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 3rem 2rem 3rem;
  color: var(--text-main);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: 25vw;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a, .footer-contact-text {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-text {
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.btn-gold-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  background: transparent;
}

.btn-gold-outline:hover {
  background-color: var(--gold);
  color: var(--bg-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-section {
    padding: 3rem 1.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand img {
    width: 50vw;
  }
  footer {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
}