* {
  padding: 0;
  margin: 0;
  font-family: cabin;
}

body {
  font-family: jost;
  padding: 0;
  margin: 0;
}

/* TOP BAR */
.top-bar {
    background: #000;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

/* NAVBAR */

/* Smooth hover background effect */
/* Initial navbar (transparent) */
header.navbar {
    position: relative;
    z-index: 10;
}

/* Sliding background layer */
header.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s ease-in-out;
}

/* Hover: slide background down */
header.navbar:hover::before {
    height: 100%;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.nav-left a {
    margin-right: 22px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-center img {
    height: 38px;
}

.nav-right i {
    font-size: 18px;
    margin-left: 18px;
    cursor: pointer;
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown menu box */
.dropdown-menu,
.dropdown-menu-learn {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 20;
}

.dropdown-menu-learn{
  min-width: 350px;
}

/* Dropdown menu links */
.dropdown-menu a,
.dropdown-menu-learn a {
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  display: block;
  transition: 0.3s ease;
  margin: 0;
}

.dropdown-menu a:hover,
.dropdown-menu-learn a:hover {
  background: #f5f5f5;
  color: #d3a257; /* gold color */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu-learn {
  display: flex;
}

/* Make SHOP look active when opened */
.dropdown:hover > .dropbtn {
  color: #d3a257;
}


/* Hero section */

.hero-section, 
.gold-section,
.unlocking-section {

    padding: 60px 120px;
    text-align: center;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 40px;
}

.hero-left, .gold-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  padding-left: 30px;
  margin-left: 30px;
  gap: 10px;

}

.hero-left h1, 
.hero-left p, 
.gold-left h1, 
.gold-left p {
    margin: 0;
    padding: 0;
    text-align: left;
}

.hero-left h1,
.gold-left h1 {
    font-size: 5.5vw;
    font-weight: 700;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    width: 80%;
}

.hero-left h5{
  font-size: 20px;
  font-weight: 400;
}

.hero-right img, 
.gold-right img {
    width: 35vw;
    border-radius: 10px;
}

.root{
  color: #c4a83b;
}

/* FOOTER */
.footer {
    background: transparent;
    padding: 60px 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #222;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    width: 260px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
}

.currency {
    margin-bottom: 10px;
    cursor: pointer;
}

.social-icons a {
    font-size: 24px;
    color: #000;
    margin: 0 10px;
}

.copy {
    margin: 15px 0;
    font-size: 14px;
}

@media (max-width: 600px) {
    }
.hero-section, .gold-section, .unlocking-section {
    padding: 50px 0px;
    text-align: center;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}