/* New Hero Section Styles */
.new-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  background-color: transparent;
  color: #ffffff;
  overflow: hidden;
  z-index: 10;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Blur Effect */
.hero-bg-blur {
  position: absolute;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  filter: blur(64px);
  opacity: 0.3;
  pointer-events: none;
  transform: translateZ(0) translate3d(0, 0, 0);
}

.hero-bg-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.25);
}

/* Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1536px;
  width: 100%;
}

/* Left Column - Text Content */
.hero-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo Wrapper */
.hero-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease-out;
}

.hero-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(220, 83, 16, 0.6))
    drop-shadow(0 0 20px rgba(220, 83, 16, 0.4)) brightness(1.1) contrast(1.1);
  transition: transform 0.3s ease;
  margin-bottom: 0.5rem;
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 20px rgba(220, 83, 16, 0.8))
    drop-shadow(0 0 30px rgba(220, 83, 16, 0.6)) brightness(1.2) contrast(1.15);
}

.hero-tagline {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  margin: 0;
  letter-spacing: 0.05em;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Carbon Footprint Message */
.hero-carbon-message {
  margin: 2rem 0 0 0;
  text-align: left;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-carbon-message p {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero-carbon-message .highlight-text {
  background: linear-gradient(90deg, #dc5310 0%, #ff6b35 50%, #dc5310 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  animation: gradientShift 2s ease-in-out infinite;
}

.hero-carbon-message .scramble-char {
  color: #dc5310;
  opacity: 0.8;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Badge (keeping for potential future use) */
.hero-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0.25rem;
  background-color: #dc5310;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Title */
.hero-title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-family: "Space Colony", sans-serif;
}

/* Subtitle */
.hero-subtitle {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* Buttons Container */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* Primary Button */
.hero-btn-primary {
  flex-grow: 1;
  padding: 0.75rem 1.25rem;
  text-align: center;
  letter-spacing: 0.025em;
  border-radius: 9999px;
  color: white;
  background-color: #dc5310;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  font-weight: 500;
}

.hero-btn-primary:hover {
  background-color: #ff5722;
}

.hero-btn-primary:active {
  background-color: #b8440d;
}

.hero-btn-primary:disabled {
  background-color: #a8a29e;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Secondary Button */
.hero-btn-secondary {
  flex-grow: 1;
  padding: 0.75rem 1.25rem;
  text-align: center;
  letter-spacing: 0.025em;
  border-radius: 9999px;
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
  display: inline-block;
  box-shadow: inset 0 0 0 1px #ffffff;
  transition: all 0.2s;
  font-size: 1rem;
  font-weight: 500;
}

.hero-btn-secondary:hover {
  box-shadow: inset 0 0 0 1px #dc5310;
  color: #dc5310;
}

.hero-btn-secondary:active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Right Column - Content Placeholder */
.hero-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  position: relative;
}

/* Hero Carousel Styles */
.hero-carousel-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: relative;
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
}

.hero-card {
  position: absolute;
  width: 350px;
  height: 200px;
  background: rgba(43, 43, 47, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(220, 83, 16, 0.4),
    0 0 0 2px rgba(220, 83, 16, 0.5), inset 0 0 20px rgba(220, 83, 16, 0.1);
  border: 2px solid rgba(220, 83, 16, 0.6);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(100%) brightness(0.7);
}

/* Center card - aktif */
.hero-card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
  box-shadow: 0 30px 80px rgba(220, 83, 16, 0.6),
    0 0 0 3px rgba(220, 83, 16, 0.8), 0 0 60px rgba(220, 83, 16, 0.5),
    inset 0 0 30px rgba(220, 83, 16, 0.15);
  border: 3px solid rgba(220, 83, 16, 0.9);
}

.hero-card.center img {
  filter: none;
  transform: scale(1.05);
}

/* Üstteki kartlar */
.hero-card.up-2 {
  z-index: 1;
  transform: translateY(-250px) scale(0.8) translateZ(-300px);
  opacity: 0.6;
}

.hero-card.up-2 img {
  filter: grayscale(100%) brightness(0.6);
}

.hero-card.up-1 {
  z-index: 5;
  transform: translateY(-125px) scale(0.9) translateZ(-100px);
  opacity: 0.85;
}

.hero-card.up-1 img {
  filter: grayscale(100%) brightness(0.7);
}

/* Alttaki kartlar */
.hero-card.down-1 {
  z-index: 5;
  transform: translateY(125px) scale(0.9) translateZ(-100px);
  opacity: 0.85;
}

.hero-card.down-1 img {
  filter: grayscale(100%) brightness(0.7);
}

.hero-card.down-2 {
  z-index: 1;
  transform: translateY(250px) scale(0.8) translateZ(-300px);
  opacity: 0.6;
}

.hero-card.down-2 img {
  filter: grayscale(100%) brightness(0.6);
}

/* Gizli kartlar */
.hero-card.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
}

/* Hover effect kaldırıldı - carousel akışını bozmamak için */

/* Product Name Display */ /* Product Name Display */
.hero-product-name {
  margin-top: 2rem;
  text-align: center;
  font-family: "Space Colony", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.hero-product-name.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-product-name span {
  display: inline-block;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .hero-content-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .hero-logo {
    height: 90px;
  }

  .hero-tagline {
    font-size: 0.875rem;
  }

  .hero-badge {
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-wrap: nowrap;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 0.875rem 1.25rem;
  }

  .hero-carousel-container {
    height: 450px;
  }

  .hero-card {
    width: 320px;
    height: 180px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .new-hero-section {
    padding: 5rem;
  }

  .hero-content-wrapper {
    grid-template-columns: 5fr 6fr;
  }

  .hero-logo {
    height: 100px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

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

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 1.125rem;
  }

  .hero-carousel-container {
    height: 500px;
    max-width: 450px;
  }

  .hero-card {
    width: 380px;
    height: 215px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1280px) {
  .hero-content-wrapper {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 3rem;
  }

  .hero-left-col {
    grid-column: span 5 / span 5;
  }

  .hero-right-col {
    grid-column: 7 / span 6;
  }

  .hero-carousel-container {
    max-width: 500px;
  }

  .hero-card {
    width: 400px;
    height: 225px;
  }
}

/* Extra Large Desktop Styles */
@media (min-width: 1536px) {
  .new-hero-section {
    padding: 5rem 10rem;
  }

  .hero-logo {
    height: 110px;
  }

  .hero-tagline {
    font-size: 1.125rem;
  }

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

  .hero-subtitle {
    font-size: 1.875rem;
  }

  .hero-card {
    width: 420px;
    height: 240px;
  }

  .hero-product-name {
    font-size: 1.5rem;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .new-hero-section {
    padding: 1.5rem;
    min-height: auto;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-logo {
    height: 55px;
  }

  .hero-tagline {
    font-size: 0.65rem;
  }

  .hero-carbon-message p {
    font-size: 0.75rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero-carousel-container {
    height: 350px;
    max-width: 100%;
  }

  .hero-card {
    width: 280px;
    height: 160px;
  }

  .hero-product-name {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .hero-card.up-2 {
    transform: translateY(-200px) scale(0.75) translateZ(-250px);
  }

  .hero-card.up-1 {
    transform: translateY(-100px) scale(0.85) translateZ(-100px);
  }

  .hero-card.down-1 {
    transform: translateY(100px) scale(0.85) translateZ(-100px);
  }

  .hero-card.down-2 {
    transform: translateY(200px) scale(0.75) translateZ(-250px);
  }

  .hero-card:hover {
    transform: scale(1.1) translateZ(10px);
  }

  .hero-card.center:hover {
    transform: scale(1.1) translateZ(10px);
  }
}
