/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sidebar-toggle {
  background: #f5f5f5;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  display: none;
}

.logo {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #666;
}

/* Buttons */
.btn-primary {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 72px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-description {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  margin-top: 60px;
}

.arrow {
  font-size: 24px;
  color: #999;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* About Section */
.about {
  padding: 100px 20px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}


.about-text h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Social Links Section */
.social-links {
  padding: 100px 20px;
  text-align: center;
}

.social-links h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.social-link-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 30px;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-link-card:hover {
  border-color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-link-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link-icon svg {
  width: 100%;
  height: 100%;
}

.social-link-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.social-link-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Brands Section */
.brands {
  padding: 100px 20px;
  text-align: center;
}

.brands h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.brands-marquee-wrapper {
  overflow: hidden;
  margin-top: 50px;
  position: relative;
  width: 100%;
}

.brands-marquee {
  display: flex;
  gap: 60px;
  width: fit-content;
  animation: scroll-left 25s linear infinite;
  will-change: transform;
}

.brand-card {
  background-color: #f5f5f5;
  padding: 60px 40px;
  border-radius: 8px;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  flex-shrink: 0;
  min-width: 200px;
  text-align: center;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

/* Community Section */
.community {
  padding: 100px 20px;
  text-align: center;
}

.community h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.community-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.community-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px;
  min-width: 280px;
  text-align: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #000;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.community-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.community-card p {
  font-size: 16px;
  color: #666;
}

/* Newsletter Section */
.newsletter {
  padding: 100px 20px;
  text-align: center;
}

.newsletter h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group-inline input {
  flex: 1;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
}

.form-group-inline input:focus {
  border-color: #000;
}

.form-note {
  font-size: 14px;
  color: #999;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 100px 20px;
}

.contact h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
.footer {
  padding: 60px 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.footer-left p {
  font-size: 14px;
  color: #666;
}

.footer-center {
  text-align: center;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
}

.footer-nav a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #666;
}

.footer-right {
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.social-link {
  width: 32px;
  height: 32px;
  color: #000;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #666;
}

.social-link svg {
  width: 100%;
  height: 100%;
}

/* Success Message */
.success-message {
  background-color: #000;
  color: #fff;
  padding: 16px 24px;
  border-radius: 6px;
  margin-top: 20px;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-right {
    gap: 15px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brands-marquee-wrapper {
    margin-top: 30px;
  }

  .brand-card {
    padding: 40px 30px;
    min-width: 180px;
  }

  .community-cards {
    flex-direction: column;
    align-items: center;
  }

  .form-group-inline {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-right {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .about-text h2,
  .brands h2,
  .community h2,
  .newsletter h2,
  .contact h2,
  .social-links h2 {
    font-size: 32px;
  }

  .social-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .social-link-card {
    padding: 30px 20px;
  }

  .social-link-icon {
    width: 48px;
    height: 48px;
  }

  .brand-card {
    padding: 30px 20px;
    min-width: 150px;
    font-size: 16px;
  }

  .nav-right .btn-primary {
    display: none;
  }
}
