main.css
css
Copy code
/* Reset & Base Styles */
body {
  margin: 0;
  padding: 0;
  background: #0e0e0e;
  color: #ccc;
  font-family: 'Georgia', serif;
}

/* Header */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background: #ddd;
  border-bottom: 1px solid #222;
}

.top-nav h1 {
  color: #000;
  font-weight: normal;
  letter-spacing: 1px;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  padding: 0;
}

.top-nav a {
  color: #292035;
  text-decoration: none;
  font-size: 0.9em;
}

.top-nav a:hover {
  color: #6a0Dad;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4em 0 2em;
  background: linear-gradient(to bottom, #000000, #0e0e0e);
}
.hero {
  background: #000;
  width: 100vw;                   
  position: relative;
  left: 50%;                     
  right: 50%;
  margin-left: -50vw;             
  margin-right: -50vw;
}


.cauldron-img {
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 0 10px #333);
}

/* Content Area */
.content {
  padding: 2em;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #000;
}

.content h2 {
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  color: #000;
}

.content p {
  font-size: 1em;
  margin-bottom: 1.5em;
}

textarea {
  width: 100%;
  height: 120px;
  background: #1c1c1c;
  color: #eee;
  border: 1px solid #333;
  padding: 1em;
  resize: none;
  font-family: monospace;
  font-size: 1em;
  margin-bottom: 1em;
}

button {
  background: #333;
  color: #fff;
  padding: 0.75em 1.5em;
  border: none;
  font-size: 1em;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #555;
}

css
Copy code
.apothecary-section {
  text-align: center;
  max-width: 600px;
  margin: 3em auto;
  padding: 2em;
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
  color: #ccc;
}

.apothecary-section h2 {
  color: #eee;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}

.apothecary-img {
  width: 100%;
  max-width: 400px;
  margin: 2em auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}