* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section - 3 Column Layout */
.hero {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  background: #0a0a0a;
}

.hero-panel {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0a0a0a;
}

.hero-left {
  text-align: right;
  padding-left: 3rem;
  padding-right: 1rem;
}

.hero-right {
  text-align: left;
  padding-right: 3rem;
  padding-left: 1rem;
}

.hero-video-container {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  min-width: 0;
  overflow: hidden;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 70px);
  object-fit: contain;
  display: block;
}

/* Sol Panel Stilleri */
.panel-title {
  font-size: 2rem;
  color: #e63946;
  font-style: italic;
  margin-bottom: 0;
  font-weight: normal;
}

.panel-subtitle {
  font-size: 1.2rem;
  color: #e63946;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

.panel-section {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.panel-section .label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0.3rem;
}

.panel-section .value {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
}

.panel-section.actors {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

.panel-section.actors .label {
  color: #e63946;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

/* Sağ Panel Stilleri */
.panel-title-right {
  font-size: 1.8rem;
  color: #e63946;
  margin-bottom: 2rem;
  font-weight: normal;
}

.event-card {
  background: #1a1a1a;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.event-date {
  color: #e63946;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.event-venue {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.event-location {
  color: #e63946;
  font-size: 0.8rem;
}

.event-location i {
  margin-right: 0.3rem;
}

.tickets-section {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.tickets-label {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.ticket-btn {
  display: block;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.ticket-btn:hover {
  opacity: 0.8;
}

.ticket-btn.biletix {
  background: #fff;
  padding: 0.6rem 1rem;
}

.ticket-btn.biletix img {
  max-height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.ticket-btn.biletinial {
  background: #fff;
  padding: 0.6rem 1rem;
}

.ticket-btn.biletinial img {
  max-height: 35px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.contact-info {
  margin-top: 1rem;
}

.contact-label {
  display: block;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.contact-phone {
  color: #e63946;
  font-size: 1.3rem;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.about p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.services-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
}

.service-category {
  margin-bottom: 4rem;
}

.service-category h3 {
  font-size: 1.8rem;
  color: #ff6b35;
  margin-bottom: 2rem;
  text-align: center;
}

.service-category h3 i {
  margin-right: 10px;
}

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

.service-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #ff6b35;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #2c3e50;
  color: white;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ff6b35;
}

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

.contact-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-right: 15px;
  width: 20px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid transparent;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.15);
}

.contact-form button {
  background: #ff6b35;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1a252f;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-address h4 {
  color: #f39c12;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.address-info p {
  color: #ccc;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.address-info p i {
  color: #f39c12;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.map-container {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  border-radius: 8px;
}

.footer-logo h3 {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-links h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-social h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #ff6b35;
  width: 20px;
}

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

.social-links a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff6b35;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #ccc;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    flex-wrap: wrap;
  }

  .hero-video-container {
    order: 1;
    width: 100%;
    height: 100vh;
  }

  .hero-video-container video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .hero-panel {
    padding: 1rem;
    width: 50%;
  }

  .hero-left {
    order: 2;
    text-align: left;
    padding-left: 1rem;
    padding-right: 0.5rem;
  }

  .hero-right {
    order: 3;
    text-align: right;
    padding-left: 0.5rem;
    padding-right: 1rem;
  }

  .hero-left,
  .hero-right {
    flex: 0 0 50%;
  }

  .panel-title {
    font-size: 1.5rem;
  }

  .panel-title-right {
    font-size: 1.4rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-contact p {
    justify-content: center;
  }

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

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .about h2,
  .services h2,
  .contact h2 {
    font-size: 2rem;
  }
}