:root {
  --color-primary: #000;
  --color-secondary: #ffffff;
  --color-accent: #808080;
  --color-gold: #c78d47;
  --font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --max-content-width: 700px;
  --transition-base: 0.2s ease-in-out;
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-main);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.highlight {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  font-family: var(--font-mono);
  line-height: 1.1;
}

.blurry-text {
  color: transparent;
  text-shadow: 0 0 1px rgb(255, 255, 255);
}

.page-header {
  font-family: var(--font-mono);
  margin: 2rem 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.paragraph {
  max-width: var(--max-content-width);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  text-align: justify;
  text-justify: inter-word;
}

.paragraph-intro {
  max-width: var(--max-content-width);
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
  text-justify: inter-word;
}

/* Gold-themed Elements */
.gold-text, .important-note {
  color: var(--color-gold);
  font-weight: bold;
  text-align: center;
}

.gold-icon {
  color: var(--color-gold);
  margin-right: 8px;
}

.gold-border {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.5rem 0;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin: 2rem auto;
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--color-gold);
}

.divider-icon {
  margin: 0 15px;
}

/* Navigation */
.navbar {
  background: var(--color-secondary);
  color: var(--color-primary);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem;
  box-shadow: 0 0 0 12px var(--color-gold), 0 0 15px rgba(0, 0, 0, 0.1);
}

.navbar-left {
  justify-self: start;
  display: flex;
  gap: 0.75rem;
}

.navbar-right {
  justify-self: end;
}

.logo {
  height: 5.625rem;
  margin: 0 1rem;
}

/* Buttons */
.button, .home-button, .order-now, .shop-catalog {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
}

.home-button, .order-now, .shop-catalog {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-secondary);
}

.button {
  border: 3px solid var(--color-secondary);
  background: var(--color-primary);
  color: var(--color-secondary);
  max-width: 11.25rem;
  font-size: 1rem;
}

.button:hover {
  background: var(--color-secondary);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.home-button i {
  font-size: 1.2rem;
}

/* Main Content */
.main, .main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem 1.25rem;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.main-content {
  padding: 2rem 1rem;
  padding-bottom: 0;
}

/* Card Styles */
.card-grid {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3rem 1rem;
  margin: 2.2rem auto;
  padding: 0 1rem;
  max-width: 2500px;
  width: 100%;
}

.card {
  width: 300px;
  height: 300px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 0.5rem;
  box-shadow: 0 0 0 6px var(--color-gold), 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .3rem .3rem 1.2rem;
  margin: auto;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_form {
  width: 200px;
  height: 300px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 0.5rem;
  box-shadow: 0 0 0 6px var(--color-gold), 0 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: .3rem .3rem 1.2rem;
  margin: auto;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 0 6px var(--color-gold), 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.card_form img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.card h3 {
  font-family: var(--font-mono);
  margin-bottom: 0.2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.button-ordercat {
  border: 10px solid var(--color-secondary);
  background: var(--color-primary);
  color: var(--color-secondary);
  max-width: 11.25rem;
  font-size: 1rem;
}


/* Welcome Section */
.welcome-section {
  position: relative;
  max-width: var(--max-content-width);
  width: 100%;
}

.welcome-section h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-top: 1.5rem;
  line-height: 1.8;
}

.important-note {
  margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-header {
  text-align: center;
  font-weight: bold;
}

/* Media Queries */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem;
  }
  
  .logo {
    height: 4rem;
    margin: 0 0.5rem;
  }
  
  .home-button, .order-now, .shop-catalog {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .main {
    padding: 2rem 1rem;
  }
  
  .paragraph {
    font-size: 1.1rem;
  }
  
  .home-button {
    padding: 0.5rem !important;
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .home-button i {
    font-size: 1rem;
    margin: 0;
  }
}

.order-steps {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  color: #000;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 4px var(--color-gold), 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

