/* -----------------------------------
   GLOBAL STYLE — clean, cinematic
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

body {
  background: #0b0b0d;
  color: #e6e6e6;
  line-height: 1.6;
  text-align: center;
}

/* Gold highlight */
:root {
  --gold: #d4a64e;
  --dark: #0b0b0d;
  --darker: #060608;
  --accent: #1a1a20;
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}

/* -----------------------------------
   HEADER / HERO
----------------------------------- */
#home {
  padding: 120px 20px 80px;
  text-align: center;
  background: linear-gradient(180deg, #000 0%, #111 100%);
}

#home img {
  width: 180px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 100, 0.4));
}

/* -----------------------------------
   NAV MENU — transparent, modern, sticky
----------------------------------- */
#menu {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(5, 5, 10, 0.7);
  backdrop-filter: blur(10px);
  text-align: center;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#menu a {
  margin: 0 18px;
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

#menu a:hover,
#menu a.active {
  color: var(--gold);
}

/* -----------------------------------
   TITLES
----------------------------------- */
h1 {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  font-size: 22px;
  color: #aa730c;
  margin-top: 40px;
  margin-bottom: 10px;
}

p {
  max-width: 750px;
  margin: 15px auto;
  font-size: 17px;
  color: #dcdcdc;
}

li {
  list-style: none;
}

/* -----------------------------------
   SECTIONS
----------------------------------- */
section,
#about,
#games,
#movies,
#sound-design,
#mix,
#services,
#contact {
  padding: 70px 20px;
  text-align: center;
}

#services {
  background: #101014;
}

/* -----------------------------------
   GRID LAYOUTS
----------------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 40px;
  width: 95%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-item {
  background: #15151a;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 166, 78, 0.4);
}

.platforms a {
  color: var(--gold);
  font-size: 14px;
}

/* -----------------------------------
   VIDEO RESPONSIVE
----------------------------------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-top: 10px;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* -----------------------------------
   BUTTONS
----------------------------------- */
.cta-button,
.secondary-button,
button {
  padding: 14px 26px;
  border: none;
  font-size: 16px;
  margin: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  background: var(--gold);
  color: #111;
  font-weight: bold;
}

.cta-button:hover {
  filter: brightness(1.1);
}

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

.secondary-button:hover {
  background: var(--gold);
  color: #111;
}

/* -----------------------------------
   FOOTER
----------------------------------- */
footer {
  padding: 30px;
  background: #0a0a0c;
  text-align: center;
  color: #aaa;
  margin-top: 80px;
}

/* -----------------------------------
   MOBILE FIXES
----------------------------------- */
@media(max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  #menu a {
    margin: 0 10px;
    font-size: 12px;
  }
}
