/* Base Reset and Typography */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}

/* Header Styling */
header {
  background-color: #1b1b1b;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #2c2c2c;
}

header h1 {
  margin: 0;
  color: #d0d0d0;
  font-size: 28px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #40e0d0;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Gallery Layout */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}

.gallery-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #40e0d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.gallery-item h3 {
  color: #40e0d0;
  font-size: 20px;
  margin: 12px 0 5px;
}

.retail-price {
  color: #40e0d0;
  font-size: 18px;
  margin: 5px 0 15px;
}

.buy-button {
  display: inline-block;
  background-color: #40e0d0;
  color: #000;
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.buy-button:hover {
  background-color: #31c4bc;
}

.wholesale-note {
  text-align: center;
  margin: 60px auto 40px;
  font-size: 16px;
}

.wholesale-note a {
  color: #40e0d0;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1b1b1b;
  color: #888;
  font-size: 14px;
}

/* Contact / Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

input, textarea {
  padding: 12px;
  font-size: 16px;
  border: 2px solid #40e0d0;
  border-radius: 6px;
  background-color: #1b1b1b;
  color: #fff;
  resize: vertical;
}

button {
  padding: 12px;
  font-size: 18px;
  background-color: #40e0d0;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #31c4bc;
}

/* About / Our Story Page Styling */
.about-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: left;
}

.about-section h1 {
  color: #40e0d0;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.about-section p {
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .gallery-item {
    width: 90%;
  }

  nav a {
    display: block;
    margin: 8px 0;
  }

  .buy-button {
    font-size: 16px;
    padding: 10px 18px;
  }

  .retail-price {
    font-size: 16px;
  }
}

/* Logo on Landing Page */
.logo img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
