/*
Theme Name: Vinthisha Theme
Theme URI: https://vinthisha.lk
Author: Mr. T. Leenas
Author URI: https://vinthisha.lk
Description: Custom theme converted from BootstrapMade Strategy template
Version: 1.0
*/

.brand-highlight {
  color: #f7c639;
  font-weight: bold;
}

/* === Themed Contact Top Bar === */
.top-contact-bar {
  position: relative;
  z-index: 999;
  background: linear-gradient(90deg, 
    color-mix(in srgb, var(--accent-color), #f7c639 20%), 
    var(--accent-color), 
    color-mix(in srgb, var(--accent-color), #f7c639 20%)
  );
  color: var(--contrast-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 10px 20px;
  font-size: 12px; /* changed to 12px */
  font-weight: 700; /* keep bold for clarity */
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  border-radius: 12px 12px 0 0;
  flex-wrap: wrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.top-contact-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 80px;
  height: 100%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), var(--contrast-color) 80%) 0%, transparent 80%);
  animation: yellowLightMove 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes yellowLightMove {
  0% { left: -100px; }
  100% { left: 100%; }
}

.top-contact-bar a {
  color: color-mix(in srgb, var(--contrast-color), var(--accent-color) 70%);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-weight: 700;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 12px; /* changed to 12px */
}

.top-contact-bar a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
  transform: scale(1.05);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 4px 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-family: 'Segoe UI', 'Courier New', monospace, sans-serif;
  font-weight: 700;
  color: var(--contrast-color);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  font-size: 12px; /* changed to 12px */
}

.contact-item:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.contact-item i,
.contact-item svg {
  color: color-mix(in srgb, var(--contrast-color), var(--accent-color) 50%);
  font-size: 14px; /* slightly smaller for icons */
  transition: all 0.3s ease;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.top-contact-bar a:hover i,
.top-contact-bar a:hover svg {
  color: var(--contrast-color);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .top-contact-bar {
    display: none;
  }
}