/* Gürer Aykal Competition Theme Colors */
:root {
  /* Primary Competition Colors */
  --competition-gold: #BD9F69;
  --competition-light-gray: #F7F7F7;
  --competition-white: #FFFFFF;
  --competition-dark-gold: #A0834E;
  --competition-black: #080808;
  
  /* Override existing color variables */
  --ztc-text-text-2: #BD9F69; /* Primary brand color */
  --ztc-text-text-3: #080808; /* Dark text color */
  --ztc-text-text-5: #080808; /* Secondary dark text */
  --ztc-text-text-9: #A0834E; /* Accent color */
  
  --ztc-bg-bg-1: #F7F7F7; /* Light background */
  --ztc-bg-bg-3: #BD9F69; /* Primary background */
  --ztc-bg-bg-7: #A0834E; /* Secondary background */
  --ztc-bg-bg-4: #080808; /* Dark background */
}

/* Primary button styles */
.header-btn1 {
  background-color: #BD9F69 !important;
  border-color: #BD9F69 !important;
  color: #FFFFFF !important;
}

.header-btn1:hover {
  background-color: #A0834E !important;
  border-color: #A0834E !important;
  color: #FFFFFF !important;
}

/* Secondary button styles */
.header-btn2 {
  background-color: transparent !important;
  border-color: #BD9F69 !important;
  color: #BD9F69 !important;
}

.header-btn2:hover {
  background-color: #BD9F69 !important;
  border-color: #BD9F69 !important;
  color: #FFFFFF !important;
}

/* Service/Competition section styles */
.service-auhtor-boxarea h3 {
  color: #BD9F69 !important;
}

.service-auhtor-boxarea .readmore {
  color: #A0834E !important;
}

.service-auhtor-boxarea .readmore:hover {
  color: #BD9F69 !important;
}

/* Navigation active state */
.nav-link.active {
  color: #BD9F69 !important;
}

.nav-link:hover {
  color: #A0834E !important;
}

/* Work section tabs */
.nav-pills .nav-link.active {
  background-color: #BD9F69 !important;
  color: #FFFFFF !important;
}

.nav-pills .nav-link {
  color: #080808 !important;
}

.nav-pills .nav-link:hover {
  background-color: #F7F7F7 !important;
  color: #A0834E !important;
}

/* Headings color scheme */
h1, h2, h3, h4, h5, h6 {
  color: #080808 !important;
}

.tg-element-title {
  color: #080808 !important;
}

/* Accent elements */
.counter {
  color: #BD9F69 !important;
}

/* Icons and decorative elements */
.fa-music {
  color: #BD9F69 !important;
}

.check1 {
  filter: hue-rotate(30deg) saturate(0.8);
}

/* Footer styling */
.footer1-section-area {
  background-color: #080808 !important;
  color: #F7F7F7 !important;
}

.footer1-section-area h2, 
.footer1-section-area a {
  color: #F7F7F7 !important;
}

.footer1-section-area a:hover {
  color: #BD9F69 !important;
}

/* Form elements */
input, textarea {
  border: 1px solid #BD9F69 !important;
}

input:focus, textarea:focus {
  border-color: #A0834E !important;
  box-shadow: 0 0 0 0.2rem rgba(189, 159, 105, 0.25) !important;
}

/* Links */
a {
  color: #A0834E !important;
}

a:hover {
  color: #BD9F69 !important;
}

/* Dropdown Menu Styles */
.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown {
  position: relative !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background-color: #FFFFFF !important;
  border: 1px solid #BD9F69 !important;
  border-radius: 5px !important;
  box-shadow: 0 4px 6px rgba(189, 159, 105, 0.2) !important;
  min-width: 160px !important;
  z-index: 9999 !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  list-style: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: all 0.3s ease !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown-menu li {
  padding: 0 !important;
  margin: 0 !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown-menu li a {
  display: block !important;
  padding: 8px 20px !important;
  color: #080808 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown-menu li a:hover {
  background-color: #F7F7F7 !important;
  color: #BD9F69 !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown:hover .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown .fa-chevron-down {
  font-size: 12px !important;
  margin-left: 5px !important;
  transition: transform 0.3s ease !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu .dropdown:hover .fa-chevron-down {
  transform: rotate(180deg) !important;
}

/* Language Selector Styles */
.language-selector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(189, 159, 105, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  border: 1px solid rgba(189, 159, 105, 0.3);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #BD9F69 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 4px 6px;
  border-radius: 12px;
  min-width: 36px;
  justify-content: center;
}

.lang-option:hover {
  background: rgba(189, 159, 105, 0.2);
  color: #A0834E !important;
  transform: scale(1.05);
}

.lang-option img {
  border-radius: 3px;
  vertical-align: middle;
  width: 18px !important;
  height: 13px !important;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.separator {
  color: #BD9F69;
  font-weight: 300;
  font-size: 14px;
  opacity: 0.6;
}

/* Header button area flex fix */
.btn-area {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-end;
}

.header-btn1 {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Header elements responsive fix */
.homepage1-body .header-area.homepage1 .header-elements {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 20px !important;
}

.homepage1-body .header-area.homepage1 .header-elements .site-logo {
  flex-shrink: 0 !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  max-width: none !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu ul {
  display: flex !important;
  align-items: center !important;
  gap: 35px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li {
  position: relative !important;
}

.homepage1-body .header-area.homepage1 .header-elements .btn-area {
  flex-shrink: 0 !important;
  margin-left: auto !important;
}

/* Dropdown chevron single icon fix */
.dropdown > .nav-link > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Main menu links styling */
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a.nav-link {
  color: #BD9F69 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  padding: 8px 0 !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a.nav-link:hover {
  color: #A0834E !important;
}

.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a.nav-link.active {
  color: #A0834E !important;
  font-weight: 600 !important;
}

/* Hero button alignment fix */
.hero-heading-area .btn-area {
  text-align: left !important;
  justify-content: flex-start !important;
  display: flex !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
}

/* Hero slider background fix */
.slider-header-carousel .owl-item {
  background-color: #080808 !important;
}

.hero1-section-area {
  background-color: #080808 !important;
  position: relative !important;
}

.hero1-section-area .header-img1 {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
}

.hero1-section-area .container {
  position: relative !important;
  z-index: 2 !important;
}

/* Owl carousel dots styling */
.owl-dots {
  text-align: center !important;
  margin-top: 20px !important;
}

.owl-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(189, 159, 105, 0.5) !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.owl-dot.active {
  background-color: #BD9F69 !important;
}

/* Mobile menu updates */
@media (max-width: 991px) {
  .language-selector {
    margin-right: 0;
    margin-bottom: 10px;
    justify-content: center;
  }
  
  .hero-heading-area .btn-area {
    justify-content: center !important;
  }
}