/* Global Styles */
/* Reset some default styles */
/* Change the font family and font size of the body */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
}

/* Change the font family and font size of headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
}

/* Change the font family and font size of paragraphs */
p {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
}




/* Reset some default styles */
body, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}



/* Header styles */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 1px 7px rgb(230, 230, 230);
}

.logo img {
  max-height: 90px;
}

.menu {
  display: flex;
}

.menu ul li {
  margin-left: 30px;
}

.menu ul li a {
  color: #333;
  font-size: 16px;
}

.hamb-toggle {
  display: none;
}

.hamb {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 30px;
}

.hamb-line {
  background: #000000;
  height: 2px;
  width: 100%;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 2;
  }

  .hamb-toggle:checked + .hamb + .menu {
    display: flex;
    flex-direction: column;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu ul li {
    margin: 0;
    padding: 15px 30px;
    border-bottom: 1px solid #555;
  }

  .hamb {
    display: flex;
  }
}


.hero{
    text-align:center;
}




nav a {
  display: block;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 15px;
}

nav a:hover {
  background-color: #ffccff00;
}


/* Main Content */
main {
  padding: 50px;
}

/* Events Section */
.events-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.event-card {
  background-color: #8a116f;
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgb(0, 0, 0);
  margin-bottom: 10px;
  overflow: hidden;
  width: calc(33.33% - 10px);
}

.event-card img {
  width: 100%;
  height: auto;
}

.event-card h2 {
  font-size: 1.5rem;
  margin: 20px;
}

.event-card p {
  margin: 10px;
}



















* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-item {
  flex: 0 0 calc(50% - 10px);
  margin: 5px;
}

.grid-item img {
  max-width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .grid-item {
      flex: 0 0 calc(25% - 10px);
  }
}










.footer {
  width: 100%;
  background-color: #030117;
  color: #ffffff;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer p {
  margin: 0;
  padding-left: 20px;
}

.footer a {
  color: #fa70da;
  text-decoration: none;
  padding-right: 20px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ff93fa;
}
















/* Responsive Styles */
@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }

  header nav.toggle-menu {
    display: block;
  }

  header nav.toggle-menu button {
    background-color: transparent;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    margin-right: 10px;
  }

  header nav.toggle-menu ul {
    background-color: #423535;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  header nav.toggle-menu ul.show-menu {
    display: flex;
  }

  header nav.toggle-menu li {
    margin: 0;
    text-align: center;
  }

  header nav.toggle-menu a {
    display: block;
    padding: 10px;
  }

  .event-card {
    width: 100%;
  }
}

.logo {
  width: 200px; /* Change this to your desired width */
  height: auto; /* Set height to auto to maintain aspect ratio */
}


.full-width-text {
  position: relative;
}

.full-width-text::before,
.full-width-text::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.full-width-text::before {
  background-color: #ffffff; /* set the background color */
}


.event {
  background-color: #040515;
  padding: 20px;
  margin-bottom: 20px;
}

.event-name {
  font-size: 24px;
  color: white;
  margin-top: 0;
}

.event-date,
.event-location,
.event-price {
  margin-bottom: 10px;
  color: white;
}

.get-tickets {
  background-color: #ff28e9;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.get-tickets:hover {
  background-color: #ff55b5;
}

.container {
  text-align: center;
}

nav {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
  margin: 0 10px;
}

a {
  text-decoration: none;
  color: #ffffff;
}


.event-name {
text-align: center;
}

.get-tickets {
  align-items: center;
  }


  footer {
    background-color: hwb(236 2% 87%);
    color: #fff;
    padding: 10px 0;
  }
  
  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  
  .col-md-12 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  p {
    margin: 0;
    text-align: center;
  }

  
  .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .box {
    width: calc(25% - 0px);
    padding: 10px;
    box-sizing: border-box;
    border: 3px solid #ffb8f6;
    overflow: hidden;
  }
  
  .box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  
  html, body {
    height: 100%; width; 100%;
    margin: 0;
    padding; 0;
  }
  
  .wrap {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #120103;
    color: #fff;
    text-align: center;
  }
  
  html, body {
    height: 100%; width; 100%;
    margin: 0;
    padding; 0;
  }
  
  .wrap {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #120103;
    color: #fff;
    text-align: center;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height:40vh;
  }
  
  .custom-button {
    border-radius: 50px;
    font-family: 'proxima-nova', sans-serif;
    background-color: #ff3cf5;
    color: white;
    padding: 20px 30px;
    font-size: 20px;
    border: none;
    cursor: pointer;
  }







  


















/* Reset margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.social-icons {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.social-icons a {
  display: block;
  margin-bottom: 1px;
}

.social-icons img {
  width: 33px;
  height: 33px;
}





















body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-image {
  display: none;
}

@media (max-width: 768px) {
  .desktop-image {
      display: none;
  }

  .mobile-image {
      display: block;
  }
}
















  








