/* ==========================================================================
   Giveaway Page Styles — LeviArs Floors & Interiors LLC
   Scoped under .giveaway-page body class to avoid conflicts with ui.min.css
   BEM block prefix: gw-
   Mobile-first, breakpoints: 600px / 960px / 1200px
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties — giveaway-specific tokens
   Not overriding existing site variables
   -------------------------------------------------------------------------- */
:root {
  --gw-black:    #0a0a0a;
  --gw-dark:     #111111;
  --gw-gold:     #c8922a;
  --gw-gold-lt:  #e8a93a;
  --gw-white:    #ffffff;
  --gw-grey:     #9a9a9a;
  --gw-border:   rgba(200, 146, 42, 0.25);
  --gw-cream:    #f5f0e8;
  --gw-radius:   4px;
  --gw-transition: 0.25s ease;
}

* {
	box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Base reset for giveaway page body
   -------------------------------------------------------------------------- */
.giveaway-page {
  background-color: var(--gw-black);
  color: var(--gw-white);
}
@media (min-width: 768px) {
  .header__menu {
    margin-bottom: 4px;
  }
}


/* --------------------------------------------------------------------------
   Header overrides — dark theme for giveaway page
   -------------------------------------------------------------------------- */
.giveaway-page .header {
  background-color: var(--gw-black);
  border-bottom: 1px solid var(--gw-border);
}

.giveaway-page .header__top {
  background-color: #050505;
  border-bottom: 1px solid var(--gw-border);
}

.giveaway-page .header__top a,
.giveaway-page .header__info li,
.giveaway-page .header__info a {
  color: var(--gw-grey);
}

.giveaway-page .header__top a:hover,
.giveaway-page .header__info a:hover {
  color: var(--gw-gold);
}

.giveaway-page .header__menu > li > a {
  color: var(--gw-white);
}

.giveaway-page .header__menu > li > a:hover {
  color: var(--gw-gold);
}

.giveaway-page .header__submenu {
  background-color: var(--gw-dark);
  border: 1px solid var(--gw-border);
}

.giveaway-page .header__submenu li a {
  color: var(--gw-grey);
}

.giveaway-page .header__submenu li a:hover {
  color: var(--gw-gold);
}

/* Mobile menu icon color override */
.giveaway-page .menu-bar,
.giveaway-page .menu-bar::before,
.giveaway-page .menu-bar::after {
  background-color: var(--gw-white);
}

/* --------------------------------------------------------------------------
   Buttons — gw-btn (built from scratch, all: unset)
   -------------------------------------------------------------------------- */
.gw-btn {
  all: unset;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  background: #936107;
  color: #ffffff;
  border: 1px solid #b98936;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.8rem 0.8rem;
  border-radius: var(--gw-radius);
  text-align: center;
  transition: background var(--gw-transition), color var(--gw-transition), transform var(--gw-transition);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gw-btn img {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}

.gw-btn:hover,
.gw-btn:focus-visible {
  background: #b98936;
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.gw-btn:active {
  transform: translateY(0);
}

/* Outline variant */
.gw-btn--outline {
  background: transparent;
  color: var(--gw-gold);
  border: 1px solid var(--gw-gold);
}

.gw-btn--outline:hover,
.gw-btn--outline:focus-visible {
  background: var(--gw-gold);
  color: #000000;
}
.gw-entry-card__container .gw-btn {
  max-width: 248px;
  margin: 30px auto 0;
}
.giveaway-page .container {
  width: 100% !important;
  max-width: 1050px !important;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.gw-hero {
  width: 100%;
  background-color: #030405;
  background-repeat: no-repeat;
  border-top: #936107 solid 1px;
  border-bottom: #936107 solid 1px;
}
.gw-hero .container {
  display: flex;
  position: relative;
  background-color: var(--gw-dark);
}
.gw-hero__inner {
  position: relative;
  z-index: 1;
  background:
    url('/img/giveaway/bg-hero.webp') center / 100% 100% no-repeat,
    linear-gradient(to right, #030405 82%, rgba(3, 4, 5, 0.05));
  flex: 0 0 50%;
  justify-content: flex-start;
  object-fit: cover;
}
.gw-hero__image {
  position: relative;
  flex: 0 0 50%;
}
.gw-hero__image img {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 120%;
  max-width: initial;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.gw-hero__eyebrow-container {
  width: 100%;
  max-width: 270px;
  margin: 1.25rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.gw-hero__line {
  flex: 1 1 5%;
  height: 1px;
  background-color: var(--gw-gold);
  transform: translateY(-50%);
  z-index: -1;
}
.gw-hero__eyebrow {
  display: block;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gw-gold);
}

.gw-hero__title {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--gw-white);
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  text-align: center;
}
.gw-hero-title__price {
  display: block;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 5.25rem;
  line-height: 1;
  margin-bottom: 0.3rem;
  background: linear-gradient(180deg, 
  #dca23f 0%, 
  #eab856 20%, 
  #e4a52b 35%, 
  #eab856 50%, 
  #e6a928 85%, 
  #d08a0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gw-hero__star {
  display: block;
  font-size: 1rem;
  color: var(--gw-gold);
  line-height: 1;
}

.gw-hero__desc {
  font-size: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.gw-hero__cta {
  margin-bottom: 0.5rem;
}

/* Hero badges */
.gw-hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  position: relative;
}

.gw-hero__badges::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, #935200, #bc7f00, #935200) top / 100% 1px no-repeat,
    linear-gradient(to right, #935200, #bc7f00, #935200) bottom / 100% 1px no-repeat,
    linear-gradient(to bottom, #935200, #bc7f00 50%, #935200) left / 1px 100% no-repeat,
    linear-gradient(to bottom, #935200, #bc7f00 50%, #935200) right / 1px 100% no-repeat;
}

.gw-badge {
  flex: 0 0 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.gw-badge img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  color: var(--gw-gold);
}

@media (max-width: 900px) {
  .gw-hero .container {
    flex-direction: column;
  }
  .gw-hero__inner {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  .gw-hero__inner {
    margin-bottom: 5px;
  }
  .gw-hero__image {
    flex: 0 0 auto;
    width: 100%;
    height: 300px;
  }
  .gw-hero__image img {
    width: 100%;
    left: 0;
    right: 0;
  }
  .gw-hero-title__price {
    font-size: 4.5rem;
  }
}

.icon-email {
  height: 38px !important;
}

@media (max-width: 485px) {
  .gw-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    justify-content: center;
    padding: 1.25rem 0.8rem;
  }
  .gw-badge {
    flex: 0 0 135px;
    justify-content: space-between;
  }
  .gw-badge span {
    min-width: 75px;
    text-align: left;
  }
  .divider, .mobile-none {
    display: none;
  }
}

@media (min-width: 600px) {
  .gw-hero__badges {
    flex-direction: row;
    justify-content: center;
  }
  .divider {
    flex: 0 0 auto;
    width: 2px;
    height: 40px;
  }
}

@media (min-width: 960px) {


  .gw-hero__title {
    font-size: 1.2rem;
  }

  .gw-hero__eyebrow {
    font-size: 0.88rem;
  }
}

@media (min-width: 1200px) {
  .gw-hero__title {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.gw-how {
  background-color: var(--gw-black);
  color: var(--gw-black);
  padding: 1.25rem 0;
  text-align: center;
}
.gw-how .gw-hero__eyebrow-container {
  margin: 0 auto;  
}
.gw-how .gw-hero__line {
  z-index: 1;
  opacity: 0.75;
}

.gw-how__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gw-gold);
  margin: 0 0 0.5rem;
}

.gw-how__subtitle {
  font-size: 0.88rem;
  color: #555555;
  margin: 0 0 3rem;
}

.gw-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.gw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.5rem;
  position: relative;
}

.gw-step__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--gw-gold);
  flex-shrink: 0;
}

.gw-step__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gw-gold);
  color: #000000;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gw-step__title {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-gold);
  margin: 0 0 0.5rem;
  text-align: center;
}

.gw-step__desc {
  font-size: 0.88rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.55;
  text-align: center;
}

@media (min-width: 600px) {
  .gw-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .gw-how {
    padding: 2rem 2rem;
  }

  .gw-steps {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .gw-step {
    flex: 0 0 25%;
  }
}
.gw-step__image {
  height: 90px;
  flex-shrink: 0;
}
.gw-step img {
  max-width: 80px;
  max-height: 80px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Entry Card Section
   -------------------------------------------------------------------------- */
.gw-entry-card {
  background-color: var(--gw-dark);
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px solid var(--gw-border);
  border-radius: 8px;
  width: 100%;
  max-width: calc(100% - 30px);
  margin: 2rem 15px;
}

.gw-entry-card__title {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gw-gold);
  margin: 0 0 0.75rem;
}

.gw-entry-card__desc {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.gw-entry-card__preview {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--gw-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-radius: var(--gw-radius);
}

@media (min-width: 960px) {
  .gw-entry-card {
    padding: 3rem 1rem;
  }

  .gw-entry-card__title {
    font-size: 2.5rem;
  }
}

.gw-entry-card__container {
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1150px) {
  .gw-entry-card {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
   Bottom Section — 3 columns
   -------------------------------------------------------------------------- */

.gw-bottom__container {
  width: 100%;
  display: flex;
  gap: 1rem;
}
@media (max-width: 1150px) {
  .gw-bottom__container {
    display: block;
    padding: 0 15px 30px;
  }
  .gw-official-rules {
    flex: initial !important;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
   }
  .divider-high {
    margin-left: 50px !important;
    margin-right: 50px !important;
    height: 300px !important;
    width: 2px !important;
    max-height: initial !important;
  } 
}
@media (max-width: 960px) {
  .divider-high { 
    display: none;
  }
}

.gw-bottom {
  background-color: var(--gw-black);
  padding: 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.gw-bottom__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--gw-border);
  border-radius: 8px;
  gap: 30px;
  padding: 30px 15px;
  margin-bottom: 30px;
}

.divider-high {
  margin: auto;
  height: 70%;
  width: 3px;
  max-height: 550px;
}

/* --------------------------------------------------------------------------
   Rules Column
   -------------------------------------------------------------------------- */
.gw-rules__title {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-gold);
  margin: 0 0 1.25rem;
  text-align: center;
}

.gw-rules__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gw-rules__list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  padding-left: 1.35rem;
  position: relative;
}

.gw-rules__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 16px;
  height: 16px;
  background: url('/img/giveaway/icon-li.png') center / contain no-repeat;
  flex-shrink: 0;
}
.gw-rules__img {
  display: block;
  width: 60px;
  height: auto;
  margin: 0.5rem auto;
}
/* --------------------------------------------------------------------------
   Official Rules Column
   -------------------------------------------------------------------------- */
.gw-official-rules__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-white);
  margin: 0 0 1rem;
}

.gw-official-rules__desc {
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  text-align: center;
}

.gw-official-rules__qr {
  display: block;
  width: 100px;
  height: auto;
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
}
.qr-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}
.qr-block__text {
  font-size: 0.88rem;
  color: #ffffff
}

