/* Modern, clean design with vibrant colors */
:root {
  --primary-color: #2ecc71;
  --secondary-color: #3498db;
  --accent-color: #f39c12;
  --text-color: #2c3e50;
  --light-bg: #ecf0f1;
  --dark-bg: #34495e;
  --white: #ffffff;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 4rem;
  margin-right: 1rem;
}

.logo-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-item {
  margin-left: 3rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  bottom: -5px;
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.4rem;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,224L48,186.7C96,149,192,75,288,58.7C384,43,480,85,576,106.7C672,128,768,128,864,144C960,160,1056,192,1152,181.3C1248,171,1344,117,1392,90.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 80%;
}

.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.section {
  padding: 10rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.section-subtitle {
  font-size: 1.8rem;
  max-width: 600px;
  margin: 0 auto;
  color: #777;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
}

.feature {
  background-color: var(--white);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.feature-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.feature-description {
  color: #777;
}

/* Products Section */
.products {
  background-color: var(--light-bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 3rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 25rem;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon {
  font-size: 6rem;
  color: var(--primary-color);
}

.product-content {
  padding: 2rem;
}

.product-category {
  font-size: 1.4rem;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-description {
  color: #777;
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Entertainment Section */
.entertainment {
  background-color: var(--white);
}

.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 3rem;
}

.entertainment-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.entertainment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.entertainment-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.entertainment-links {
  list-style: none;
}

.entertainment-link-item {
  margin-bottom: 1rem;
}

.entertainment-link-item a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
}

.entertainment-link-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Testimonial Section */
.testimonials {
  background-color: var(--dark-bg);
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 3rem;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
}

.author-info h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.author-info p {
  font-size: 1.4rem;
  opacity: 0.8;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-color);
  color: var(--white);
}

.newsletter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.newsletter-form {
  width: 100%;
  max-width: 60rem;
  display: flex;
  margin-top: 3rem;
}

.newsletter-input {
  flex: 1;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1.6rem;
  outline: none;
}

.newsletter-btn {
  padding: 0 3rem;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--text-color);
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 4rem;
  margin-right: 1rem;
}

.footer-about {
  margin-bottom: 2rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.8rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

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

.footer-link-item {
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media screen and (max-width: 992px) {
  html {
    font-size: 55%;
  }
  
  .hero-content {
    max-width: 80%;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .nav-list {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 3rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: 50px;
    margin-bottom: 1.5rem;
  }
  
  .newsletter-btn {
    border-radius: 50px;
    padding: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 50%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 4rem;
  }
}
