/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.d-grid {
  display: grid;
}

.gap-2 {
  gap: 0.5rem;
}

.col-10 {
  width: 83.333333%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
  padding: 0;
  margin: 0;
}

.text-left {
  text-align: left;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

/* Special container for logo */
.logo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 15px;
}

.logo {
  width: 80px; /* Made logo smaller */
  height: auto;
}

/* Header and Navigation */
#header {
  padding: 0;
  width: 100%;
}

.container.d-flex.flex-column.align-items-center {
  background-color: #fff;
  width: 100%;
  padding: 1rem 0;
}


/* Banner */
.banner {
  background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
  padding: 2rem;
  text-align: center;
  border-radius: 0;
  margin: 0;
}

.banner-text {
  font-family: 'Anton', sans-serif;
  color: #000;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}

.banner-subtext {
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 auto;
  max-width: 800px;
  padding: 0 15px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}


/* Button styles */
.premium-button {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  margin: 0;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.button-group.thangs .premium-button {
  background-color: #1da1f2;
  color: white;
}

.button-group.makerworld .premium-button {
  background-color: #06963d;
  color: white;
}

/* Buttons container layout */
.buttons-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button-group:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Button description cards */
.button-card {
  background: #d1d5db;
  padding: 1.25rem 1.5rem;
  margin: 0;
  border-radius: 0 0 8px 8px;
  width: 100%;
}

.button-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
  text-align: center;
  font-weight: 400;
}

/* Free button */
.free-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  margin: 1rem 1rem;
  background-color: #fff;
  color: #495057;
  border: 1px solid #dee2e6;
}

.free-button:hover {
  background-color: #f8f9fa;
  color: #212529;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* Main content */
#main {
  position: relative;
  z-index: 0;
  padding-bottom: 2rem;
}

/* Footer */
#footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #dee2e6;
  background: #fff;
  margin-top: 0;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.05);
}

#footer a {
  margin: 0 0.5rem;
  display: inline-block;
}

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-icons img {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease-in-out;
}

social-icons img:hover {
  transform: scale(1.1);
}

/* Utility Classes */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Improve transitions */
a, button, .premium-button {
  transition: all 0.2s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents unwanted spacing */
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 2.25rem;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
  }

  .content-card {
    padding: 1.5rem;
    margin: 1rem 0.5rem;
  }

  .price-tag .amount {
    font-size: 2.25rem;
  }

  .price-tag .description {
    font-size: 0.875rem;
  }

  .spaced-list {
    padding-left: 1.25rem;
  }

  .spaced-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  /* Standardized button container spacing */
  .buttons-container {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
  }

  .button-group {
    width: 100%;
    max-width: 300px;
    margin: 0;
  }

  .premium-button {
    padding: 0.875rem 1.25rem;
    font-size: 1.05rem;
    margin: 0;
  }

  .button-card {
    padding: 1rem 1.25rem;
    margin: 0;
  }

  .button-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .content-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .content-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .content-card p {
    font-size: 0.95rem;
  }

  .spaced-list {
    padding-left: 1rem;
  }

  .spaced-list ul {
    padding-left: 1rem;
  }

  .spaced-list li {
    margin-bottom: 0.75rem;
  }

  #header img {
    max-width: 120px;
    height: auto;
  }

  .container.d-flex.flex-column.align-items-center {
    padding: 0.75rem 0;
  }

  .banner {
    padding: 1.5rem 1rem;
  }
  
  .banner-text {
    font-size: 2.25rem;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
  }
  
  .banner-subtext {
    font-size: 1.125rem;
    padding: 0 10px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section-title {
    font-size: 1.875rem;
    margin-bottom: 0.875rem;
  }

  .content-card {
    padding: 1.25rem;
    margin: 0.75rem 0.25rem;
  }

  .price-tag .amount {
    font-size: 2rem;
  }

  .price-tag .description {
    font-size: 0.8125rem;
  }

  .spaced-list {
    padding-left: 1rem;
  }

  .spaced-list li {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }

  /* Consistent button spacing for smaller screens */
  .buttons-container {
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .premium-button {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    margin: 0;
  }

  .button-group {
    margin: 0;
  }

  #header img {
    max-width: 100px;
  }

  #footer {
    padding: 1.25rem 0;
  }

  #footer img {
    width: 25px;
    height: 25px;
    margin: 0 6px;
  }

  .banner {
    padding: 1.5rem 0.75rem;
  }
  
  .banner-text {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }
  
  .banner-subtext {
    font-size: 1rem;
    padding: 0 8px;
    line-height: 1.4;
  }
}

/* Additional mobile footer adjustments */
@media (max-width: 768px) {
  #footer {
    padding: 1.5rem 0;
  }
  
  #footer div {
    margin-bottom: 12px;
  }

  #footer img {
    width: 30px;
    height: 30px;
    margin: 0 8px;
  }

  .footer-text {
    font-size: 11px;
  }
}

@media screen and (max-width: 360px) {
  .banner {
    padding: 1.5rem 0.75rem;
  }
  
  .banner-text {
    font-size: 2rem;
  }
  
  .banner-subtext {
    font-size: 1rem;
    padding: 0 10px;
  }

  #header img {
    max-width: 90px;
    height: auto;
  }

  /* Consistent spacing for very small screens */
  .buttons-container {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .premium-button {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .banner-text {
    font-size: 1.5rem;
  }
  .banner-subtext {
    font-size: 1rem;
  }
  
  .logo {
    width: 60px;
  }
  
  header .container img {
    width: 120px;
  }
}

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-green: #2563eb;
  --text-color: #1f2937;
  --light-bg: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

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

a:hover {
  color: #00b34a;
}




@media (max-width: 768px) {
}

/* Image optimization */
.logo img {
  width: 180px;
  height: 60px;
  object-fit: contain;
}

.featured-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}


.social-links img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}


/* Add new styles for footer text */
.footer-text {
  font-size: 12px;
  display: inline-block;
  margin: 0 5px;
}

.footer-text a {
  color: inherit; /* Makes link same color as text */
  text-decoration: none;
}

.footer-text a:hover {
  color: inherit; /* Keeps link same color on hover */
  text-decoration: underline;
}



/* Print styles */
@media print {
  .banner,
  .premium-button,
  #footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

.premium-button:focus {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}

#footer img {
  transition: transform 0.2s ease, filter 0.2s ease;
}

#footer img:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Text center utility */
.text-center {
  text-align: center;
  padding: 0;
  margin: 0;
}


/* Performance optimizations */
.premium-button,
#footer img {
  will-change: transform;
}



/* Footer polish */
#footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #dee2e6;
  background: #fff;
  margin-top: 0;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.05);
}


