/* ======== GLOBAL STYLES ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body, body.latincentralrecords-body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:"wdth" 100;
    font-weight: 400; 
    background-color: #edeae7;
    color: #000;
    overflow-x: hidden;
}
 .page-header{
    padding: 20px 0px;
}
   h1 {
    font-weight: 900; /* Black */
    font-size: 25px;
    padding: 0 0 5px;
    border-bottom: 1px solid;
    margin: 0 0 20px;
}

h2 {
    font-weight: 600; 
}


li {
    list-style: none;
}
p {
    font-weight: 400; /* Regular */
    font-size: 16px;
    line-height: 24px;
    color: #333;
    letter-spacing: 0.3px;
}
.news-description{
    margin-block: 10px;
}
.argu-margin-bottom{
    margin-bottom: 20px;
}
  .site-content {
    float: left;
    width: 100%;
    padding: 20px;
  }
    .credit-name{
      color:#a61717;
      font-weight: bold;
      
  }
  
  .back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f9a400; /* Nice orange-yellow tone */
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

.back-button:hover {
    background-color: #e08900; /* Slightly darker on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.back-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.responsive-image-right {
    float: right;
    padding-left: 20px;
    padding-bottom: 20px;
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .responsive-image-right {
        float: none;
        display: block;
         padding-left: 00px;

    }
}

/* Optional: Add smooth hover or focus effect if needed */
p:hover {
  color: #555;
  transition: color 0.3s ease;
}
.news-cover {
   width: 200px; 
}
/* Responsive adjustment for smaller devices */
@media (max-width: 600px) {
  p {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* ======== WRAPPER ======== */
.latincentralrecords-wrapper {
  width: 63%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1430px) {
  .latincentralrecords-wrapper { width: 80%; }

}

@media (max-width: 1130px) {
  .latincentralrecords-wrapper { width: 90%; }
}


@media (max-width: 992px) {
  .latincentralrecords-wrapper { width: 100%; }
}

/* ======== HEADER ======== */
.latincentralrecords-header {
  width: 100%;
  background-color: #fff;
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-button {
  position: absolute;
  left: 20px;
}

.latincentralrecords-toggle-btn {
  font-size: 30px;
  cursor: pointer;
  display: none; /* Default hidden, show via media query if needed */
}

.logo {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
}

.latincentralrecords-header img {
  height: auto;
  max-width: 100%;
  padding: 10px 0px;
}



/* ======== NAVIGATION (DESKTOP) ======== */
.latincentralrecords-nav {
  display: flex;
  justify-content: space-around;
  background-color: #3a3a3a;
  width: 100%;
  position: relative;
  z-index: 999;
  list-style: none;
  margin: 0;
}


.latincentralrecords-nav li {
  position: relative;
}


.latincentralrecords-nav li a {
  text-decoration: none;
  color: #f7c769;
  padding: 10px 27px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  font-size: 1rem;
  display: block; 
}


.latincentralrecords-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: #fff;
}

/*Light Box Gallery Start*/

.gallery-grid {
    column-count: 4;
    column-gap: 15px;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
  }

  .gallery-item img:hover {
    transform: scale(1.05);
  }

  /* Lightbox styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }

  .modal-content {
    margin: 10% auto;
    display: block;
    max-width: 80%;
  }

  .close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
  }

  .close:hover {
    color: red;
  }

  @media screen and (max-width: 1024px) {
    .gallery-grid {
      column-count: 2;
    }
  }

  @media screen and (max-width: 600px) {
    .gallery-grid {
      column-count: 1;
    }
  }
  
/*Light Box Gallery End*/

/* ======== SEPARATOR ONLY ON TOP LEVEL ITEMS ======== */


.latincentralrecords-nav > li {
  position: relative;
}

/* Ensure separator appears only on top-level direct children */
.latincentralrecords-nav > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;                  /* Adjust as needed */
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: #fff;
}

/* ✅ Prevent separator inside submenus */
.latincentralrecords-nav li ul li::after {
  content: none !important;
}
/* ======== HOVER / ACTIVE STATES ======== */
.latincentralrecords-nav li a:hover {
  background-color: #2f2f2f;
  color: #fff;
}

/* Current active menu item styling */
.latincentralrecords-nav .current-menu-item > a,
.latincentralrecords-nav .current_page_item > a,
.latincentralrecords-nav .current-menu-ancestor > a {
  background-color: #2f2f2f !important;
  color: #fff !important;
}

/* ======== DROPDOWN MENU (DESKTOP) ======== */
.latincentralrecords-nav li ul {
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 0;
  list-style: none;
  z-index: 1000;
}

.latincentralrecords-nav li:hover > ul,
.latincentralrecords-nav li.show-submenu > ul {
  display: block;
}

.latincentralrecords-nav li ul li a {
  padding: 10px 15px;
  display: block;
  white-space: nowrap;
  background-color: #f7c769;
  color: #222;
  border-bottom: 1px solid aliceblue;
}




/* ======== HEADER RIGHT ======== */
.latincentralrecords-header-right {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
  margin-right: 10px;
}

.latincentralrecords-header-right a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.latincentralrecords-header-right a img {
  width: 40px;
  object-fit: contain;
}

/* ======== PAGE CONTENT ======== */




/* ======== FOOTER ======== */
.latincentralrecords-footer {
 display: flex;
 flex-direction: column;
  margin: 0 auto;
  text-align: center;
  
  color: #fff;
}

.latincentralrecords-footer-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.latincentralrecords-footer-menu li {
  display: inline-block;        /* Arrange items horizontally */
  position: relative;           /* Needed for ::after positioning */
  padding-right: 10px;          /* Space between item text and the bar */
}

.latincentralrecords-footer-menu li:not(:last-child)::after {
  content: "|";                 /* The bar */
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 10px;
  color: #fff;                  /* Adjust to your footer text color */
}
.latincentralrecords-footer-menu li a {
   color: #fff;                  /* Adjust to your footer text color */
  text-decoration: none;
  padding: 0 5px;
  transition: color 0.3s ease;
}

.latincentralrecords-footer-menu li a:hover {
  text-decoration: underline;
  color: #000;  
}

/* ======== RESPONSIVE ======== */
@media (max-width: 992px) {
  .spotify-item { flex: 1 1 calc(50% - 20px); }
  .nav-container { padding: 0; }
  .latincentralrecords-nav { display: none; }
  .logo { flex-direction: column; }
  .latincentralrecords-header img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }
  .latincentralrecords-toggle-btn { display: block; }
}


