/* Font Custom Setting */

@font-face {
  font-family: 'uglydave';
  src: url('../fonts/uglydave-webfont.woff2') format('woff2'), url('../fonts/uglydave-webfont.woff') format('woff'), url('../fonts/UglyDave.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Ensures that a fallback font is used until the custom font is loaded */
}


/* Navigation bar */

.logo {
  width: 100px;
}

nav {
  margin: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48 64px;
}

.menu {
  display: flex;
}

.menu li {
  /* spacing links */
  /* 0 margin on top and bottom, 15px left and right */
  margin: 0 0 0 65px;

  /* remove bullets */
  list-style-type: none;
}

.menu li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 450;
  color: #35383F;
  font-size: 1.5rem;
  
  /* remove underline */
  text-decoration: none;
}

.menu li a:hover {
  color: #BF9BDE;
}

/* Hero content */

.hero-content {
  margin: 64px;
}

.typography-image-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
  width: 100%; /* Adjust as necessary */
  margin: 20px auto;
  max-width: 1300px; /* Increased max-width for larger size */
  margin: 60 20 60px 0; 
}

.typography-image {
  width: 100%;
  height: auto;
  border-radius: 20px; /* Rounded corners */
}

.hero-image-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
  width: 100%; /* Adjust as necessary */
  margin: 20px auto;
  max-width: 1300px; /* Increased max-width for larger size */
  margin: 10 20 10px 0; 
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px; /* Rounded corners */
}

.introduction p {
  margin-left: 250px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 450;
  color: #35383F;
  font-size: 3rem;
}

/* about button */
.button-container {
  margin: 60 0 60 140px;
  display: flex;
  align-items: center;
}

.about-button {
  padding: 40px 30px;
  border: 7.5px solid #35383F;
  border-radius: 50%;
  text-decoration: none;
  color: #35383F;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  background-color: white;
  margin-right: 20px;
}

.arrow {
  width: 60px;
  height: auto;
}

.left-arrow {
  margin-left: 140px;
}

.right-arrow {
  margin-left: 20px;
}

/* Band Members */
.members-row {
  display: grid; /* Allows wrapping for smaller screens */
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Increased min-width */
  gap: 30px; /* Increased gap for better spacing */
  width: 90%; /* Adjust width */
  max-width: 1400px; /* Increased max-width */
  margin: 20px auto;
  padding: 0;
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

.member {
  text-align: left;
  padding: 0; /* Increased padding for larger items */
  background-color: none;
}

.member-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.name {
  color: #35383F;
  font-family: 'Montserat', sans-serif;
  font-weight: 600;
  font-size: 27px; /* Increased font size */
  letter-spacing: 1px;
  margin: 20 0 5px 0;
}

.title {
  font-family: 'Montserat', sans-serif;
  font-size: 23px; /* Increased font size */
  margin: 10px 0 0 0;
  letter-spacing: 1px;
  color: #35383F;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
  .member {
    flex: 0 1 45%; /* Two items per row */
  }
}

@media (max-width: 768px) {
  .member {
    flex: 0 1 100%; /* One item per row */
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 20px;
  }

  .title {
    font-size: 18px;
  }
}

/* Tours */

.tours-section {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Ensure space between elements */
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
  width: 90%; /* Adjust as necessary */
  margin: 20px auto;
  background-color: none;
}

.tour-card {
  max-width: 800px; /* Increased max-width for larger size */
  margin: 10 20 10px 0; 
}

.tour-image {
  width: 100%;
  height: auto;
  border-radius: 20px; /* Rounded corners */
}

.tour-details {
  flex: 1;
  max-width: 400px; /* Adjust as necessary */
  margin: 10px;
  text-align: left;
}

.section-title {
  font-family: 'uglydave';
  color: #35383F;
  font-size: 80px;
  font-weight: normal;
  margin: 10 0 20px 0;
}

.tour-title {
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 450;
  color: #35383F;
  font-size: 3rem;
}

.availability {
  font-family: 'Montserat', sans-serif;
  font-size: 23px; /* Increased font size */
  margin: 10px 0 20px 0;
  letter-spacing: 1px;
}

.buy-ticket {
  font-family: 'Montserat', sans-serif;
  display: inline-block; /* create elements that are like inline elements (they sit next to each other on the same line) */
  padding: 27px 30px;
  border: 7.5px solid #35383F;
  border-radius: 50%;
  text-decoration: none;
  color: #35383F;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  background-color: white;
  margin-right: 20px;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
  .tour-card {
    max-width: 100%; /* Full width on smaller screens */
  }

  .tour-details {
    max-width: 100%; /* Full width on smaller screens */
  }
}

@media (max-width: 768px) {
  .tours-section {
    flex-direction: column; /* Stack elements vertically on small screens */
  }
}


/* Shop */
.shop-title {
  font-family: 'uglydave';
  display: flex;
  justify-content: center;
  color: #35383F;
  font-size: 80px;
  font-weight: normal;
  margin: 10 0 20px 0;
}

/* gallery */

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Increased min-width */
  gap: 30px; /* Increased gap for better spacing */
  width: 90%; /* Adjust width */
  max-width: 1400px; /* Increased max-width */
  margin: 20px auto;
  padding: 0;
  box-sizing: border-box; /* Include padding in the element's total width and height */
}

