/* 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: #fafafa;
}

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

/* Header and Navigation */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0072d9; /* New blue from logo */
}

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

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

.nav-links a:hover {
  color: #0072d9; /* New blue from logo */
}

/* Hero Section */
.hero {
  background: #ffcb38; /* Exact yellow from logo - no gradient */
  color: #000; /* Black text for contrast */
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  background: #0072d9;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.badge-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: transform 0.3s ease;
}

.badge-link:hover {
  transform: scale(1.05);
}

.badge-link:hover .badge {
  background: #0056b3;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  color: #000;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #dd3013; /* New red from logo */
  color: white;
}

.btn-primary:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #0072d9; /* New blue from logo */
  color: white;
}

.btn-secondary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 300px;
  height: 300px;
}

/* Sections */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000;
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: white;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.coming-soon {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  border-left: 4px solid #0072d9; /* New blue from logo */
}

.coming-soon h3 {
  color: #0072d9; /* New blue from logo */
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.coming-soon ul {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.coming-soon li {
  padding: 0.5rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 1.5rem;
}

.coming-soon li::before {
  content: '🧱';
  position: absolute;
  left: 0;
  color: #dd3013; /* New red from logo */
}

/* Contact Section */
.contact {
  background: #f8fafc;
  text-align: center;
  padding: 4rem 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #000;
}

.contact-method a {
  color: #0072d9; /* New blue from logo */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #dd3013; /* New red from logo */
  text-decoration: underline;
}

/* Instagram specific styling */
.instagram-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  color: #e4405f; /* Instagram brand color */
}

.contact-method a[href*='instagram'] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-method a[href*='instagram']:hover {
  color: #e4405f; /* Instagram brand color */
}

.footer-section a[href*='instagram']:hover {
  color: #e4405f; /* Instagram brand color */
}

/* Instagram icon hover effects */
.contact-method:hover .instagram-icon,
.footer-section a:hover .instagram-icon {
  color: #e4405f; /* Instagram brand color */
}

/* Footer */
.footer {
  background: #000; /* Black from logo */
  color: white;
  padding: 60px 0 20px;
  position: relative;
  z-index: 10;
  margin-top: 2rem;
}

/* Ensure main doesn't cut off footer */
main {
  min-height: auto;
  position: relative;
}

/* Store Section */
.store {
  background: #f8fafc;
  text-align: center;
  padding: 4rem 0;
}

.store .section-intro {
  margin-bottom: 3rem;
  padding: 0 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.store-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 0;
  padding: 0 1rem;
  align-items: center;
}

.store-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.store-item-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.store-item-link:hover {
  text-decoration: none;
  color: inherit;
}

.store-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.item-image {
  position: relative;
  background: #f8fafc;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

.item-img {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.store-item:hover .item-img {
  transform: scale(1.02);
}

.item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #10b981; /* Change from blue to green for better contrast */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.item-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000;
  line-height: 1.3;
}

.item-description {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.item-condition {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

.item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0072d9;
}

.btn-store {
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  margin-top: auto;
}

.store-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.store-note {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
}

/* Responsive adjustments for store */
@media (min-width: 768px) {
  .store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0;
    align-items: stretch;
  }

  .store-item {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .store {
    padding: 3rem 0;
  }

  .store .section-intro {
    margin-bottom: 2rem;
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .store-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .store-item {
    margin: 0 auto 1.5rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .item-image {
    padding: 1rem;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }

  .item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .item-content {
    padding: 1.25rem;
  }

  .item-title {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .item-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #64748b;
  }

  .item-details {
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
  }

  .item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0072d9;
  }

  .item-condition {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
  }

  .btn-store {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .store {
    padding: 2rem 0;
  }

  .store .section-intro {
    margin-bottom: 1.5rem;
    padding: 0 0.75rem;
    font-size: 0.95rem;
  }

  .store-grid {
    padding: 0 0.75rem;
    gap: 1rem;
  }

  .store-item {
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    margin: 0 auto 1rem auto;
  }

  .item-image {
    padding: 0.75rem;
    height: 180px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }

  .item-content {
    padding: 1rem;
  }

  .item-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .item-description {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    color: #64748b;
  }

  .item-details {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }

  .item-condition {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
  }

  .item-price {
    font-size: 1.25rem;
  }

  .btn-store {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
    margin-top: 0.75rem;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #f9fafb;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffcb38; /* New yellow from logo */
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

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

  .hero-logo {
    width: 200px;
    height: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .logo h1 {
    font-size: 1.25rem;
  }
}

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

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }

  .logo h1 {
    font-size: 1.25rem;
  }
}
