
 /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(74, 47, 112); /* dark purple background */
    color: #fdebeb;
}
h1, h2, h3, .main-title {
    font-family: 'MedievalSharp', cursive;
}

/* Header */
header {
    background-color: #4B0082; /* dark purple */
    color: white;
    padding: 0.5rem 2rem;
}

.top-bar {
  display: flex;
  justify-content: space-between; /* left = logo and text, right = nav */
  align-items: center;
  padding: 1rem 4rem;
  background-color: #4B0082; /* dark purple */
  color: #d3af37;
}

.nav-buttons {
    margin-left: auto; 
    display: flex;     
    gap: 1.5rem;      
}

.nav-buttons a {
    color: #D9BFFF;
    text-decoration: none;
    font-weight: bold;
}


.nav-buttons a:hover {
    color: #d3af37; /* gold on hover */
}

.nav-buttons a:last-child {
    margin-right: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(211, 175, 55, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.main-title {
    color: #d3af37;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'MedievalSharp', cursive;
}

.sub-title {
    color: #d3af37;
    font-size: 1rem;
}

/* Hero Banner */
.hero-banner {
  background: url(images/Hero\ banner\ main\ page.png) center/cover no-repeat;
  height: 400px;
  display: flex;
  justify-content: center; /* centers button horizontally */
  align-items: center;     /* centers button vertically */
}
.hero-banner button {
  background-color: #d3af37;
  padding: 1rem 2rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.hero-banner button:hover {
    transform: scale(1.05);
}

/* Featured Panels */
.featured-panels {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto; /* centers the whole section */
  gap: 1rem;
}
.panel {
  display: flex;
  flex-direction: column; /* stack image + text */
  border: 2px solid #d3af37;
  border-radius: 12px;
  overflow: hidden; /* keeps image inside rounded corners */
  background-color: #2f1b47;
  max-width: 260px;
  text-decoration: none;
  color: inherit;
}
.panel:visited {
  color: inherit;
}
.panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #d3af37;
}
.panel img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.panel h3 {
  color: #ffffff; /* force white */
  padding: 0.75rem;
  text-align: center;
}

/* Featured Event */
.featured-event {
  background-color: #D9BFFF; /* light purple box */
  color: #4B0082;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  display: flex;
  justify-content: flex-end; /* text on the right */
  border-radius: 8px;
}

.event-banner h3 {
    font-size: 1.5rem;
    color: #4B0082; /* dark purple text */
}

.event-time {
    background-color: #d3af37; /* gold rectangle */
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-around;
  background-color: #4B0082;
  color: #EDE6F7;
  padding: 2rem;
  border-top: 3px solid #d3af37;
  font-family: 'Roboto', sans-serif;
}
.footer-section h4 {
  color: #d3af37;
  margin-bottom: 0.5rem;
  font-family: 'MedievalSharp', cursive;
}

/* About page */
.about-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.about-page h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.about-section {
  margin-bottom: 2rem;
  background-color: #2f1b47;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #d3af37;
}

.about-section h3 {
  margin-bottom: 1rem;
  color: #d3af37;
}

.about-section ul {
  padding-left: 1.5rem;
}

/* Events page */

.events-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

.events-page h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #d3af37;
  font-family: 'MedievalSharp', cursive;
}

.event-card {
  background-color: #2f1b47;
  border: 2px solid #d3af37;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-card h3 {
  color: #d3af37;
  margin-bottom: 0.5rem;
}

.event-card p {
  margin-bottom: 0.5rem;
}

.event-time {
  font-weight: bold;
  color: #000000;
}

/* Shop page (main) */
.shop-title {
  text-align: center;
  color: #d3af37;
  font-family: 'MedievalSharp', cursive;
  margin-top: 2rem;
}

.shop-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.shop-categories button {
  background-color: #2f1b47;
  border: 2px solid #d3af37;
  color: #d3af37;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 8px;
}

.shop-categories button:hover {
  background-color: #d3af37;
  color: #2f1b47;
}

.section-title {
  text-align: center;
  margin: 2rem 0 1rem;
  color: #d3af37;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

.product {
  background-color: #2f1b47;
  border: 2px solid #d3af37;
  border-radius: 12px;
  padding: 1rem;
  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

.product img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.product h4 {
  margin: 0.5rem 0;
}

.product p {
  margin-bottom: 0.5rem;
}

.product button {
  background-color: #d3af37;
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
}

.product button:hover {
  transform: scale(1.05);
}
.category-section {
  display: none;
}
/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

/* Enlarged image */
.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border: 3px solid #d3af37;
  border-radius: 10px;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #d3af37;
  font-size: 40px;
  cursor: pointer;
}
.product img {
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.product img:hover {
  transform: scale(1.05);
}
.product-info {
  cursor: pointer;
}

.product-info:hover h4 {
  color: #d3af37;
}


.shop-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.shop-categories button {
  background-color: #2f1b47;
  border: 2px solid #d3af37;
  color: #d3af37;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 8px;
}

.shop-categories button:hover {
  background-color: #d3af37;
  color: #2f1b47;
}

.section-title {
  text-align: center;
  margin: 2rem 0 1rem;
  color: #d3af37;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

.product {
  background-color: #2f1b47;
  border: 2px solid #d3af37;
  border-radius: 12px;
  padding: 1rem;
  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.product img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.product h4 {
  margin: 0.5rem 0;
}

.product p {
  margin-bottom: 0.5rem;
}

.product button {
  background-color: #d3af37;
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
}

.product button:hover {
  transform: scale(1.05);
}
.category-section {
  display: none;
}
/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

/* Enlarged image */
.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border: 3px solid #d3af37;
  border-radius: 10px;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #d3af37;
  font-size: 40px;
  cursor: pointer;
}
.product img {
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.product img:hover {
  transform: scale(1.05);
}
.product-info h4 {
  cursor: pointer;
  text-decoration: underline;
}

.product-info:hover h4 {
  color: #d3af37;
}
/* Checkout Page */
.checkout-page {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.checkout-page h1 {
    margin-bottom: 20px;
    font-family: 'MedievalSharp', cursive;
}

#summary p {
    margin: 10px 0;
    font-size: 1.1rem;
}

#summary h2 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: gold;
}
.checkout-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: gold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.checkout-btn:hover {
    background-color: #e6c200;
}
/* Checkout Layout */
.checkout-container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
}

/* Left & Right panels */
.checkout-left,
.checkout-right {
    flex: 1;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

/* Inputs */
.checkout-left input,
.checkout-right input,
.checkout-left select,
.checkout-right select {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

/* Row layout (city/state/zip + exp/cvv) */
.row {
    display: flex;
    gap: 10px;
}

.row input,
.row select {
    flex: 1;
}

/* Order summary */
.order-summary {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    color: white;
    text-align: center;
}

/* Button */
.checkout-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: gold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}