:root {
    --mainColor: #DC2626;
    --secondryColor: #FFFFFF;
    --iconBG: #FECACA;
    --textColor:#f0f1f4;
    --headerColor: #000000e3;
    --paragraphColor: rgb(99, 99, 99);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Header Styles */
header {
    background-color: black;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
}

.logo {
    background-color: black;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    color: gold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1001;
}

/* Desktop Navigation */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    background-color: black;
}

nav ul li {
    position: relative;
    background-color: black;
}

nav ul li a {
    display: block;
    padding: 12px 18px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    background-color: black;
    border-radius: 6px;
    margin: 0 4px;
}

nav ul li a:hover {
    background-color: gold;
    color: black;
    font-weight: 600;
    border-bottom: 3px solid black;
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
    margin-top: 5px;
    border: 2px solid gold;
}

/* Show dropdown when parent has 'active' class */
.has-dropdowns.active > .dropdown {
    display: block;
}

.dropdown li {
    position: relative;
    background-color: black;
}

.dropdown li:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.dropdown li:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.dropdown li a {
    color: white;
    padding: 14px 20px;
    display: block;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: black;
}

.dropdown li a:hover {
    background-color: gold;
    color: black;
    padding-left: 25px;
    font-weight: 600;
}

.has-dropdowns > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    transition: transform 0.3s;
    color: gold;
}

.has-dropdowns.active > a::after {
    transform: rotate(180deg);
}

/* Hamburger Menu Icon */
.menu-toggle {
    background-color: black;
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #FFFFFF;
    margin: 2px 0;
    transition: 0.4s;
}

/* Mobile Sidebar Styles */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: black;
        padding-top: 80px;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto;
    }

    #nav-check:checked ~ nav {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        width: 100%;
    }

    .dropdown li a {
        color: white;
    }

    /* Hamburger Animation */
    #nav-check:checked ~ .menu-toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    #nav-check:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    #nav-check:checked ~ .menu-toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }


}

#nav-check {
    display: none;
}
footer{    
    display: flex;
    flex-direction: row;
    height: 150px;
    justify-content: center;
    align-items: center;
    height: 150px;
}
.footer-blocks{
    height: 150px;
}
#footer-block1{
    height: 150px;
    width: 33.33%;
    color:white;
    display: flex;
    align-items: center;
    background-color: black;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
#footer-block2{
    height: 150px;
    width: 33.33%;
    color: gold;
    display: flex;
    align-items: center;
    background-color: black;
    justify-content: center;
    text-align: center;
}
#footer-block3{
    height: 150px;
    width: 33.33%;
    color: gold;
    display: flex;
    align-items: center;
    background-color: black;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}   
#footer-header{
    font-size: 50px;
    font-family: 'Courier New', Courier, monospace;
    background-color: black;

}
#Contact-us{
    background-color: transparent;
    font-size: 30px;
    margin-bottom: 20px;
    text-shadow: 4px 4px 5px gold;
}
#tiktok{
    background-color: black;
    text-shadow: 4px 4px 5px gold;
}
#instagram{
    background-color: transparent;
    text-shadow: 4px 4px 5px gold;
}
#social-icons{
    background-color: black;
    margin-right: 20px;
}
#email-link{
    color: white;
    background-color: black;
    font-size: 20px;
    text-decoration: none;
    text-shadow: 4px 4px 5px gold;
}
#demo{
    background-color: black;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 4px 4px 5px gold;
}
.footer-links{
    background-color: transparent;
    text-decoration: none;
    color: white;
}
#Copyright-box{
    display: block;
    margin: 0px
}
#Copyright{
    display: block;
    text-align: center;
    background-color: black;
    color: lightgray;
    padding: 10px;
    margin: 0px
}
/* =========================
   HARD MOBILE OVERFLOW KILL
   DO NOT REMOVE
========================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Catch ANY element that tries to exceed screen width */
* {
  max-width: 100%;
  box-sizing: border-box;
}
  button {
    width: 100%;
    background-color: gold;
    border-radius:  20px; ;
    padding: 5px;
  }

/* =========================
   MOBILE RESPONSIVE FIXES
========================= */
@media (max-width: 900px) {

  body {
    overflow-x: hidden;
  }
  /* MAIN */
  main {
    flex-direction: column;
    height: auto;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  /* FORMS & PRICE BOX */
  form,
  #priceBox {
    height: auto;
    width: 100%;
    max-width: 420px;
    margin: 20px auto;
    padding: 20px;
  }

  /* INPUTS */
  .options,
  .suboption {
    width: 100%;
  }

  /* BUTTONS */
  button {
    width: 100%;
    background-color: gold;
    border-radius:  20px; ;
    padding: 5px;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    height: auto;
  }

  .footer-blocks,
  #footer-block1,
  #footer-block2,
  #footer-block3 {
    width: 100%;
    height: auto;
    padding: 20px;
  }
   #footer-block1{
    padding-bottom: 10px;
   }

  #footer-header {
    font-size: 32px;
  }

  #Contact-us {
    font-size: 20px;
    margin-bottom: 10px;
  }
}