@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
  }

  h1 {
    text-transform: uppercase;
  }

.span1 {
  font-weight: 400;
}

/* Logo & Slogan Section */
.logo-slogan-section {
  background-color: #000000;
  width: 100%;
  padding: 100px 20px 0;
  min-height: 100vh;
}

.logo-slogan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand Header - Logo and Name */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.brand-logo {
  width: 70%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.brand-name {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

/* Brand Description */
.brand-description {
  max-width: 1000px;
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.brand-description p {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
}

/* Hero Image Container */
.hero-image-container {
  width: 100%;
  margin-top: auto;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Brand Slogan Section */
.brand-slogan-section {
  background-color: #000000;
  width: 100%;
  padding: 100px 20px;
}

.brand-slogan-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slogan-heading {
  color: #808080;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slogan-heading.animate {
  opacity: 1;
  transform: translateY(0);
}

.main-slogan {
  color: #FFFFFF;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.main-slogan.animate {
  opacity: 1;
  transform: translateY(0);
}

.slogan-line {
  display: block;
}

.slogan-description {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.slogan-text {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slogan-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.slogan-text:nth-of-type(1) {
  transition-delay: 0.4s;
}

.slogan-text:nth-of-type(2) {
  transition-delay: 0.6s;
}

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

/* Tablet Responsive Styles */
@media screen and (max-width: 1024px) {
  .logo-slogan-section {
    padding: 150px 20px 0;
  }

  .brand-header {
    margin-bottom: 50px;
    gap: 15px;
  }

  .brand-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .brand-name {
    font-size: 42px;
    letter-spacing: 1.5px;
  }

  .brand-description {
    max-width: 700px;
    margin-bottom: 60px;
  }

  .brand-description p {
    font-size: 17px;
    line-height: 1.7;
  }

  .brand-slogan-section {
    padding: 80px 20px;
  }

  .slogan-heading {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .main-slogan {
    font-size: 56px;
    letter-spacing: 2px;
    margin-bottom: 50px;
  }

  .slogan-description {
    max-width: 800px;
    gap: 25px;
  }

  .slogan-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .logo-slogan-section {
    padding: 200px 15px 0;
    min-height: 60vh;
  }

  .brand-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }

  .brand-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .brand-name {
    font-size: 32px;
    letter-spacing: 1px;
    text-align: center;
  }

  .brand-description {
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .brand-description p {
    font-size: 18px;
    line-height: 1.6;
  }

  .brand-slogan-section {
    padding: 60px 15px;
  }

  .slogan-heading {
    font-size: 14px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
  }

  .main-slogan {
    font-size: 42px;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    gap: 8px;
  }

  .slogan-description {
    max-width: 100%;
    gap: 20px;
    padding: 0 10px;
  }

  .slogan-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Small Mobile Responsive Styles */
@media screen and (max-width: 480px) {
  .logo-slogan-section {
    padding: 150px 10px 0;
    min-height: 55vh;
  }

  .brand-header {
    margin-bottom: 30px;
    gap: 12px;
  }

  .brand-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .brand-name {
    font-size: 28px;
    letter-spacing: 0.5px;
  }

  .brand-description {
    margin-bottom: 40px;
    padding: 0 5px;
  }

  .brand-description p {
    font-size: 14px;
    line-height: 1.5;
  }

  .brand-slogan-section {
    padding: 50px 10px;
  }

  .slogan-heading {
    font-size: 12px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
  }

  .main-slogan {
    font-size: 40px;
    letter-spacing: 1px;
    margin-bottom: 35px;
    gap: 6px;
  }

  .slogan-description {
    gap: 18px;
    padding: 0 5px;
  }

  .slogan-text {
    font-size: 14px;
    line-height: 1.5;
  }
}