* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  font-family: 'Arial', sans-serif;
  background-image: url('../assets/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #222;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: width 0.3s ease;
  z-index: 1000;
}

.sidebar-header {
  text-align: center;
}

.logo {
  width: 100px;
  height: auto;
}

.studio-name {
  display: block;
  font-size: 1.5rem;
  margin-top: 10px;
}

.nav-links {
  margin-top: 40px;
}

.nav-links a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #00b4d8;
  color: white;
}

.main-content {
  margin-left: 250px;
  padding: 0;
}

.home-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background-image: url('../assets/background.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.home-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  padding: 14px 35px;
  background-image: url('../assets/button-texture.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent !important;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  box-shadow: none;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
  transition: all 0.1s ease;
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}


.cta-button:focus {
  outline: none;
  box-shadow: none;
}

.cta-button:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
  filter: brightness(1.1);
}



.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.about-text {
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.portfolio-item {
  width: 250px;
  text-align: center;
}

.portfolio-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background-color: #222;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sidebar {
    width: 0;
  }

  .main-content {
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-content h1 {
    font-size: 2.2rem;
  }

  .header-content .tagline {
    font-size: 1rem;
  }

  .portfolio-item {
    width: 200px;
  }
}

.divider {
  border: 0;
  height: 2px;
  background: #00b4d8;
  margin: 60px auto;
  width: 60%;
  border-radius: 1px;
}

#animated-text {
  border-right: 2px solid white;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50%, 100% { border-color: white; }
  25%, 75% { border-color: transparent; }
}

#animated-text-wrapper {
  display: block;
  margin: 20px 0;
  font-size: 1.1rem;
}

.site-footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  position: relative;
  margin-top: 50px;
  margin-left: 250px;
  width: calc(100% - 250px);
}

.error-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: white;
  min-height: 100vh;
}

.error-header h1 {
  font-size: 6rem;
  margin-bottom: 20px;
  color: #00b4d8;
}

.error-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.error-header p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 500px;
}

.error-header .cta-button {
  background-color: #00b4d8;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.error-header .cta-button:hover {
  background-color: #0096c7;
}

.contact-options {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.contact-right {
  flex-shrink: 0;
}
