:root {
  --black: #000;
  --white: #fff;
  --accent: #e53935;
  --light-blue: #4db8ff;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #111; /* Will be replaced with a background image later */
  color: var(--white);
}

a { color: var(--light-blue); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

/* Header */
header {
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* left nav and right logo */
  gap: 16px;
}
.nav-left {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-left a {
  font-weight: 600;
  color: var(--white);
}

.logo-right img {
  display: block;
  height: 56px;
  width: auto;
}

/* Main (empty for now; placeholder layout for future 2 columns) */
main {
  flex: 1 1 auto;
  padding: 0; /* Remove padding to allow image to fill width */
  display: flex;
  flex-direction: column;
}

.two-col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.left-graphic {
  flex: 1;
}

.left-graphic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.right-text {
  flex: 1.5;
}

.left-form {
  flex: 1.5;
}

.right-content {
  flex: 1;
}

.right-graphic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 16px;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #c62828;
  text-decoration: none;
}

/* Introduction Form Styles */
.introduction-form {
  margin-top: 30px;
  background: #222;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--light-blue);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 2px rgba(77, 184, 255, 0.2);
}

.introduction-form .cta-button {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.alternative {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 800px) {
  .two-col {
    flex-direction: column;
  }
  .two-col.reverse-on-mobile {
    flex-direction: column-reverse;
  }
}

.top-image-container {
  width: 100%;
}

.top-image {
  width: 100%;
  height: auto;
  display: block;
}
/* Team Achievement Section */
.team-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.team-achievement-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.section-divider {
  border: 0;
  height: 1px;
  background: #333;
  margin: 60px 0;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
  aspect-ratio: 16/9;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.studio-logo-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.studio-logo {
  max-width: 250px;
  height: auto;
  opacity: 0.9;
}

/* Studio Info */
.studio-header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.studio-header h2 {
  margin: 0 0 10px 0;
  color: var(--white);
  font-size: 2.5rem;
}

.studio-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.studio-socials a {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.studio-socials img {
  height: 24px;
  width: auto;
  transition: transform 0.2s, opacity 0.2s;
}

.studio-socials a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

.studio-info h3 {
  color: var(--accent);
  margin: 25px 0 10px 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.studio-info p {
  line-height: 1.6;
  opacity: 0.9;
}

.studio-info ul {
  padding-left: 20px;
  margin: 10px 0;
}

.studio-info li {
  margin-bottom: 5px;
  opacity: 0.9;
}

.project-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-links a {
  text-decoration: underline;
  opacity: 0.8;
}

.project-links a:hover {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 900px) {
  .team-achievement-section {
    grid-template-columns: 1fr;
  }
  
  .studio-header h2 {
    font-size: 2rem;
  }
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-links img {
  height: 24px;
  width: auto;
  transition: transform 0.2s, opacity 0.2s;
}
.social-links a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.foot-note { opacity: 0.85; }