.gallery-item {
  text-align: left;
  padding: 0; /* Increased padding for larger items */
  background-color: none;
}

.item-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.item-name {
  color: #35383F;
  font-family: 'Montserat', sans-serif;
  font-weight: 600;
  font-size: 27px; /* Increased font size */
  letter-spacing: 1px;
  margin: 20 0 5px 0;
}

.item-price {
  font-family: 'Montserat', sans-serif;
  font-size: 23px; /* Increased font size */
  margin: 10px 0 0 0;
  letter-spacing: 1px;
  color: #35383F;
}

/* News */

.news-section {
  width: 100%;
  max-width: 1500px;
  padding: 0;
  text-align: center;
}

.news-title {
  font-family: 'uglydave';
  color: #35383F;
  font-size: 80px;
  font-weight: normal;
  margin: 10 0 20px 0;
}

.news-container {
  margin-right: auto;
  display: grid; /* Allows wrapping for smaller screens */
  justify-content: space-evenly; /* Distributes extra space evenly between child elements. */
  grid-template-columns: repeat(4, 1fr); /* Defines a 4-column layout with each column having equal width. */
  gap: 30px;

  flex-wrap: wrap; /* Allows wrapping for smaller screens */
  width: 90%; /* Adjust as necessary */
  margin: 0 auto;
  background-color: none;
}

.news-item {
  text-align: left;
  padding: 0;
}

.news-item.large {
  grid-column: span 2;
}

.news-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.news-item-title {
  color: #35383F;
  font-family: 'Montserat', sans-serif;
  font-weight: 600;
  font-size: 27px; /* Increased font size */
  letter-spacing: 1px;
  margin: 20 0 5px 0;
}

.news-date {
  font-family: 'Montserat', sans-serif;
  font-size: 23px; /* Increased font size */
  margin: 10px 0 0 0;
  letter-spacing: 1px;
  color: #35383F;
}

/* Stay tuned */
.stay-tuned {
  text-align: center;
  margin: 40px 0;
}

.stay-tuned img {
  max-width: 30%;
  height: auto;
}

/* Footer */
.footer {
  width: 100%;
  padding: 20px 0;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}

.footer-section {
  flex: 1;
  margin: 0 30px;
}

.footer-section h2 {
  color: #35383F;
  font-family: 'Montserat', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  color: #35383F;
  font-family: 'Montserat', sans-serif;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #35383F;
  font-family: 'Montserat', sans-serif;
  text-decoration: none;
  color: #333;
}

.footer-section .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}


.footer-section.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.footer-section.social-icons a {
  display: inline-block;
  margin: 0 5px 0 0;
}

.footer-section.social-icons img {
  width: 24px;
  height: auto;
}

.newsletter form {
  display: flex;
  align-items: center;
  border: 1px solid #35383F;
  border-radius: 20px;
  padding: 5px;
  width: 100%;
  max-width: 300px;
}
.newsletter form img {
  width: 24px;
  margin: 0 0 0 10px;
}

.newsletter input {
  border: none;
  outline: none;
  padding: 5 10px;
  flex: 1;
  border-radius: 20px;
}

.newsletter button {
  border: none;
  background-color: #35383F;
  color: white;
  border-radius: 20px;
  padding: 5 15px;
  cursor: pointer;
}