/* The Poop Print Project - Complete Stylesheet */
/* Color palette derived from provided image */

:root {
  /* Color palette from image */
  --pp-dark-teal: #0e5e67;
  --pp-teal: #2f7a87;
  --pp-mint: #cfe6df;
  --pp-cream: #f7f4dc;
  --pp-sage: #8a9c77;
  --pp-accent: #FFC107;
  
  /* Additional colors for better UX */
  --pp-bg: #fafbfc;
  --pp-text: #2c3e50;
  --pp-text-light: #5d6d7e;
  --pp-surface: #ffffff;
  --pp-border: #e8f0f2;
  --pp-shadow: 0 4px 20px rgba(14, 94, 103, 0.08);
  --pp-shadow-hover: 0 8px 30px rgba(14, 94, 103, 0.15);
  
  /* Typography */
  --font-heading: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1rem;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--pp-text);
  background: var(--pp-bg);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Navigation */
.nav {
  background: var(--pp-surface);
  box-shadow: var(--pp-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pp-teal);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-link {
  text-decoration: none;
  color: var(--pp-text);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--pp-mint);
  color: var(--pp-dark-teal);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  color: var(--pp-surface);
}

h2 {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--pp-teal);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.25rem;
  color: var(--pp-text);
}

h4 {
  font-size: 1.1rem;
  color: var(--pp-text);
}

p {
  margin-bottom: var(--spacing-sm);
}

.lead {
  font-size: 1.125rem;
  color: var(--pp-text-light);
  font-weight: 400;
}

/* Hero Section */
.hero {
  background-image: url('landing.png'), linear-gradient(135deg, rgba(14,94,103,0.35) 0%, rgba(47,122,135,0.22) 100%);
  background-size: cover;            /* Makes image cover the area, responsive to screen */
  background-position: center;       /* Centers the image */
  background-repeat: no-repeat;      /* Prevents tiling */
  color: var(--pp-surface);          /* Ensures headline text stays readable */
  padding: var(--spacing-2xl) var(--container-padding);
  text-align: center;
  border-radius: 16px;
  margin: var(--spacing-md) var(--container-padding);
  box-shadow: var(--pp-shadow);
  position: relative;
}


.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: var(--spacing-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-simple {
  background: var(--pp-surface);
  color: var(--pp-text);
  padding: var(--spacing-xl) var(--container-padding);
  text-align: center;
  border-bottom: 3px solid var(--pp-mint);
}

.hero-simple h1 {
  color: var(--pp-teal);
}

/* Main Content */
.main {
  padding: var(--spacing-lg) 0;
}

.section {
  background: var(--pp-surface);
  border-radius: 16px;
  padding: var(--spacing-xl);
  margin: var(--spacing-lg) var(--container-padding);
  box-shadow: var(--pp-shadow);
  border: 1px solid var(--pp-border);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--pp-accent);
  color: var(--pp-text);
}

.btn-primary:hover {
  background: #e6b50a;
  transform: translateY(-2px);
  box-shadow: var(--pp-shadow-hover);
}

.btn-secondary {
  background: var(--pp-mint);
  color: var(--pp-dark-teal);
  border: 2px solid var(--pp-teal);
}

.btn-secondary:hover {
  background: var(--pp-teal);
  color: var(--pp-surface);
}

.cta-container {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

/* Grid Layouts */
.highlight-grid, .values-grid, .preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.locations-grid, .notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

/* Cards */
.highlight-card, .value-card, .location-card, .note-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight-card:hover, .value-card:hover, .location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pp-shadow-hover);
}

.highlight-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.preview-item {
  text-align: center;
}

.preview-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: var(--spacing-sm);
}

/* Step Cards */
.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--pp-accent);
  color: var(--pp-text);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: var(--spacing-sm);
}

/* Fidget Showcase */
.fidgets-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.fidget-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.fidget-showcase.reverse {
  direction: rtl;
}

.fidget-showcase.reverse > * {
  direction: ltr;
}

.fidget-showcase img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--pp-shadow);
}

.fidget-info ul {
  margin-top: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.fidget-info li {
  margin-bottom: var(--spacing-xs);
}

/* Forms */
.form-container {
  margin: var(--spacing-lg) 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--pp-shadow);
}

.form-container iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  background: var(--pp-surface);
}

.form-note {
  text-align: center;
  margin-top: var(--spacing-sm);
  font-style: italic;
  color: var(--pp-text-light);
}

