h1 {
    margin: 0; 
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000; 
}

.black-and-gold-header {
  background-color: #111(0, 0%, 1%); 
  color: #ffd700;
  padding: 15px 0; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: px;
  height: 80px;
}

.black-and-gold-header nav ul li:last-child a {
  margin-right: 40px; 
}

.logo-container {
  margin-right: 20px;
  margin-left: 40px;
}

.logo-container img {
  width: 200px; 
  height: auto;
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-right: 10px; 
}
nav ul li a {
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-size: 21px; 
  padding: 5px 10px; 

  
}

nav ul li a:hover {
  color: #fff; 
  background-color: #333; 
}


.hero-section {
    background-size: cover;
    background-position: center;
    color: #ffd700; 
    text-align: center;
    padding: 200px 20px; 
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 20px 40px; 
  font-size: 1.5em; 
  text-decoration: none;
  background-color: #000;
  color: #ffd700; 
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffd700; 
    color: #000;
}

.features-section {
    background-color: #000;
    color: #ffd700; 
    padding: 50px 20px; 
    text-align: center;
}

.feature-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 50%;
}

.feature {
    max-width: 300px;
    width: 30%; 
    margin: 0 10px;
    text-align: left;
}

.feature img {
    width: 80px; 
    height: 200px;
    width: 200px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffd700;
}

.feature h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
}

