/* styles.css */

:root {
  --primary-color: #a2ab03;
  --accent-color: #ffcc00;
  --dark-color: #404d00;
  --text-color: #333;
  --bg-light: #f7f9fa;
  --bg-white: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-color);
}

header {
  background-color: var(--dark-color);
  color: white;
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.8rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-color);
}


.hero {
  position: relative;
  background-image: url('assets/printt1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: -1; 
}
.hero h2 {
  font-size: 4rem;
  font-style: normal;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.section {
  padding: 3rem 1rem;
  background-color: var(--bg-white);
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.grid li {
  background: var(--bg-light);
  padding: 1rem;
  border-left: 5px solid var(--accent-color);
  border-radius: 8px;
  list-style: none;
  font-weight: 500;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product {
  background: white;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.product h3 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.product p {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: bold;
}

form {
  max-width: 400px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

input[type='email'] {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
input[type='name'] {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--dark-color);
}

#message {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

footer {
  background-color: var(--dark-color);
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
.logo {
  height: 100px; 
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    height: 50px;
  }
}
#upload-form {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: left;
}

#upload-form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}

#upload-form input[type="file"],
#upload-form input[type="email"] {
  padding: 0.6rem;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.products {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.products h2 {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.product {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product h4 {
  margin: 1rem 0 0.5rem;
  color: #111;
}

.product p {
  color: #20c997;
  font-weight: bold;
}
.order-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #20c997;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #17a88b;
}