.form-note a {
  color: var(--pp-teal);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

/* About Page Specific */
.about-content ul {
  margin: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
}

.about-content li {
  margin-bottom: var(--spacing-xs);
}

.intro-text {
  font-size: 1.125rem;
  color: var(--pp-text-light);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.custom-section {
  background: var(--pp-mint);
  padding: var(--spacing-xl);
  border-radius: 12px;
  margin: var(--spacing-xl) 0;
}

.custom-section h2 {
  color: var(--pp-dark-teal);
}

.custom-section ul {
  columns: 2;
  column-gap: var(--spacing-lg);
  margin-top: var(--spacing-sm);
}

.important-notes, .support-section {
  background: var(--pp-cream);
  padding: var(--spacing-xl);
  border-radius: 12px;
  margin: var(--spacing-xl) 0;
}

.important-notes h2, .support-section h2 {
  color: var(--pp-dark-teal);
}

/* Footer */
.footer {
  position: relative;
  background: url('footer.png') no-repeat center center;
  background-size: cover;
  color: var(--pp-surface);
  text-align: center;
  padding: var(--spacing-xl) var(--container-padding);
  margin-top: var(--spacing-2xl);
  z-index: 0;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.footer p {
  margin-bottom: var(--spacing-xs);
}

.disclaimer {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: var(--spacing-sm);
}


.footer p {
  margin-bottom: var(--spacing-xs);
}

.disclaimer {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: var(--spacing-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    gap: var(--spacing-sm);
  }
  
  .nav-link {
    padding: var(--spacing-xs);
    font-size: 0.9rem;
  }
  
  .cta-container {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .fidget-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .fidget-showcase.reverse {
    direction: ltr;
  }
  
  .custom-section ul {
    columns: 1;
  }
  
  .section {
    margin: var(--spacing-md) var(--spacing-sm);
    padding: var(--spacing-lg);
  }
  
  .hero {
    margin: var(--spacing-sm);
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .nav-container {
    flex-direction: column;
    padding: var(--spacing-sm);
    min-height: auto;
    gap: var(--spacing-sm);
  }
  
  .nav-menu {
    width: 100%;
    justify-content: center;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .fidget-showcase img {
    height: 250px;
  }
  
  .highlight-grid, .values-grid, .preview-grid, .steps-grid, .locations-grid, .notes-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus,
a:focus {
  outline: 3px solid var(--pp-accent);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .nav, .footer {
    display: none;
  }
  
  .section {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .hero {
    background: none !important;
    color: black !important;
  }
}

@media (max-width: 480px) {
  .hero {
    background-size: cover;
    background-position: center;
    min-height: 220px;                       /* Sets minimum height for visibility on mobile */
    padding: var(--spacing-lg) var(--spacing-sm); /* Less padding for small screens */
  }
}

/*availability*/

/* Standalone inline fidget status badge */
.fidget-status {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  padding: 0.05em 0.35em;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  vertical-align: middle;
  cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  color: white;
  margin-left: 0;  /* optional if used inline with other elements */
  position: relative;   /* allows fine-tuning */
  left: -1.0em;         /* shift slightly left */
}

/* Icon */
.fidget-status .status-icon {
  width: 0.75em;
  height: 0.75em;
  vertical-align: middle;
}

/* Hover effect */
.fidget-status:hover {
  filter: brightness(0.9);
}

/* AVAILABLE state */
.fidget-status.available {
  background-color: #4CAF50; 
}

/* SOLD OUT state */
.fidget-status.soldout {
  background-color: #e74c3c; 
}

/* Text visibility */
.fidget-status .available-text {
  display: inline;
}

.fidget-status .soldout-text {
  display: none;
}

/* Switch to soldout text when badge has class .soldout */
.fidget-status.soldout .available-text {
  display: none;
}

.fidget-status.soldout .soldout-text {
  display: inline;
}

//*CONTACT SECTION*//


/* Footer Contacts - All Link States */
.footer-contacts a:link,
.footer-contacts a:visited,
.footer-contacts a:hover,
.footer-contacts a:active {
  color: #ffffff !important;        /* White text for all states */
  text-decoration: none;            /* Remove default underline */
  position: relative;               /* For animated underline */
  font-weight: 600;
  margin: 0 4px;                    /* Space between links */
  transition: all 0.3s ease;
}

/* Animated underline */
.footer-contacts a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;                     /* Distance from text */
  width: 0%;
  height: 2px;
  background-color: var(--pp-accent); /* Gold underline */
  transition: width 0.3s ease;
}

/* Hover effect */
.footer-contacts a:hover::after {
  width: 100%;
}

.footer-contacts a:hover {
  color: var(--pp-accent) !important; /* Gold text on hover */
}

/* Responsive Footer Contacts */
@media (max-width: 480px) {
  .footer-contacts {
    display: flex;
    flex-direction: column;   /* Stack vertically */
    gap: 0.5rem;              /* Space between links */
    align-items: center;
    font-size: 1rem;
  }

  .footer-contacts a {
    margin: 0;
  }

  /* Remove separators on mobile */
  .footer-contacts a + a::before {
    content: none;
  }
}

.custom-section p {
    margin-bottom: 1.5rem; /* increase space between paragraphs */
}

.custom-section ul li {
    margin-bottom: 0.75rem; /* increase space between list items */
}




