.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.temp-lable{
  text-align: center;
}
/* Header Styles
/* Header Styles - Made Sticky */
header {
    background: linear-gradient(to bottom, #2c1a1a 0%, #1a1010 100%);
    border-bottom: 2px solid #d35400;
    padding: 15px 0;
    /*position: sticky;*/
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    background: linear-gradient(to right, #d35400, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(211, 84, 0, 0.3);
    margin-left: 10px;
}

/* This ensures the link inherits the gradient properly */
.logo h1 a {
    color: inherit;
    text-decoration: none;
    background: inherit;
    -webkit-background-clip: inherit;
    background-clip: inherit;
}

.logo-icon {
    font-size: 2.5rem;
    color: #d35400;
    text-shadow: 0 0 10px rgba(211, 84, 0, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
    background: rgba(211, 84, 0, 0.2);
}

.auth-buttons {
    display: flex;
}

/* ===== Dropdown (vertical/column layout) ===== */
.nav-menu ul.main-nav { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.nav-menu li { position: relative; }
.nav-menu a { color: #e0e0e0; text-decoration: none; font-weight: 600; padding: 6px 10px; border-radius: 6px; transition: all .2s ease; }
.nav-menu a:hover, .nav-menu a.active { color: #fff; background: rgba(211,84,0,.2); }

.dropbtn { font-size: 1.1rem; border: none; outline: none; }
/* Trigger button */
.nav-menu .dropbtn {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #e0e0e0; font-weight: 700;
  border: 1px solid transparent; border-radius: 6px;
  padding: 4px 10px; cursor: pointer; transition: all .2s ease;
}
.nav-menu .dropbtn:hover,
.nav-menu .dropdown.open .dropbtn {
  color: #fff;
  background: rgba(211,84,0,.2);
  border-color: rgba(211,84,0,.35);
}
.nav-menu .dropbtn .fa-caret-down { transition: transform .2s ease; }
.nav-menu .dropdown.open .dropbtn .fa-caret-down { transform: rotate(180deg); }

/* Column-style menu */
.nav-menu .dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  display: flex; flex-direction: column; gap: 6px;   /* <-- vertical */
  background: linear-gradient(145deg, #1e1818 0%, #181414 100%);
  border: 1px solid #333; border-radius: 10px; padding: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35), inset 0 0 0 1px rgba(211,84,0,.1);
  min-width: 220px;                                  /* nice panel width */
  opacity: 0; transform: translateY(-6px); visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 2000;
}
.nav-menu .dropdown.open .dropdown-menu{
/* optional hover open */
  opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto;
}

.nav-menu .dropdown-menu li { list-style: none; }
.nav-menu .dropdown-menu a {
  display: block; width: 100%;
  padding: 10px 12px; border-radius: 8px; color: #ccc;
  ;
}
.nav-menu .dropdown-menu a:hover {
  background: linear-gradient(135deg, #d35400, #f39c12); color: #fff;
}

/* little arrow nub */
.nav-menu .dropdown-menu::before {
  content: ""; position: absolute; top: -8px; left: 16px; width: 14px; height: 14px;
  transform: rotate(45deg);
  background: #1e1818; border-left: 1px solid #333; border-top: 1px solid #333;
}

/* Mobile: render inline under button */
@media (max-width: 800px) {
  .nav-menu ul.main-nav { flex-wrap: wrap; gap: 12px; }
  .nav-menu .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; margin-top: 8px; width: 100%;
  }
  .nav-menu .dropdown-menu::before { display: none; }
}


.btn {
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-align: center;
    width: 120px;
}

.btn-login {
    background: linear-gradient(to right, #d35400, #f39c12);
    color: #fff;
    border: 1px solid #d35400;
}

.btn-register {
    background: linear-gradient(to right, #d35400, #f39c12);
    color: #fff;
    border: 1px solid #d35400;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.container.header-content{
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}