.menu-section {
    background-color: #000; 
    color: #ffd700; 
    padding: 50px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
  }
  
  .menu-container {
    display: flex;
    justify-content: space-between;
  }
  
  .column {
    flex: 1;
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .menu-item-image {
    width: 150px;
    margin-right: 20px;
    border-radius: 5px;
  }
  
  .menu-item-details {
    flex: 1;
  }
  
  .item-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .item-description {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .item-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .order-button {
    background-color: #ffd700; 
    color: #000; 
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .order-button:hover {
    background-color: #e6be00; 
  }

  .cart-section {
    background-color: #000; 
    color: #ffd700; 
    padding: 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: calc(33.33% - 20px); 
    margin-bottom: 20px;
  }
  
  .item-image {
    width: 80px;
    margin-right: 20px;
  }
  
  .item-details {
    flex: 1;
  }
  
  .item-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .item-price {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .quantity {
    display: flex;
    align-items: center;
  }
  
  .quantity-btn {
    background-color: #ffd700; 
    color: #000; 
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .quantity-value {
    font-size: 1rem;
    margin: 0 10px;
  }
  
  .remove-btn {
    background-color: #ffd700; 
    color: #000; 
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .checkout-btn {
    background-color: #ffd700; 
    color: #000; 
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
  }

  .checkout-section {
    text-align: center;
    margin-top: 20px;
  }
  
  .checkout-btn:hover {
    background-color: #e6be00; 
  }
  
  .cart-items-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
        background-color: #333;
    color: #fff;
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 10px 0;
}

.footer-newsletter input[type="email"],
.footer-newsletter button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-newsletter button {
    background-color: #ffd700;
    color: #333;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background-color: #e6be00;
}

.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-social ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social ul li:last-child {
    margin-right: 0;
}

.footer-social ul li a {
    color: #fff;
    font-size: 20px;
}

.footer-social ul li a:hover {
    color: #ffd700;
}
.site-footer {
  background-color: #000;
  color: #ffd700;
  padding: 50px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links ul li,
.footer-contact p {
  color: #ffd700;
}

.footer-newsletter input[type="email"],
.footer-newsletter button {
  background-color: #ffd700;
  color: #000;
}

.footer-newsletter button:hover {
  background-color: #e6be00;
}

.footer-social ul li a {
  color: #ffd700;
}

.footer-social ul li a:hover {
  color: #000;
}
.site-footer {
  background-color: #000;
  color: #ffd700;
  padding: 50px 0;
  border-top: 2px solid #ffd700; 
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links ul li,
.footer-contact p {
  color: #ffd700;
}

.footer-newsletter input[type="email"],
.footer-newsletter button {
  background-color: #ffd700;
  color: #000;
}

.footer-newsletter button:hover {
  background-color: #e6be00;
}

.footer-social ul li a {
  color: #ffd700;
}

.footer-social ul li a:hover {
  color: #000;
}
.footer-newsletter input[type="email"] {
  background-color: #fff; 
  color: #000; 
}
.footer-links a {
  color: #ffd700; 
}
.site-footer {
  position: relative;
}

.footer-credit {
  position: absolute;
  bottom: 10px; 
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6; 
  font-size: 12px; 
  text-align: center;
  margin-top: 20px;
  opacity: 0.6; 
  font-size: 12px; 
}
.footer-logo img {
  width: 300px; 
  height: auto; 
}
.menu-item-image {
  width: 150px;
  margin-right: 20px;
  border-radius: 5px;
  border: 4px solid gold; 
}
.section-title {
  text-align: center;
  margin-bottom: 20px;
  margin-top: -20px; 
}
.black-and-gold-header {
  background-color: #111; 
  color: #ffd700;
  padding: 15px 0; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid gold; 
}

/* Gallery Section */


.img-gallery {
  width: 80%;
  margin: 100px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.img-gallery img {
  width: 100%;
  cursor: pointer;
}

.img-gallery img:hover {
  transform: scale(0.8) rotate(-10deg);
  border-radius: 20px;
  box-shadow: 0 32px 75px rgba(68, 77, 136, 0.3);
}

.full-img {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.full-img img {
  width: 90%;
  max-width: 500px;
}

.full-img span{
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.transparent-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(255, 235, 119);
  color: black;
  font-family: 'Lato', sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  height: 30px; 
  padding: 0 1em; 
}

.transparent-bar span {
  margin-top: 8px; 
}

.social-media-icon {
  height: 20px; 
  width: 20px; 
  margin-left: 20px;
}

.social-media-icon-text{
  font-size: 1.1em;
  font-style: italic;
}

.social-media-icon-follow {
  height: 25px; 
  width: 25px; 
}

.social-media-link {
  font-size: 1.1em;
  font-style: italic;
  margin-bottom: 10px;
  margin-right: 260px;
}

.order-now-button {
  font-size: 1.25em;
  padding: 1em 1.5em;
  border: 0.25em solid gold;
  color: gold;
  box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2), 0 0.2em 0.5em rgba(0,0,0,0.2) inset;
  text-shadow: 0.05em 0.05em 0.1em rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.order-now-button:hover {
  background-color: gold;
  color: black;
}

.feature-container {
  position: relative;
}

.feature {
  border: 0.2em solid gold;
  box-shadow: 0 0 1em rgba(255,215,0,0.5), 0 0 0.5em rgba(255,215,0,0.3);
  padding: 10px;
}


.feature img{
  margin-top: 10px;
  margin-left: 50px;
}

.feature a {
  text-decoration: none;
  color: white;
}

.feature p{
  text-align: center;
}

.feature h2 {
  color: gold;
  text-decoration: underline;
  text-align: center;
}

.feature p span {
  font-size: 30px;
  color: gold;
}

.promo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffd35e;
  border-top: 5px solid #ffc84f;
  padding: 20px;
  margin-top: 20px;
}

.promo-text h2 {
  margin-top: 1em;
  margin-bottom: 1em;
  color: black;
  font-family: Arial, sans-serif;
  font-size: 40px;
}
.cta-button {
  background-color: #ffc84f;
  color: black;
  transition: background-color 0.5s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: black;
  color: white;
}

.promo-image img {
  margin-right: 20px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* end final menu */

.img-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px; 
}

.img-gallery img {
  width: 220px;
  height: 170px;
  margin: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.img-gallery img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 600px) {
  /* Adjustments for header */
  .black-and-gold-header {
    background-color: #fff;
    color: #111;
    padding: 10px 0;
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .black-and-gold-header nav ul {
    /* bring nav bar to the front */
    position: relative;
    z-index: 1;
  }

  .black-and-gold-header nav ul li:last-child a {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .logo-container {
    margin: 0;
  }

  .logo-container img {
    width: 150px;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin-right: 0;
    margin-bottom: 5px;
  }

  /* Adjustments for hero section */
  .hero-section {
    padding: 150px 20px;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  /* Adjustments for features section */
  .feature {
    width: 100%;
    margin: 20px 0;
  }

  .feature img {
    margin: 0 auto 10px;
  }

  .feature p {
    margin: 0 20px;
  }

  /* Adjustments for menu section */
  .menu-section {
    padding: 20px;
  }

  .menu-container {
    flex-direction: column;
  }

  .column {
    width: 100%;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }


  .cart-item {
    width: 100%;
  }

  .item-image {
    width: 60px;
  }

  .checkout-btn {
    margin: 20px auto;
  }


  .footer-logo img {
    width: 200px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-social ul li a {
    font-size: 1.2em;
  }

  .footer-credit {
    font-size: 10px;
  }


  .img-gallery img {
    width: 100%;
    height: auto;
    margin: 5px 0;
  }
  .card-slider {
    display: flex;
    flex-direction: column; 
    align-items: center; 
  }
  
  .card {
    width: 80%;
    margin: 10px 0; 
  }
  
  .card-content {
    text-align: center; 
  }
}

@media only screen and (max-width: 600px) {
  .transparent-bar {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .black-and-gold-header {
    flex-direction: column;
    align-items: center;
    background-color: #000;
    justify-content: center; 
    height: 200px; 
  }

  .logo-container {
    margin: 10px auto;
    max-width: 100%; 
    height: auto; 
    display: flex;
    justify-content: center;
  }
  nav {
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center; 
  }

  nav ul li {
    margin: 5px 0;
  }

  .order-now-button {
    margin-top: 10px; 
    border: none; 
    background-color: transparent; 
    color: gold;
    cursor: pointer;
    transition: all 0.3s ease; 
    text-decoration: none; 
    font-size: 1.3em; 
    border-bottom: 2px solid #333; 
    padding-bottom: 3px; 
    box-shadow: 0 5px 0 #ffd700; 
  }

  .order-now-button:hover {
    color: white;
  }
}

@media only screen and (max-width: 600px) {
  .feature-container {
    flex-direction: column;
    align-items: center;
  }

  .feature img{
    display: block;
    margin: 0 auto;
    order: 2;
  }

}

@media only screen and (max-width: 600px) {
  .promo-container {
    flex-direction: column; 
  }

  .promo-text,
  .promo-image {
    width: 100%; 
    margin-bottom: 20px; 
  }
}

@media only screen and (max-width: 600px) {
  .findus {
    width: 200%; 
    margin: 0 auto; 
  }

  .findus iframe {
    width: 100%; 
    height: auto; 
    margin-bottom: 20px; 
    border: none; 
  }

  .findus > div {
    flex-direction: column; 
  }
}