/*
Theme Name: Go Explore! Child
Template: parallelus-go-explore
Author: Nimesh Patel
Description: Go Explore! A tool to build travel websites for destinations, guide books, bloggers and so much more. Created with the Runway framework for WordPress.
Tags: one-column two-columns three-columns left-sidebar right-sidebar fixed-layout fluid-layout responsive-layout buddypress custom-menu editor-style featured-images flexible-header full-width-template sticky-post theme-options threaded-comments translation-ready
Version: 1.0.0.1752395195
Updated: 2025-07-13 10:26:35

*/
/* =================================================== */
/* ==   1. FONT DEFINITIONS                         == */
/* =================================================== */
@font-face {
    font-family: 'Poppins'; src: url('fonts/poppins-regular-webfont.woff2') format('woff2'), url('fonts/poppins-regular-webfont.woff') format('woff');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins'; src: url('fonts/poppins-italic-webfont.woff2') format('woff2'), url('fonts/poppins-italic-webfont.woff') format('woff');
    font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Poppins'; src: url('fonts/poppins-medium-webfont.woff2') format('woff2'), url('fonts/poppins-medium-webfont.woff') format('woff');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins'; src: url('fonts/poppins-semibold-webfont.woff2') format('woff2'), url('fonts/poppins-semibold-webfont.woff') format('woff');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins'; src: url('fonts/poppins-bold-webfont.woff2') format('woff2'), url('fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans'; src: url('fonts/nunitosans-regular-webfont.woff2') format('woff2'), url('fonts/nunitosans-regular-webfont.woff') format('woff');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans'; src: url('fonts/nunitosans-italic-webfont.woff2') format('woff2'), url('fonts/nunitosans-italic-webfont.woff') format('woff');
    font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Nunito Sans'; src: url('fonts/nunitosans-bold-webfont.woff2') format('woff2'), url('fonts/nunitosans-bold-webfont.woff') format('woff');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* =================================================== */
/* ==   2. GLOBAL STYLES & TYPOGRAPHY             == */
/* =================================================== */
:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}
body { font-family: var(--font-body); color: #333; margin: 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); clear: both; }
h1 { font-weight: 700; font-size: 2.8em; margin-bottom: 0.5em; }
h3 { font-weight: 500; font-size: 1.4em; }
h4 { font-weight: 700; font-size: 1.1em; text-transform: uppercase; letter-spacing: 0.5px; }
.entry-content p, .entry-content li { font-size: 17px; line-height: 1.7; font-weight: 400; }
.entry-content a { color: #c50000; font-weight: 700; text-decoration: none; }
.entry-content a:hover { text-decoration: underline; }
.entry-content strong, .entry-content b { font-weight: 700; }
.entry-content em, .entry-content i { font-style: italic; }

/* =================================================== */
/* ==   3. DESKTOP NAVIGATION (768px and wider)     == */
/* =================================================== */
.arc-nav {
  position: fixed;
  top: 50%; left: 40px;
  transform: translateY(-50%);
  z-index: 9999;
}
.arc-nav ul { list-style: none; padding: 0; margin: 0; }
.arc-nav li { margin-bottom: 25px; }
.arc-nav li:last-child { margin-bottom: 0; }
.arc-nav .dot { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.arc-nav .dot::before {
  content: ''; width: 14px; height: 14px;
  border-radius: 50%; background: #aaa; flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.arc-nav .dot::after {
  content: attr(data-label); font-family: var(--font-body);
  color: #555; font-size: 14px; font-weight: 400;
  margin-left: 15px; white-space: nowrap;
  transition: color 0.3s ease, font-weight 0.3s ease;
}
.arc-nav li:hover .dot::before { background: #555; }
.arc-nav li:hover .dot::after { color: #000; }
.arc-nav .dot.active-dot::before { background: #ff5722; transform: scale(1.5); }
.arc-nav .dot.active-dot::after { color: #ff5722; font-weight: 700; }

/* =================================================== */
/* ==   4. MOBILE NAVIGATION (screens below 768px)  == */
/* =================================================== */

@media (max-width: 767px) {
  /* --- The main FAB container --- */
  .arc-nav {
    left: auto; top: auto; right: 20px; bottom: 20px;
    transform: none; width: 56px; height: 56px;
    /* CORRECTED: Orange by default */
    background-color: #ff5722; 
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* --- The menu list that pops up --- */
  .arc-nav .nav-wrapper {
    opacity: 0; visibility: hidden;
    position: absolute; bottom: 70px; right: 0;
    background: #fff; border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s .3s;
    transform: translateY(10px);
  }
  .arc-nav li { margin-bottom: 0; }
  .arc-nav .dot { padding: 10px; }
  
  /* --- The static icon --- */
  .arc-nav .nav-icon-mobile {
     /* No special styles needed */
  }

  /* --- The open state --- */
  .arc-nav.is-open {
    /* CORRECTED: Gray when open */
    background-color: #333; 
  }
  .arc-nav.is-open .nav-wrapper {
    opacity: 1; visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  
  /* When the menu list is open, ensure the dots inside are styled correctly */
  .arc-nav.is-open .dot { display: flex; }
  .arc-nav.is-open .dot::after { display: block; }
  .arc-nav.is-open .dot.active-dot::before { background: #ff5722; }
}

/* =================================================== */
/* ==   5. COMPONENT: STYLED SECTION TITLES (H2)    == */
/* =================================================== */
.entry-content h2[id] {
    font-size: 30px; font-weight: 600; color: #222;
    letter-spacing: 1px; text-transform: uppercase; text-align: center;
    display: grid; grid-template-columns: 1fr max-content 1fr;
    grid-gap: 20px; align-items: center;
    margin-top: 60px; margin-bottom: 40px;
}
.entry-content h2[id]::before,
.entry-content h2[id]::after {
    content: " "; display: block;
    border-bottom: 1px solid #c50000;
    border-top: 1px solid #c50000;
    height: 5px;
    background-color: #ffffff;
}
.entry-content h2:not([id]) {
    font-size: 1.7em; font-weight: 600; margin-top: 2em;
}

/* =================================================== */
/* ==   6. PAGE TITLE ALIGNMENT                     == */
/* =================================================== */
h1.page-title {
  text-align: center;
}