/* Nugget Website Styles - Extracted from Squarespace Export */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.sqsrte-large {
  font-size: 1.2rem;
  line-height: 1.6;
}

.sqsrte-small {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Layout Components */
.page-section {
  padding: 3.3vmax 0;
  position: relative;
}

.section-height--small {
  min-height: 50vh;
}

.section-height--medium {
  min-height: 70vh;
}

.content-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 4vw;
}

.content-width--narrow {
  max-width: 800px;
}

.content-width--medium {
  max-width: 1000px;
}

.content-width--wide {
  max-width: 1200px;
}

/* Section Themes */
.white {
  background-color: #ffffff;
  color: #333;
}

.dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.dark-bold {
  background-color: #000000;
  color: #ffffff;
}

.bright {
  background-color: #f8f9fa;
  color: #333;
}

/* Grid System */
.sqs-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.sqs-row {
  display: contents;
}

.col {
  grid-column: span 12;
}

.span-1 { grid-column: span 1; }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-9 { grid-column: span 9; }
.span-10 { grid-column: span 10; }
.span-11 { grid-column: span 11; }
.span-12 { grid-column: span 12; }

/* Buttons */
.sqs-button-element--primary {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sqs-button-element--primary:hover {
  background-color: #0056b3;
}

.sqs-block-button-container--center {
  text-align: center;
}

.sqs-block-button-container--left {
  text-align: left;
}

/* Navigation */
.navigation {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-left: 80px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

/* Pricing Section */
.pricing-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  text-color: #ffffff;
  position: relative;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

/* Testimonials */
.testimonial {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 4px solid #007bff;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #666;
}

/* Forms */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-item {
  margin-bottom: 1.5rem;
}

.form-item label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.field-element {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.field-element:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    margin-left: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .content-wrapper {
    padding: 0 6vw;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Sign In Link Styles */
.sign-in-link {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0,123,255,0.3);
  transition: all 0.3s ease;
  z-index: 1001;
}

.sign-in-link:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

/* Feature List Styles */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 800px;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Responsive adjustments for feature list */
@media (max-width: 768px) {
  .feature-list {
    margin: 1rem 0;
    padding: 0 1rem;
  }
  
  .feature-list li {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .feature-list {
    padding: 0 0.5rem;
  }
  
  .feature-list li {
    font-size: 0.95rem;
    padding: 0.5rem 0 0.5rem 1.2rem;
  }
}

/* Legal Content Styles (for Terms and Privacy pages) */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 0 1rem;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-content ol, .legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.effective-date {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

/* Responsive adjustments for legal content */
@media (max-width: 768px) {
  .legal-content {
    padding: 0 1.5rem;
  }
  
  .legal-content ol, .legal-content ul {
    margin-left: 1.5rem;
  }
  
  .legal-content h1 {
    font-size: 2rem;
  }
  
  .legal-content h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 0 1rem;
  }
  
  .legal-content ol, .legal-content ul {
    margin-left: 1rem;
  }
  
  .legal-content h1 {
    font-size: 1.8rem;
  }
  
  .legal-content h2 {
    font-size: 1.4rem;
  }
  
  .legal-content h3 {
    font-size: 1.2rem;
  }
}
