/*--------------------------------------------------------------

Template: Light
Author: xBoot
Author URI: http://wpfreethemeshop.com/
Version:  1.0
Design and Developed by: xBoot

Note: This is the file where you can add your custom styles to change the look of the theme. 
But don't modify "style.css" file.

---------------------------------------------------------------*/

/* ----------------------------------------------------
	You can put your custom CSS code here:
-------------------------------------------------------*/

/* SHOW the submenu itself */
/* HIDE dropdown by default */
.main-menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background-color: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

/* SHOW dropdown on hover */
.main-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Style the dropdown links */
.main-menu li ul li a {
  color: #1a1a1a;

  padding: 8px 0;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
}

/* Hover effect */
.main-menu li ul li a:hover {
  color: #009ab6;
}


/* ===== Scroll-Driven Marquee ===== */
.scroll-marquee{
  position: relative;
  overflow: hidden;
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-color: #d18600;
  
  display: flex;
  flex-direction: column;
  gap: 24px; /* spacing only between the two lines */
}

.scroll-marquee .marquee-row{
  line-height: 1.1;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .08em;
  will-change: transform;
  white-space: nowrap;
  margin: 0; /* remove top/bottom margin so gap takes control */
}

.scroll-marquee .marquee-row:nth-child(1){
  font-weight: 700;
  font-size: clamp(28px, 4vw, 60px);
}

.scroll-marquee .marquee-row:nth-child(2){
 font-weight: 700;
  font-size: clamp(28px, 4vw, 60px);
}

.scroll-marquee .marquee-track{
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.scroll-marquee .marquee-segment{
  flex: none;
  display: inline-block;
  padding-right: 8vw; /* visual gap between repeats */
}

.scroll-marquee .marquee-segment span{
  display: inline-block;
  margin-right: 2.2vw; /* gap between tokens */
}

/* Optional: adapt colors to your theme (your headings are white) */
.scroll-marquee, .scroll-marquee span{
  color: #fff;
}


/* Force mobile header background to match desktop */
.header-style-two .header-middle-area {
    background: #1c1c1c !important;
}