/* Hero Section Styles */
.hero {
  background-color: transparent;
  min-height: 600px;
  padding: 60px 120px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  position: relative;
  margin-bottom: 30px;
}

.title-one2 {
  color: #AD0089;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: -8px;

}

.title-remember {
  color: #fff;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: -10px;
  margin-top: -20px;
  position: relative;
  z-index: 3;
}

.title-events {
  color: #00ACA6;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: -8px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  text-align: justify;
}

/* Logo card - Fixed positioning */
.hero-logo-card {
  position: absolute;
  right: 150px;
  top: 80px;
  width: 450px;
  height: 300px;
  background: linear-gradient(30deg, #ffffff13, #00000011);
  border-radius: 20px;
  transform: rotate(-5deg);
  z-index: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-image {
  width: 70%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.card-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 3;
  flex-direction: row-reverse;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-1 {
  background-color: #00aca6;
}

.dot-2 {
  background-color: #AD0089;
}

.dot-3 {
  background-color: #fff;
}

.social-icons {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #AD0089;
  transform: scale(1.1);
}

.company-info {
  display: flex;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #333;
  color: #fff;
}

.info-column {
  flex: 1;
  padding-right: 20px;
}

.info-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.info-text {
  color: #ccc;
  line-height: 1.6;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
  .hero {
      padding: 60px 60px;
  }
  
  .hero-logo-card {
      right: 30px;
      width: 350px;
      height: 230px;
  }
  
  .title-one2 {
      font-size: 100px;
  }
  
  .title-remember {
      font-size: 100px;
  }
  
  .title-events {
      font-size: 100px;
  }
}

@media screen and (max-width: 992px) {
  .hero {
      padding: 40px 40px;
  }
  
  .hero-logo-card {
      right: 20px;
      width: 280px;
      height: 180px;
      top: 100px;
  }
  
  .hero-logo-image {
      width: 65%;
      height: 65%;
  }
  
  .title-one2 {
      font-size: 70px;
      letter-spacing: -5px;
  }
  
  .title-remember {
      font-size: 80px;
      letter-spacing: -6px;
  }
  
  .title-events {
      font-size: 80px;
      letter-spacing: -6px;
  }
}

/* Additional breakpoint for medium screens to ensure logo fits */
@media screen and (max-width: 850px) {
  .hero-logo-card {
      right: 10px;
      width: 230px;
      height: 150px;
      top: 120px;
  }
  
  .hero-logo-image {
    
      scale: 0.7;
  }
  
  .title-one2 {
      font-size: 60px;
      letter-spacing: -4px;
  }
  
  .title-remember {
      font-size: 65px;
      letter-spacing: -5px;
  }
  
  .title-events {
      font-size: 65px;
      letter-spacing: -5px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
      padding: 30px;
      min-height: auto;
  }
  
  /* Smaller text sizes for mobile */
  .title-one2 {
      font-size: 60px;
      letter-spacing: -3px;
      margin-bottom: 0;
      line-height: 1;
  }
  
  .title-remember {
      font-size: 60px;
      letter-spacing: -3px;
      margin-top: 0;
      line-height: 1;
  }
  

  .title-events {
      font-size: 60px;
      letter-spacing: -3px;
      margin-top: 0;
      line-height: 1;
  }
  
  
  .hero-logo-card {
      display: none;
  }
  
  /* Keep social icons on right side, but adjust for mobile */
  .social-icons {
      position: static; /* Reset positioning */
      display: flex;
      flex-direction: row; /* Horizontal on mobile */
      justify-content: center; /* Center icons */
      gap: 30px; /* More space between icons */
      margin: 40px 0; /* Add vertical spacing */
  }
  
  .company-info {
    margin-top: auto;
    flex-direction: column;
  }
  
  .info-column {
      margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .title-one2 {
      font-size: 40px;
      letter-spacing: -2px;
  }
  
  .title-remember {
      font-size: 40px;
      letter-spacing: -2px;
  }
  
  .title-events {
      font-size: 40px;
      letter-spacing: -2px;
  }
}

@media screen and (max-width: 375px) {

  .title-one2,
  .title-remember,
  .title-events {
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 1;
  }
}