/* Responsive Footer Layout */
.footer-widgets-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0;
    margin-bottom: 0.5em;
}
.footer-row-desktop { display: flex; }
.footer-row-tablet, .footer-row-mobile { display: none; }
.footer-column {
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .footer-row-desktop { display: none; }
    .footer-row-tablet { display: flex; }
    .footer-row-mobile { display: none; }
}
@media (max-width: 767px) {
    .footer-row-desktop, .footer-row-tablet { display: none; }
    .footer-row-mobile { display: flex; }
}
/* Ensure columns wrap if too many */
.footer-row { flex-wrap: wrap; }
.footer-column { flex-shrink: 0; }
/* Optional: add visual separation */
.footer-column:not(:last-child) { border-right: 1px solid #eee; }
/* Main styles for Walkman theme */

/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    letter-spacing: .01em;
    line-height: 1.67em;
    text-transform: none;
    color: #4d4d4d;
    background-color: #fff;
}

html, body { overflow-x: hidden; }

/* Header styles - Updated to match requested design */
.site-header {
    min-height: 60px;
    height: auto;
    overflow: visible !important;
    background-color: #373737;
    color: #f4f4f4;
    position: relative;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.strip {
    width: 100%;
    max-width: 100%;
}

.wrapper {
    max-width: 1240px;
    margin: 0 auto;
    background-color: #373737;
    position: relative;
    overflow: visible !important;
}

/* Branding bar with centered, large logo */
.branding-bar {
    text-align: center;
    padding: 30px 0;
    background: #ffffff;
}

.branding-inner .custom-logo,
.branding-inner img {
    display: inline-block;
    max-height: 180px;
    height: auto;
    width: auto;
    max-width: 92vw; /* ensure fits on narrow screens */
}

@media (max-width: 767px) {
    .branding-inner .custom-logo,
    .branding-inner img { max-height: 120px; }
}

/* Ensure custom-logo link doesn’t collapse and remains visible */
.branding-inner .custom-logo-link { display: inline-block; line-height: 0; }

/* Visually hide screen-reader-only text but keep it accessible */
.screen-reader-text {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* prevent line breaks */
}
.screen-reader-text:focus {
  position: static !important;
  height: auto; width: auto;
  clip: auto;
  padding: 8px 12px;
  background: #000; color: #fff;
  z-index: 100000;
}

/* Mobile menu label */
#drop .label { display: inline-block; margin-right: 8px; font-size: 16px; }
@media (min-width: 768px) { #drop .label { display: none; } }

.site-title.branding {
    float: left;
    display: inline-block;
    margin: 20px 0 0 20px;
    font-size: 26px;
    color: #fff;
    font-weight: normal;
}

.site-title.branding a {
    color: #fff;
    text-decoration: none;
}

.site-title.branding .site-description {
    display: inline;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
}

.fwb {
    font-weight: 600;
}

.fwl {
    font-weight: 300;
}

#drop {
    font-family: "FontAwesome";
    background-color: #000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 6px;
    z-index: 10001;
    position: absolute;
    right: 12px;
    top: 8px;
    text-decoration: none !important;
}

#drop:hover {
    background-color: #222;
    text-decoration: none !important;
}

#drop:focus {
    outline: none;
    text-decoration: none !important;
}

#drop i { font-size: 22px; line-height: 1; }

#drop.active {
    background-color: #222;
    color: #927528;
}

#site-navigation ul {
    float: none;
    margin-top: 0;
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    #site-navigation ul {
        float: none;
        margin-right: 0;
        display: block;
        width: auto;
    }
}

#site-navigation li {
    position: relative;
    float: left;
    display: block;
    text-align: left;
    text-indent: 10px;
    width: 100%;
    margin-left: 0;
    font-size: 1.2em;
    background-color: transparent;
    height: auto;
    padding: 0;
}

