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

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
}

/* Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 100;
  padding: 20px;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 36pt;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.7;
}

/* Social Media Icons */
.social-icon {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s;
  vertical-align: middle;
}

.social-icon:hover {
  opacity: 0.7;
}

.icon-instagram {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #000;
  border-radius: 6px;
  position: relative;
}

.icon-instagram::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.icon-instagram::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 7px;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}

.icon-imdb {
  display: inline-block;
  width: 52px;
  height: 28px;
  background: #000;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  line-height: 28px;
  font-size: 12px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.image-grid {
  display: flex;
  gap: 20px;
}

.image-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  flex: 1;
  min-width: 250px;
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 33%;
  opacity: 1;
  transition: opacity 0.3s;
}

.image-item:hover .image-overlay {
  opacity: 0;
}

.overlay-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
.section {
  display: none;
  padding: 40px 20px;
  max-width: 800px;
  margin: 80px auto 0;
}

.section.active {
  display: block;
}

.back-btn {
  background: none;
  border: 1px solid #000;
  padding: 10px 20px;
  cursor: pointer;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s;
}

.back-btn:hover {
  background-color: #f0f0f0;
}

/* Typography */
h1 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

h2 {
  font-size: 18px;
  margin: 25px 0 10px 0;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

p {
  margin-bottom: 15px;
  line-height: 1.6;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 5px;
}

/* Video Container */
.video-container {
  border: 1px solid #000;
  height: 400px;
  margin-bottom: 20px;
  background: #f9f9f9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Portfolio Gallery Styles */
.category-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.category-filter button {
  padding: 8px 16px;
  background: none;
  border: 1px solid #000;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: all 0.3s;
}

.category-filter button:hover {
  background: #f0f0f0;
}

.category-filter button.active {
  background: #000;
  color: #fff;
}

.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  height: 250px;
  flex-grow: 1;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  transition: border-color 0.3s;
}

.gallery-item img {
  height: 100%;
  width: auto;
  min-width: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  border-color: #000;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 10px;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 10px;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}

.lightbox-caption {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.4;
  max-width: 80%;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 15px;
  border-radius: 20px;
}

/* Form Styles */
#contact-form {
  margin-bottom: 30px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #000;
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

#contact-form textarea {
  resize: vertical;
}

#contact-form button {
  padding: 12px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

#contact-form button:hover {
  background-color: #333;
}

#contact-form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Alert Messages */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert ul {
  margin-top: 10px;
  padding-left: 20px;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .image-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .image-item {
    min-width: 300px;
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  .image-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .image-item {
    min-width: 250px;
    max-width: 350px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 15px;
  }

  .logo {
    font-size: 24pt;
  }

  .social-links {
    gap: 15px;
  }
  
  .main-content {
    padding: 20px 10px;
  }
  
  .image-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .image-item {
    width: 80vw;
    max-width: 400px;
  }
  
  .section {
    padding: 20px 15px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
    transform: translateY(-50%);
  }

  .lightbox-next {
    right: 10px;
    transform: translateY(-50%);
  }
}