
/*---Homepage---*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color:#222222;
}

/*---Navigation Bar--*/
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 10px 20px 10px;
  font-family: Impact, Arial;
  color: white;
  position: sticky; 
}
.logo {
  display: flex;
  align-items: center;
}
.logo-link {
  text-decoration: none;
  color: inherit;
}
.logo img {
  height: 50px;
  margin-right: 10px;
  filter: brightness(0)invert(1);
}
.logo.text {
  cursor: pointer;
  transition: color 0.3s;
}

.logo.text, .logo img {display: flex;
flex-direction: row;}

.logo.text:hover {
  color: goldenrod;
}
.menu ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 1;
  padding: 10;
}
.menu li {
  cursor: pointer;
  transition: color 0.3s;
}
.menu li:hover {
  color: goldenrod;
}
.ham {
  display: none;
  height:45px;
  width: 45px;
  cursor: pointer;
  color: white;
}

/*---Scrolling Hero Product--*/
.hero.scrolling img {
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  border-radius:0px 0px 20px 20px;
}
.carousel-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.circle {
  width: 16px;
  height: 16px;
  background-color:goldenrod;
  border-radius: 50%;
  display: inline-block;
}

/*---Product Hero Default---*/

.products-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 2rem;
}

.products-row .product-hero {
    flex: 1 1 300px;
    max-width: 400px; 
    flex-direction: column; 
    text-align: center;/
}

.products-row .product-hero img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    border-radius: 20px;
}


.product-hero {
  position: relative; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  text-align: center;
  margin: 2rem auto;
}
.product-hero img {
    
  align-items: center;
  width: 100%;
  height: auto;
  max-width: 400px;
  display: flex;
  border-radius:20px 20px 20px 20px;
}
.hero-title {
  color:white;
}
.product-text {
  color: white;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-left: 56px;
  padding-right: 24px;
  margin: 0 auto;
  max-width: 50%;
}
.discription {
  padding: 10px;
}

/* --- SHOP BUTTON --- */
.shop-button {
  max-width:fit-content ;
  max-height:fit-content ;
  display: flex;
  flex-direction: column;
  background-color: #FADFA1;
  border: 3px solid black;
  color: black;
  text-decoration: none;
  text-align: center;
  padding: 10px 56px;
  border-radius: 50px;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25em;
  margin: 1rem;
  cursor: pointer;
}
.product-text,.shop-button{
    display: flex;
    flex-direction: column;}

/* --- RESPONSIVE DESIGN --- */
@media screen and (max-width: 750px) {
  .menu ul {
    display: none;
  }
  .logo.text {
    display: none;
  }
  .ham {
    display: block;
  }
  .product-hero {
    flex-direction: column;
  }
}

.product-features {
    max-width: 600px;       
    margin: 2rem auto;
    color: white;
    background-color: #333;
    padding: 1rem;
    border-radius: 15px;
    margin-top: 2rem;
    max-width: fit-content;
}

.product-features h3 {
    margin-bottom: 0.5rem;
    color: goldenrod;
}

.product-features ul {
    list-style: disc;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 0.5rem;
}

/* Red Premium Playing Cards PDP */
body.red-premium .product-hero img {
  margin: 1em;
  margin-left: 3em;
  justify-content: left;
}
body.red-premium .shop-button {
  max-width: 120px; 
  max-height: 60px;
}

/* Regular Premium Cards PDP */
body.regular-premium .product-hero img {
  margin: 1em;
  margin-left: 3em;
  justify-content: left;
}
body.regular-premium .shop-button {
  max-width: 120px; 
  max-height: 60px;
}

/* Metal Cards PDP */
body.metal-cards .product-hero img {
  margin: 1em;
  margin-left: 3em;
  justify-content: left;
  height: 500px;
}
body.metal-cards .shop-button {
  max-width: 120px; 
  max-height: 60px;
}