@media (min-width: 768px) {
    #site-navigation li {
        display: inline-block;
        margin-left: 10px;
        text-align: center;
        padding: 0 20px;
        min-height: 60px;
        height: auto;
        width: auto;
        margin: 0;
        text-indent: 0;
        position: relative;
    }

    /* Center text in first-level menu items only */
    #site-navigation > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 60px;
        padding: 10px 5px;
        max-width: 200px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }
}

#site-navigation li.menu-item-has-children {
    padding-right: 0;
}

@media (min-width: 768px) {
    #site-navigation li.menu-item-has-children {
        padding-right: 34px;
    }
}



/* For when there are too many menu items - NO LONGER USED - handled by horizontal scroll */

#site-navigation li:hover {
    background-color: #2c2c2c;
}

#site-navigation a {
    padding: 10px;
    line-height: 26px;
    width: 100%;
    display: block;
    color: #fff;
    font-size: 14px;
}

@media (min-width: 768px) {
    #site-navigation a {
        line-height: 1.2;
        padding: 0;
        margin: 0;
        text-indent: 0;
        white-space: normal;
        word-wrap: break-word;
    }
}

/* Submenu base styles - using WordPress .sub-menu class */

#site-navigation .sub-menu li {
    margin: 0;
    height: auto;
    background-color: #2c2c2c;
    line-height: 20px;
    padding-left: 0;
    width: 100%;
    text-indent: 40px; /* Mobile indent */
}

@media (min-width: 768px) {
    #site-navigation .sub-menu li {
        padding: 0;
        text-indent: 0; /* Remove indent for desktop */
        width: 100%;
        transition: background-color 0.2s ease;
    }

    #site-navigation .sub-menu li:hover {
        background-color: #222;
    }
}

#site-navigation .sub-menu li:hover, #site-navigation .sub-menu li.active {
    background-color: #222;
}

#site-navigation .sub-menu li:last-child {
    margin-bottom: 8px;
}

#site-navigation .sub-menu a {
    padding-left: 0;
    width: 100%;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 768px) {
    #site-navigation .sub-menu a {
        line-height: 1.2;
        display: block;
        text-align: left;
        padding: 12px 20px;
        width: 100%;
        font-size: 14px;
    }
    
    #site-navigation .sub-menu a:hover {
        color: #fff;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* WordPress specific menu classes */
@media (max-width: 767px) {
    #site-navigation .sub-menu {
        display: none; /* hidden by default on mobile; we open via JS */
    }
}

/* Show submenus on mobile when parent is open */
@media (max-width: 767px) {
  #site-navigation li.open > .sub-menu {
    display: block;
  }
  #site-navigation .sub-menu {
    position: static !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    /* Ensure mobile submenus are in normal document flow */
    width: 100% !important;
    background: #2c2c2c !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Add smooth transition for mobile submenu opening */
  #site-navigation .sub-menu {
    transition: none !important;
  }
}

/* Ensure proper desktop behavior for submenu with smooth hover AND click */
@media (min-width: 768px) {
    /* Base navigation styles */
    #site-navigation {
        position: relative;
        z-index: 1000;
        overflow: visible !important;
    }
    
    /* Make sure parent li is positioned */
    #site-navigation li.menu-item-has-children {
        position: relative;
        overflow: visible !important;
    }

    /* Target WordPress .sub-menu class specifically */
    #site-navigation .sub-menu {
        position: absolute !important;
        top: 100%;
        left: 0;
        background: #2c2c2c !important;
        min-width: 220px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        pointer-events: none;
        margin: 0 !important;
        padding: 8px 0 !important;
        z-index: 20001 !important;
        display: block !important;
        border-radius: 4px;
        /* Ensure submenus can break out of navigation container */
        contain: none;
        overflow: visible;
    }

    /* Show submenu on hover OR when parent has .open class */
    #site-navigation li:hover > .sub-menu,
    #site-navigation li.open > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        clip-path: none !important;
    }

    /* Also handle nested submenus */
    #site-navigation .sub-menu .sub-menu {
        top: 0;
        left: 100%;
    }

    #site-navigation li:hover > .sub-menu .sub-menu,
    #site-navigation li.open > .sub-menu .sub-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
    }

    #site-navigation li:hover > .sub-menu li:hover > .sub-menu,
    #site-navigation li.open > .sub-menu li.open > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Responsive video containers */
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Reduce spacing when multiple video containers appear consecutively */
.video-container + .video-container {
    margin-top: -25px; /* Reduce space between consecutive videos */
}