/* --------------------------------------------------------------------------
   Showroom Column
   -------------------------------------------------------------------------- */
.gw-showroom__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--gw-radius);
  margin-bottom: 1.25rem;
}

.gw-showroom__title {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-white);
  margin: 0 0 0.75rem;
}

.gw-showroom__address {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 0.2rem;
}

.gw-showroom__phone {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--gw-gold);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color var(--gw-transition);
}

.gw-showroom__phone:hover {
  color: var(--gw-gold-lt);
}

.gw-showroom__row {
  width: 100%;
  display: flex;
  gap: 0.75rem;
}

.gw-showroom__col.gw-showroom__col--info {
  display: flex;
}
.gw-showroom__col {
  flex: 1 1 50%;
}
.gw-showroom__icon {
  height: 35px;
  width: auto;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.gw-showroom__phone .gw-showroom__icon {
  height: 20px;
}

@media (min-width: 960px) {
  .gw-bottom {
    padding: 0;
  }

  .gw-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    margin-bottom: 0;
  }

  .gw-rules {
    flex: 1 1 70%;
    padding: 2rem 1rem 2rem 1.5rem;
  }

  .gw-official-rules {
    flex: 0 0 280px;
    padding: 2rem 1.5rem 2rem 1rem;
  }

  .gw-showroom {
    flex: 1 1 100%;
    padding: 2rem 0.5rem;
  }
}

