/* Costco Colors: Red (#E31837), Blue (#0051BA), White (#FFFFFF) */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #0051ba 0%, #003d8f 100%);
  color: #fff;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(90deg, #e31837 0%, #c91430 100%);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #ffd700;
}

.logo img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(-5deg);
}

.nav_links {
  display: flex;
  gap: 20px;
}

.nav_links a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.nav_links a:hover {
  background: #ffd700;
  color: #e31837;
  transform: translateY(-5px) rotate(360deg);
}

/* Main Hero Section */
.main-content {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0077ff 0%, #003d8f 50%, #00224e 100%);
  position: relative;
  overflow: hidden;
}

.main-content::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url("resources/imgs/banner%202.jpg");
  background-repeat: cover;
  background-size: auto 100%;
  filter: grayscale(100%);
  mix-blend-mode: overlay;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.main-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-img {
  position: relative;
  animation: fadeInLeft 1s ease;
}

.hero-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  border: 5px solid #e31837;
  box-shadow: 0 10px 40px rgba(227, 24, 55, 0.5);
  transition: transform 0.3s ease;
}

.hero-img img:hover {
  transform: scale(1.05) rotate(2deg);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text {
  text-align: left;
  animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text h1 {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 900;
  font-size: 4em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffd700;
  text-shadow: 4px 4px 0 #e31837, 8px 8px 0 rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  animation: pulse 2s infinite;
  white-space: pre-line;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-text p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 900;
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #000;
  padding: 20px 50px;
  font-size: 1.5em;
  text-decoration: none;
  border-radius: 50px;
  border: 4px solid #e31837;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e31837 0%, #c91430 100%);
  color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(227, 24, 55, 0.6);
}

/* About Section */
.about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
  color: #333;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "$1.50";
  font-family: "Londrina Solid", sans-serif;
  position: absolute;
  font-size: 300px;
  font-weight: 900;
  color: rgba(227, 24, 55, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
}

.about h2 {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 900;
  font-size: 3.5em;
  color: #e31837;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 #ffd700;
  position: relative;
  z-index: 1;
}

.about p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.about-img-bg {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-img-bg img {
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  border: 5px solid #0051ba;
  box-shadow: 0 10px 40px rgba(0, 81, 186, 0.3);
  transition: transform 0.3s ease;
}

.about-img-bg img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #0051ba 0%, #003d8f 100%);
  overflow: hidden;
  position: relative;
}

.testimonials h2 {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 900;
  font-size: 3.5em;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 3px 3px 0 #e31837;
}

.testimonial-scroll {
  display: flex;
  overflow: hidden;
  margin-bottom: 30px;
  user-select: none;
}

.testimonial-scroll-reverse {
  margin-bottom: 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.testimonial-scroll-reverse .testimonial-track {
  animation: scroll-right 45s linear infinite;
}

/* .testimonial-track:hover {
  animation-play-state: paused;
} */

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.tweet-card {
  min-width: 400px;
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 3px solid #ffd700;
  transition: all 0.3s ease;
  cursor: pointer;
}

/*
.tweet-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
  border-color: #e31837;
}
*/

.tweet-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #0051ba;
}

.tweet-header i {
  font-size: 24px;
  color: #e31837;
}

.tweet-header span {
  font-family: "Roboto", sans-serif;
  font-size: 1.1em;
}

.tweet-card p {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2.5em;
  }

  .tweet-card {
    min-width: 300px;
    padding: 20px;
  }

  .testimonial-track {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials h2 {
    font-size: 2em;
  }

  .tweet-card {
    min-width: 280px;
    padding: 15px;
  }

  .tweet-card p {
    font-size: 0.9em;
  }
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #e31837 0%, #c91430 100%);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid #ffd700;
}

.footer p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 15px 0;
  font-size: 0.9em;
  line-height: 1.6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer p:first-child {
  font-weight: bold;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5em;
  }

  .hero-text p {
    font-size: 1em;
  }

  .btn-primary {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .about h2 {
    font-size: 2.5em;
  }

  .about p {
    font-size: 1.1em;
  }

  .navbar {
    padding: 10px 15px;
  }

  .logo img {
    width: 80px;
  }

  .nav_links a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .main-content::before {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2em;
  }

  .about h2 {
    font-size: 2em;
  }

  .btn-primary {
    font-size: 1em;
    padding: 12px 25px;
  }
}