/* Responsive wrapper for embedded content */
.content-area iframe,
.content-area embed,
.content-area object {
    max-width: 100%;
}

/* Specific responsive wrapper for WordPress oEmbed content */
.wp-video,
.wp-embedded-content,
.entry-content iframe,
.entry-content embed,
.entry-content object {
    max-width: 100%;
}

.entry-content .wp-video-shortcode {
    width: 100% !important;
    height: auto !important;
}

/* Hero section styles */
.hero-section {
    position: relative;
    height: 66.666vh; /* two-thirds of viewport */
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-video-container,
.hero-image-container {
    position: absolute; /* confined inside hero */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    border: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Make embedded video fill and crop to cover */
.hero-video-container iframe.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 177.78%; /* approximate 16:9 relative to container height */
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%); /* scale applied via JS to ensure cover */
    transform-origin: center center;
    border: 0;
    pointer-events: none;
}

/* Ensure videos are cropped properly and fill the container */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%); /* scale via JS */
    transform-origin: center center;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.hero-video-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* scale via JS */
    transform-origin: center center;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

.hero-image-container.default-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62); /* slightly darker */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Centered logo in Hero */
.hero-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.hero-logo .custom-logo,
.hero-logo img {
    max-height: 200px;
    height: auto;
    width: auto;
}

@media (min-width: 768px) {
    .hero-logo .custom-logo,
    .hero-logo img {
        max-height: 260px;
    }
}

