/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #374151;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 2rem;
  height: 2rem;
  color: #ebd435;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.desktop-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: #ebd435;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  width: 1.5rem;
  height: 2px;
  background: #fff;
  margin: 2px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.mobile-link {
  display: block;
  padding: 0.5rem 0;
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ebd435;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  z-index: 10;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.prev-slide {
  left: 1rem;
}

.next-slide {
  right: 1rem;
}

.slide-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 0.75rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ebd435;
  transform: scale(1.25);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 1rem;
}

.hero-header {
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  border: 1px solid #6b7280;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.hero-badge span {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: #d1d5db;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.title-accent {
  color: #ebd435;
}

.title-white {
  color: #fff;
}

.hero-cta {
  background: #ebd435;
  color: #000;
  padding: 2rem;
  max-width: 28rem;
  margin: 0 auto;
  transition: all 1s ease;
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-description {
  margin-bottom: 1rem;
}

.cta-button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 500;
}

.cta-button:hover {
  background: #374151;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 30;
}

.progress-fill {
  height: 100%;
  background: #ebd435;
  transition: width 0.3s ease-linear;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.title-highlight {
  background: #ebd435;
  color: #000;
  padding: 0.25rem 1rem;
}

.section-description {
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
}

.text-accent {
  color: #ebd435;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: #111827;
}

.section-content {
  max-width: 64rem;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
}

.about-text {
  color: #d1d5db;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 1.5rem;
}

/* Workshops Section */
.workshops-section {
  padding: 5rem 0;
  background: #000;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.workshop-card {
  background: #111827;
  border: 1px solid #374151;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.card-icon {
  color: #ebd435;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card-description {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.card-list {
  list-style: none;
  color: #9ca3af;
  font-size: 0.875rem;
}

.card-list li {
  margin-bottom: 0.25rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: #111827;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  text-align: center;
}

.service-icon {
  background: #ebd435;
  color: #000;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #d1d5db;
}

/* Portfolio Section */
.portfolio-section {
  padding: 5rem 0;
  background: #000;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: none;
  background: #1f2937;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: #ebd435;
  color: #000;
  font-weight: 600;
}

.filter-btn:hover {
  background: #374151;
}

.filter-btn.active:hover {
  background: #ebd435;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  transition: all 0.3s ease;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  border-color: #ebd435;
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .card-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .image-overlay {
  opacity: 1;
}

.overlay-text {
  background: #ebd435;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
}

.card-content .card-title {
  transition: color 0.3s ease;
}

.portfolio-card:hover .card-content .card-title {
  color: #ebd435;
}

.card-content .card-description {
  color: #9ca3af;
  font-size: 0.875rem;
}

.portfolio-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ebd435;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #d1d5db;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #111827;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ebd435;
  margin-bottom: 1.5rem;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: #ebd435;
  margin-top: 0.25rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #d1d5db;
}

.social-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ebd435;
}

.social-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background: #1f2937;
  border: 1px solid #4b5563;
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ebd435;
}

.submit-btn {
  background: #ebd435;
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background: rgba(235, 212, 53, 0.9);
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid #1f2937;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #ebd435;
}

.footer-text {
  font-weight: 700;
}

.footer-links {
  text-align: right;
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  gap: 1rem;
}

.legal-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ebd435;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 64rem;
  width: 100%;
  background: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.modal-body {
  padding: 1rem;
}

.modal-body img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.modal-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-info p {
  color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .social-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .slide-nav {
    padding: 0.5rem;
  }

  .prev-slide {
    left: 0.5rem;
  }

  .next-slide {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    padding: 1.5rem;
  }

  .portfolio-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
.nav-link:focus {
  outline: 2px solid #ebd435;
  outline-offset: 2px;
}

/* Alert Messages */
.alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.alert-success {
  background-color: #10b981;
  color: #fff;
  border: 1px solid #059669;
}

.alert-error {
  background-color: #ef4444;
  color: #fff;
  border: 1px solid #dc2626;
}

.alert strong {
  font-weight: 700;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #ef4444;
}

.form-group input:valid,
.form-group textarea:valid {
  border-color: #10b981;
}

/* Loading state for form */
.form.loading {
  opacity: 0.7;
  pointer-events: none;
}

.form.loading .submit-btn {
  background-color: #6b7280;
  cursor: not-allowed;
}

/* Success state for submit button */
.submit-btn.success {
  background-color: #10b981 !important;
}

/* Responsive adjustments for alerts */
@media (max-width: 768px) {
  .alert {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}
