/* CSS Variables - Design System */
:root {
  --background: hsl(210, 17%, 98%);
  --foreground: hsl(215, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  --primary: hsl(217, 91%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-glow: hsl(217, 91%, 75%);
  --secondary: hsl(215, 20%, 85%);
  --secondary-foreground: hsl(215, 25%, 25%);
  --muted: hsl(215, 20%, 90%);
  --muted-foreground: hsl(215, 15%, 45%);
  --accent: hsl(142, 76%, 36%);
  --accent-foreground: hsl(0, 0%, 100%);
  --accent-glow: hsl(142, 76%, 50%);
  --border: hsl(215, 20%, 85%);
  --input: hsl(215, 20%, 90%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(217, 91%, 75%));
  --gradient-accent: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 76%, 50%));
  --gradient-hero: linear-gradient(135deg, hsla(215, 25%, 15%, 0.95), hsla(217, 50%, 25%, 0.9));
  --gradient-card: linear-gradient(145deg, hsla(0, 0%, 100%, 0.8), hsla(215, 20%, 95%, 0.9));
  
  /* Shadows */
  --shadow-tech: 0 10px 30px -10px hsla(217, 91%, 60%, 0.2);
  --shadow-card: 0 4px 20px -4px hsla(215, 25%, 15%, 0.1);
  --shadow-glow: 0 0 40px hsla(217, 91%, 75%, 0.3);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

header{
    position: fixed;
    top: 0;
    left:50%;
    transform:translateX(-50%);
    border-bottom-left-radius:40px;
    border-bottom-right-radius:40px;
    width:90vw;
    background-color: rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);

    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.329);
    border-top: none;
    display: flex;
    padding: 15px;
    justify-content: space-around;
}

header img{
    width: 300px;
    height: 35px;
    position: relative;
}

@media screen and (max-width: 768px) {
    header{
        width: 100vw;
        border-bottom-left-radius:0px;
        border-left: none;
        border-right: none;
        padding: 15px 5px;
    border-bottom-right-radius:0px;
    }
    header img{
        width: 200px;
        height: 25px;
        margin-top: 10px;
    }
    .no-resp{
        display: none;
    }
    
    
}


/* Container Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  
  padding: 0 1rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 15px;
  font-weight: 500;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn-hero {
  background: rgba(255, 255, 255, 0.011);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-tech);
  font-size: 15px;
  padding: 10px 14px;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.137);
  
}

.btn-outline {
  background: transparent;
  color: rgba(57, 57, 57, 0.662);
  border: 2px solid rgba(68, 68, 68, 0.3);
  font-size: 15px;
  padding: 10px 14px;
}

.btn-outline:hover {
  background: rgba(116, 116, 116, 0.1);
  border-color: rgba(57, 57, 57, 0.5);
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('assets/imgs/bg-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  width: 100%;
  padding: 0 1rem;
}

.hero-container {
  max-width: 80vw;
  margin: 0 auto;
}
.suppliers-section button{
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 15px;
    font-family: inherit;
    color: white;
    position: relative;
    transition: linear 0.1s;
    border-radius: 20px;
    background: rgba(78, 78, 78, 0.435);
    margin: 0 auto;
    backdrop-filter: blur(2px);
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.329);
    cursor: pointer;
}

.suppliers-section button:hover{
    background: rgba(78, 78, 78, 0.529);
}

.hero-container button{
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 15px;
    font-family: inherit;
    color: white;
    border-radius: 20px;
    background: rgba(165, 255, 172, 0.26);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.198);
    backdrop-filter: blur(2px);
    transition: linear 0.1s;
    border: 1px solid rgba(255, 255, 255, 0.329);
    cursor: pointer;
}

.hero-container button:hover{
    background: rgba(165, 255, 172, 0.381);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-highlight {
  color: var(--primary-glow);
}

.hero-subtitle {
  font-size: clamp(2.25rem, 4vw, 2rem);
  margin-bottom: 2rem;
  color: #e5e7eb;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.opening-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(64, 255, 105, 0.1);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}

.pulse-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent-glow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #d1d5db;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .hero-container {
    max-width: 64rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-wheel {
  width: 0.25rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.125rem;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40%, 43% { transform: translateX(-50%) translateY(-30px); }
  70% { transform: translateX(-50%) translateY(-15px); }
  90% { transform: translateX(-50%) translateY(-4px); }
}

/* Section Styles */
.suppliers-section {
  padding: 5rem 0;
  background: var(--background);
}

.contact-section {
  padding: 5rem 0;
  background: hsla(215, 20%, 90%, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Suppliers Grid */
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.supplier-card {
  background: rgba(255, 255, 255, 0.392);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  border: 0;
    height: 100px;
    filter: grayscale(100%);
    transition: linear 0.2s;
  position: relative;
  transition: var(--transition-smooth);
}

.supplier-card img{
    max-width: 200px;
    position: absolute;
    max-height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.supplier-card:hover {
  box-shadow: var(--shadow-tech);
  transform: translateY(-2px);
  filter: grayscale(0%);
}

.supplier-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
  border-radius: 35px;
  margin-top: 10px;
  width: fit-content;
  padding: 6px 12px ;
  color: white;
  background: var(--gradient-primary);
}


.supplier-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.suppliers-footer {
  text-align: center;
  margin-top: 3rem;
}

.suppliers-footer p {
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-card {
  background: var(--gradient-card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  border: 0;
  overflow: hidden;
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--muted-foreground);
}

.contact-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-glow);
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 1rem 1.5rem;
  min-width: 300px;
  transform: translateX(400px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-content h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.toast-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.btn-sub{
    background-color: rgba(120, 120, 120, 0.116);
    border: 1px solid var(--border);
    color: black;
}

.btn-sub:hover{
    background-color: rgba(120, 120, 120, 0.216);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .suppliers-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.55rem;
  }
}