/* Basic components for MrBeast Meme Website */

.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

.w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}

.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}

.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.w-nav-menu {
  position: relative;
  float: right;
}

.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
}

.w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}

.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}

.w-dropdown-toggle:hover + .w-dropdown-list,
.w-dropdown-list:hover {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.button {
  padding: 10px 20px;
  border-radius: 4px;
  background-color: #0078ff;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #0056b3;
}

.button.is-small {
  padding: 8px 16px;
  font-size: 14px;
}

.button.is-round {
  border-radius: 20px;
}

.button.blue {
  background-color: #0078ff;
}

.button-primary-cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0078ff;
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button-primary-cta:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.button-primary-cta.smaller {
  padding: 12px 24px;
  font-size: 16px;
}

.button-primary-cta.wider {
  min-width: 200px;
}

.text-color-white {
  color: white;
}

.text-color-alternate {
  color: #333333;
}

.text-size-large {
  font-size: 18px;
  line-height: 1.6;
}

.text-size-medium {
  font-size: 16px;
  line-height: 1.5;
}

.heading-style-h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

.heading-style-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

.heading-style-h2-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

.container-large {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.max-width-large {
  max-width: 800px;
}

.max-width-medium {
  max-width: 600px;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom {
  margin-bottom: 30px;
}

.margin-small {
  margin-bottom: 15px;
}

.margin-medium {
  margin-bottom: 30px;
}

.margin-large {
  margin-bottom: 60px;
}

.margin-xlarge {
  margin-bottom: 80px;
}

.margin-xxlarge {
  margin-bottom: 120px;
}

.margin-top {
  margin-top: 30px;
}

.padding-global {
  padding: 60px 5%;
}

.padding-global-2 {
  padding: 40px 5%;
}

.padding-section-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blue-text {
  color: #0078ff;
}

.underline {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.underline:after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #0078ff;
  z-index: -1;
  opacity: 0.6;
}

/* For mobile devices */
@media screen and (max-width: 767px) {
  .heading-style-h1 {
    font-size: 36px;
  }
  
  .heading-style-h2 {
    font-size: 30px;
  }
  
  .heading-style-h2-2 {
    font-size: 28px;
  }
  
  .padding-section-large {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .margin-xxlarge {
    margin-bottom: 80px;
  }
} 