.hero-title {
    margin: 0 0 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Roboto Condensed', 'Noto Sans', Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 70px;
    letter-spacing: .31em;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-subtitle {
    font-family: 'Roboto Condensed', 'Noto Sans', Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 24px;
    letter-spacing: .22em;
    line-height: 1.2em;
    text-transform: uppercase;
    margin: 0 0 24px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-widgets {
    margin-top: 30px;
}

/* Content area styles */
.content-area {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

.site-main {
    width: 100%;
}

/* Page content container - consistent padding like blocks */
.page-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-content-container article {
    padding: 0;
}

.page-content-container .entry-content {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Footer styles */
.site-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 40px 0 0;
    margin-top: 40px;
}

/* Front page blocks */
.block-stack { width: 100%; }
.block-section { padding: 40px 0; }
.block-section .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.block-section.alt-odd { background: #ffffff; }
.block-section.alt-even { background: #f7f7f7; }
.block-title { font-family: 'GFS Didot', 'Noto Serif', serif; font-weight: 400; font-style: normal; font-size: 29px; letter-spacing: .02em; line-height: 1em; text-transform: capitalize; margin: 0 0 16px; }
.block-excerpt, .block-content { font-size: 16px; color: #444; }
.button.read-more { display: inline-block; padding: 10px 16px; background: #222; color: #fff; text-decoration: none; border-radius: 4px; transition: background .2s ease; }
.button.read-more:hover { background: #000; }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-widgets {
    padding-bottom: 30px;
}

.footer-widgets-inner {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
    min-width: 250px; /* Minimum width before stacking */
    margin-bottom: 20px;
}

.widget {
    margin-bottom: 20px;
}

.widget-title, .widget-title, .footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.widget a, .site-footer a {
    color: #ccc;
    text-decoration: none;
}

.widget a:hover, .site-footer a:hover {
    color: #927528;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
}

/* Footer social icons styling */
.footer-social-icons {
    margin-bottom: 20px;
}

.footer-social-icons .hero-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.footer-social-icons .hero-social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
}

.footer-social-icons .hero-social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-social-icons .hero-social-icons a i {
    color: white;
    font-size: 18px;
}

.site-info {
    color: #aaa;
    font-size: 14px;
}

.site-info a {
    color: #ddd;
}

.site-info a:hover {
    color: #927528;
}

.copyright {
    display: block;
    margin-bottom: 10px;
}

/* Responsive styles */
@media (min-width: 768px) {
    .footer-widgets-inner {
        flex-direction: row;
    }
    
    .footer-column {
        flex: 1;
    }
    
    .hero-title { font-size: 70px; }
    .hero-subtitle { font-size: 28px; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 80px; }
    .hero-subtitle { font-size: 32px; }
}

/* Content sections styles */
.content-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding: 40px 0;
}

.content-column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.content-element {
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.text-element .element-title {
    color: #333;
    margin-top: 0;
    font-size: 24px;
}

.text-element .element-content {
    color: #666;
    line-height: 1.7;
}

.image-element img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}



/* Text contrast adjustment for hero */
.text-contrast { background: transparent; padding: 0; }

/* Limit menu to a single sub-level - disabled to allow submenus */
/* #site-navigation ul ul ul { display: none !important; } */

/* Header color schemes (from Theme Options) */
.header-scheme-dark .site-header,
.header-scheme-dark .wrapper { background-color: #373737 !important; }

.header-scheme-black .site-header,
.header-scheme-black .wrapper { background-color: #000000 !important; }

/* --- Overrides / Enhancements for centered menu, fonts, sticky header, hero 100vh --- */
/* Fonts */
/* Base font-family is defined on body earlier (Cormorant). */

/* Global heading typography (Cormorant) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'GFS Didot', 'Noto Serif', serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .02em;
  line-height: 1em;
  text-transform: capitalize;
  color: #222;
}
h1 { font-size: 36px; }
h2 { font-size: 29px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Sticky header on scroll */
.site-header { position: sticky; top: 0; z-index: 20000; }

/* Center main navigation on desktop */
@media (min-width: 768px) {
  #drop { display: none; }

  /* Navigation wrapper for arrows */
  .wrapper {
    position: relative;
  }

  /* Make navigation scrollable when menu items overflow */
  /* IMPORTANT: overflow must be visible to allow submenus to show */
  #site-navigation {
    position: relative; /* Need relative positioning for z-index to work */
  }

  /* Move scrolling to the UL instead */
  #site-navigation > ul {
    overflow-x: auto;
    overflow-y: hidden;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    /* Prevent vertical scrolling while allowing submenus */
    overscroll-behavior-y: none;
    overscroll-behavior-x: contain;
  }

  #site-navigation > ul::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  #site-navigation > ul {
    display: flex !important;
    justify-content: flex-start; /* Change from center to flex-start for overflow */
    align-items: center;
    float: none;
    margin: 0 auto;
    width: auto;
    flex-wrap: nowrap; /* Don't wrap - scroll instead */
    min-width: min-content;
    padding: 0 20px; /* Reduced padding */
  }

  #site-navigation > ul > li {
    float: none;
    min-height: 60px;
    height: auto !important;
    flex-shrink: 0; /* Prevent menu items from shrinking */
    margin: 0 13px; /* Add spacing between items (26px total gap) */
  }

  /* Add extra margin to first and last items for proper spacing */
  #site-navigation > ul > li:first-child {
    margin-left: 40px;
  }

  #site-navigation > ul > li:last-child {
    margin-right: 40px;
  }
  #site-navigation > ul > li > a {
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  /* Navigation arrows - desktop only */
  .menu-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20000;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 18px;
  }

  .menu-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
  }

  .menu-nav-arrow.left {
    left: 20px;
  }

  .menu-nav-arrow.right {
    right: 20px;
  }

  .menu-nav-arrow.visible {
    display: flex;
  }

  /* Prevent arrows from blocking menu items */
  .menu-nav-arrow {
    pointer-events: auto;
  }

  /* Extra CSS to ensure submenus break out of scrolling container */
  #site-navigation .sub-menu.js-positioned {
    position: fixed !important;
    transform: none !important;
  }
}