@media (max-width: 768px) {
  .latincentralrecords-wrapper { width: 100%; }
}

@media (max-width: 480px) {
  .spotify-item { flex: 1 1 100%; }
}

/* ======== MEDIA SECTIONS ======== */
.latincentralrecords-hero {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.latincentralrecords-hero-image {
  flex: 1;
  min-width: 250px;
}

.latincentralrecords-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latincentralrecords-welcome {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px auto 0 auto;
  background: #FFF16A;
  padding: 20px;
}

.latincentralrecords-welcome p {
  width: 80%;
  text-align: center;
}

.main-content {
  background-color: #fff;
  margin-top: -6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.latincentralrecords-media-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  width: 100%;
}

/* Facebook Embed */
.facebook-embed {
  flex: 1 1 45%;
  max-width: 45%;
  position: relative;
}

.facebook-iframe-container {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.facebook-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Spotify Grid */
.spotify-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

.spotify-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
}

.spotify-item iframe {
  height: 600px;
  border-radius: 12px;
  width: 100%;
}

/* Social Media Links */
.latincentralrecords-socilal-media {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.latincentralrecords-socilal-media a {
  text-decoration: none;
  color: #000;
}

.latincentralrecords-socilal-media img {
  width: 35px;
  object-fit: contain;
}

/* Responsive Media Section */
@media (max-width: 991px) {
  .media-flex-section {
    flex-direction: column;
    align-items: center;
  }
  .media-embed {
    width: 100%;
  }
  .latincentralrecords-media-section {
    flex-direction: column;
    align-items: center;
  }
  .facebook-embed {
    width: 100%;
    max-width: 100%;
  }
  .facebook-iframe-container {
    height: 600px;
    padding-bottom: 0;
    position: relative;
  }
  .facebook-iframe-container iframe {
    height: 100% !important;
    width: 100%;
    position: relative;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .nav-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fff;
    padding-top: 20px;
  }
}

/* ======== MOBILE MENU CORE STYLES ======== */
.latincentralrecords-toggle-btn {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile menu container */
.latincentralrecords-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
  transition: left 0.3s ease-in-out;
  z-index: 999;
  opacity: 0.96;
}

/* Show the mobile menu when active */
.latincentralrecords-mobile-menu.active {
  left: 0;
}

/* Close button */
.latincentralrecords-mobile-menu .close-btn {
  align-self: flex-end;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ======== MOBILE MENU LIST STYLING ======== */
.latincentralrecords-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.latincentralrecords-mobile-menu-list li {
  border-bottom: 1px solid #ddd;
}

.latincentralrecords-mobile-menu-list li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  padding: 10px 0;
  transition: background-color 0.3s ease;
  display: block;
}

.latincentralrecords-mobile-menu-list li a:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* ======== SUBMENU HANDLING ======== */
/* Submenu hidden by default */

.menu-item-has-children {
  position: relative; /* Important for positioning the arrow */
}


.latincentralrecords-mobile-menu .menu-item-has-children > .sub-menu {
  display: none;
  padding-left: 15px;
  flex-direction: column;
}

/* Show submenu when parent has .show-submenu */
.latincentralrecords-mobile-menu .menu-item-has-children.show-submenu > .sub-menu {
  display: block;
}

/* ======== SUBMENU TOGGLE ARROW BUTTON ======== */
.submenu-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.3s ease;
  padding: 0;
}

/* Rotate arrow when submenu is open */
.menu-item-has-children.show-submenu > .submenu-toggle {
  transform: translateY(-50%) rotate(180deg);
}

.brand-copyright{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #3a3a3a;
}

/* ======== RESPONSIVE: SHOW TOGGLE BUTTON, HIDE DESKTOP NAV ======== */
@media (max-width: 992px) {
  .latincentralrecords-toggle-btn {
    display: block;
    margin-top: -120px;
    margin-left: 5px;
  }
  .latincentralrecords-nav {
    display: none;
  }
  .brand-copyright{
    flex-direction: column;
    gap:10px;
    }
}