@media (max-width: 1150px) {
  .gw-showroom {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 450px) {
  .gw-footer__tagline {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
  }
  .gw-footer__tagline span {
    display: block !important;
   }
}

@media (max-width: 960px) {
  .gw-rules {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* --------------------------------------------------------------------------
   Giveaway Footer
   -------------------------------------------------------------------------- */
.gw-footer {
  background-color: var(--gw-black);
  padding: 1rem 0 3.5rem;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.gw-footer .gw-hero__eyebrow-container {
  max-width: 100%;
  gap: 1.25rem;

}
.gw-footer .gw-hero__line {
  z-index: 1;
  position: relative;
}
.gw-footer .gw-hero__line:nth-child(1)::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: var(--gw-gold);
  border-radius: 50%;
}
.gw-footer .gw-hero__line:last-child::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--gw-gold);
  border-radius: 50%;
}

.gw-footer__tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1;
  color: #ffffff;
  padding-bottom: 4px;
}

.gw-footer__divider {
  border: none;
  border-top: 1px solid var(--gw-border);
  margin: 0 0 1.5rem;
}

.gw-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gw-footer__copy {
  font-size: 0.8125rem;
  color: var(--gw-grey);
  margin: 0;
  flex: 0 0 35%;
  display: flex;
  justify-content: start;
}

.gw-footer__links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gw-gold);
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
}

.gw-footer__links a {
  font-size: 0.8125rem;
  color: var(--gw-grey);
  text-decoration: none;
  transition: color var(--gw-transition);
}

.gw-footer__links a:hover {
  color: var(--gw-gold);
}

/* Social icons */
.gw-footer__social {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 30%;
  display: flex;
  justify-content: flex-end;
}

.gw-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--gw-transition);
}

.gw-footer__social-link:hover {
  transform: scale(1.12);
}

.gw-footer__social-link img {
  width: auto;
  height: 26px;
}

@media (min-width: 960px) {
  .gw-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   Utility — visually-hidden (accessible screen reader text)
   -------------------------------------------------------------------------- */
.giveaway-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