/* Hide arrows on mobile/tablet */
@media (max-width: 767px) {
  .menu-nav-arrow {
    display: none !important;
  }
}

/* Remove underline and add band-style hover effect */
#site-navigation a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'GFS Didot', 'Noto Serif', serif;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

#site-navigation a:hover,
#site-navigation .current-menu-item > a,
#site-navigation .current_page_item > a {
  color: #f2d16b;
  text-shadow: 0 0 8px rgba(242, 209, 107, 0.6);
  transform: translateY(-1px);
}

/* Hero full viewport */
.hero-section { height: 66.666vh; min-height: 450px; }
.hero-title { text-transform: uppercase; letter-spacing: 1px; }

/* Responsive extra zoom: smaller screens → more zoom */
@media (max-width: 1024px) {
  .hero-video-container iframe.hero-video,
  .hero-video,
  .hero-video-tag {
    min-width: 120%;
    min-height: 100%;
  }
}

@media (max-width: 768px) {
  .hero-video-container iframe.hero-video,
  .hero-video,
  .hero-video-tag {
    min-width: 130%;
    min-height: 105%;
  }
}

@media (max-width: 480px) {
  .hero-video-container iframe.hero-video,
  .hero-video,
  .hero-video-tag {
    min-width: 140%;
    min-height: 110%;
  }
}

/* Social media icons overlay in hero section */
.hero-social-icons-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.hero-social-icons-overlay .hero-social-icons {
  margin: 0;
  padding: 10px; /* Add overall padding around the group */
  display: flex;
  gap: 10px; /* Space between icons */
  list-style: none;
}

.hero-social-icons-overlay .hero-social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-social-icons-overlay .hero-social-icons a:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.hero-social-icons-overlay .hero-social-icons a i {
  color: white;
  font-size: 18px;
}

/* Mobile adjustments for social icons */
@media (max-width: 768px) {
  .hero-social-icons-overlay {
    top: 15px;
    right: 15px;
  }

  .hero-social-icons-overlay .hero-social-icons a {
    width: 35px;
    height: 35px;
  }

  .hero-social-icons-overlay .hero-social-icons a i {
    font-size: 16px;
  }
}

/* Floating Contact Bar - Top Right */
.walkman-floating-contact {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  background: rgba(55, 55, 55, 0.95);
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.walkman-floating-contact:hover {
  background: rgba(55, 55, 55, 1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.floating-contact-item i {
  font-size: 16px;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.floating-contact-item:hover i {
  transform: scale(1.15);
}

.floating-contact-item.floating-contact-text {
  color: #f4f4f4;
  cursor: default;
}

/* Adjustments for medium screens to prevent overlap with site logo */
@media (min-width: 768px) and (max-width: 1024px) {
  .walkman-floating-contact {
    top: 10px;
    right: 10px;
    padding: 8px 15px;
    border-radius: 25px;
  }

  .floating-contact-item {
    font-size: 12px;
    gap: 5px;
  }

  .floating-contact-item i {
    font-size: 14px;
  }
}

/* Mobile adjustments for floating contact */
@media (max-width: 768px) {
  .walkman-floating-contact {
    top: 10px;
    right: 10px;
    padding: 10px 15px;
    gap: 10px;
    flex-direction: column;
    border-radius: 20px;
  }

  .floating-contact-item {
    font-size: 13px;
  }

  .floating-contact-item span {
    display: none;
  }

  .floating-contact-item i {
    font-size: 18px;
  }

  .floating-contact-item.floating-contact-text {
    display: none;
  }
}

/* Ensure footer is not affected by floating contact */
#colophon {
    position: relative;
    z-index: 1;
}
