/* =========================================================
   GlassGo Travel — Dark Glassmorphism Theme
   ========================================================= */
:root{
    --gg-bg: #0a0a0a;
    --gg-bg-2: #111;
    --gg-gold: #d4af37;
    --gg-blue: #00e0ff;
    --gg-text: #cfcfcf;
    --gg-heading: #ffffff;
    --gg-glass-bg: rgba(255,255,255,.05);
    --gg-glass-border: rgba(255,255,255,.15);
    --gg-radius: 18px;
    --gg-radius-sm: 12px;
    --gg-shadow-glow-gold: 0 0 24px rgba(212,175,55,.35);
    --gg-shadow-glow-blue: 0 0 24px rgba(0,224,255,.35);
    --gg-font-heading: 'Poppins', 'Montserrat', system-ui, -apple-system, sans-serif;
    --gg-font-body: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body.glassgo-theme{
    margin:0;
    background: radial-gradient(1200px 600px at 80% -10%, rgba(0,224,255,.08), transparent 60%),
                radial-gradient(900px 500px at -10% 110%, rgba(212,175,55,.08), transparent 60%),
                var(--gg-bg);
    color: var(--gg-text);
    font-family: var(--gg-font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: var(--gg-blue); text-decoration:none; transition: color .2s ease; }
a:hover{ color: var(--gg-gold); }

h1,h2,h3,h4,h5,h6{
    font-family: var(--gg-font-heading);
    color: var(--gg-heading);
    font-weight: 700;
    line-height:1.2;
    margin:0 0 .6em;
}
h1{ font-size: clamp(2rem, 4vw + 1rem, 4rem); }
h2{ font-size: clamp(1.5rem, 2vw + 1rem, 2.6rem); }
h3{ font-size: 1.4rem; }
p{ margin: 0 0 1em; }

.container{ width:100%; max-width:1240px; margin:0 auto; padding:0 24px; }
.screen-reader-text{ position:absolute; left:-9999px; }
.skip-link{ position:absolute; left:-9999px; top:-9999px; }
.skip-link:focus{ left:8px; top:8px; background:var(--gg-gold); color:#000; padding:8px 14px; border-radius:8px; z-index:100000; }

.gradient-text{
    background: linear-gradient(120deg, var(--gg-gold), var(--gg-blue));
    -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- GLASS ---------- */
.glass-panel{
    background: var(--gg-glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gg-glass-border);
    border-radius: var(--gg-radius);
    padding: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
}

/* ---------- BUTTONS ---------- */
.btn{
    display:inline-flex; align-items:center; justify-content:center; gap:.5em;
    padding: 12px 26px;
    border-radius: 999px;
    font-family: var(--gg-font-heading);
    font-weight:600;
    font-size: .95rem;
    letter-spacing:.02em;
    border:1px solid var(--gg-glass-border);
    background: var(--gg-glass-bg);
    color: var(--gg-heading);
    cursor:pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.btn:hover{ transform: scale(1.05); }
.btn-gold{ border-color: rgba(212,175,55,.5); color: var(--gg-gold); }
.btn-gold:hover{ box-shadow: var(--gg-shadow-glow-gold); border-color: var(--gg-gold); color: var(--gg-gold); animation: gg-pulse-gold 1.6s ease-in-out infinite; }
.btn-blue{ border-color: rgba(0,224,255,.5); color: var(--gg-blue); }
.btn-blue:hover{ box-shadow: var(--gg-shadow-glow-blue); border-color: var(--gg-blue); animation: gg-pulse-blue 1.6s ease-in-out infinite; }
.btn-ghost{ background: transparent; }

@keyframes gg-pulse-gold{ 0%,100%{ box-shadow: 0 0 16px rgba(212,175,55,.25);} 50%{ box-shadow: 0 0 28px rgba(212,175,55,.55);} }
@keyframes gg-pulse-blue{ 0%,100%{ box-shadow: 0 0 16px rgba(0,224,255,.25);} 50%{ box-shadow: 0 0 28px rgba(0,224,255,.55);} }

/* ---------- NAV ---------- */
.glassgo-nav{
    position: sticky; top:0; z-index:100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, padding .35s ease;
    padding: 18px 0;
}
.glassgo-nav.is-scrolled{
    ackground: rgb(10 10 10 / 0%);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.site-title{ color: var(--gg-heading); font-family: var(--gg-font-heading); font-weight:700; font-size:1.25rem; letter-spacing:.04em; }
.primary-menu{ display:flex; gap:28px; list-style:none; margin:0; padding:0; }
.primary-menu a{ color: var(--gg-heading); font-weight:500; position:relative; padding:6px 0; }
.primary-menu a::after{ content:""; position:absolute; left:0; bottom:0; height:2px; width:100%; background: linear-gradient(90deg, var(--gg-gold), var(--gg-blue)); transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after{ transform: scaleX(1); transform-origin: left; }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{ display:none; background:transparent; border:0; padding:6px; cursor:pointer; }
.nav-toggle span{ display:block; width:24px; height:2px; background: var(--gg-heading); margin:5px 0; transition: transform .3s ease, opacity .3s ease; }

@media (max-width: 900px){
    .primary-nav{ position: fixed; inset: 0 0 0 30%; background: rgba(10,10,10,.85); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); transform: translateX(100%); transition: transform .35s ease; padding: 90px 24px 24px; z-index:90; }
    .primary-nav.is-open{ transform: translateX(0); }
    .primary-menu{ flex-direction:column; gap:18px; }
    .nav-toggle{ display:block; z-index:120; }
    body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
    body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- HEROES ---------- */
.archive-hero{ padding: 120px 0 60px; text-align:center; }
.single-hero{ position:relative; min-height: 60vh; display:flex; align-items:flex-end; padding: 120px 0 60px; background-size:cover; background-position:center; }
.single-hero::before{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,10,10,.2), rgba(10,10,10,.85)); }
.single-hero > .container{ position:relative; z-index:1; }
.eyebrow{ display:inline-block; font-family: var(--gg-font-heading); text-transform:uppercase; letter-spacing:.25em; font-size:.75rem; color: var(--gg-gold); margin-bottom: 12px; }
.parallax-hero{ background-attachment: scroll; will-change: background-position; }

/* ---------- GRIDS / CARDS ---------- */
.posts-grid, .cards-grid{
    display:grid; gap:28px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    padding: 24px 0 60px;
}
.post-card, .card{ padding:0; overflow:hidden; display:flex; flex-direction:column; }
.post-thumb, .card-thumb{ display:block; overflow:hidden; aspect-ratio: 4/3; }
.post-thumb img, .card-thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.hover-zoom:hover .post-thumb img, .hover-zoom:hover .card-thumb img{ transform: scale(1.08); }
.post-body, .card-body{ padding: 22px 24px 26px; display:flex; flex-direction:column; gap:10px; }
.post-meta{ font-size:.8rem; color: rgba(255,255,255,.55); }
.post-title, .card-title{ font-size:1.2rem; margin:0; }
.post-title a, .card-title a{ color: var(--gg-heading); }
.post-title a:hover, .card-title a:hover{ color: var(--gg-gold); }
.card-price{ color: var(--gg-gold); font-weight:700; font-family: var(--gg-font-heading); }

/* ---------- LAYOUTS ---------- */
.archive-layout, .single-layout{ display:grid; gap:36px; grid-template-columns: minmax(0,1fr) 320px; padding: 24px 0 80px; }
@media (max-width: 900px){
    .archive-layout, .single-layout{ grid-template-columns: 1fr; }
}
.single-main{ padding: 36px; }
.page-content{ padding-bottom: 80px; }
.page-hero{ padding: 100px 0 40px; text-align:center; }

/* ---------- FOOTER ---------- */
.site-footer{ padding: 60px 0 30px; }
.footer-panel{ padding: 40px; }
.footer-grid{ display:grid; gap:32px; grid-template-columns: 1.5fr repeat(3, 1fr); }
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:600px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-col h4.widget-title{ color: var(--gg-heading); font-size: 1rem; text-transform:uppercase; letter-spacing:.18em; margin-bottom:18px; }
.footer-col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.footer-col a{ color: var(--gg-text); }
.footer-col a:hover{ color: var(--gg-gold); }
.social-menu{ display:flex !important; flex-direction:row !important; gap:14px !important; }
.social-menu a{ width:40px; height:40px; border-radius:50%; border:1px solid var(--gg-glass-border); display:inline-flex; align-items:center; justify-content:center; transition: transform .25s ease, border-color .25s ease, color .25s ease; }
.social-menu a:hover{ transform: translateY(-3px); border-color: var(--gg-blue); color: var(--gg-blue); animation: gg-bounce .6s ease; }
@keyframes gg-bounce{ 0%,100%{ transform: translateY(-3px); } 50%{ transform: translateY(-8px); } }
.newsletter-form{ display:flex; gap:8px; }
.newsletter-form input{ flex:1; min-width:0; padding: 12px 16px; border-radius:999px; border:1px solid var(--gg-glass-border); background: var(--gg-glass-bg); color: var(--gg-heading); font-family: var(--gg-font-body); }
.newsletter-form input::placeholder{ color: rgba(255,255,255,.5); }
.footer-bottom{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-top:24px; margin-top:30px; border-top:1px solid var(--gg-glass-border); font-size:.85rem; }
.footer-menu{ display:flex !important; gap:18px !important; }

/* ---------- BOOKING / FORMS ---------- */
.booking-card{ padding: 28px; position: sticky; top: 100px; }
.booking-form{ display:flex; flex-direction:column; gap:12px; }
.booking-form label{ display:flex; flex-direction:column; gap:6px; font-size:.85rem; color:#aaa; }
.booking-form input, .booking-form select{ padding: 12px 14px; border-radius: var(--gg-radius-sm); border:1px solid var(--gg-glass-border); background: rgba(0,0,0,.35); color: var(--gg-heading); font-family: var(--gg-font-body); }
.form-hint{ font-size:.75rem; color:#888; margin-top:6px; }

/* ---------- ACCORDION ---------- */
.accordion{ display:flex; flex-direction:column; gap:12px; margin:20px 0; }
.accordion-item{ padding:0; overflow:hidden; }
.accordion-head{ width:100%; text-align:left; padding:18px 22px; background:transparent; color: var(--gg-heading); border:0; cursor:pointer; font-family: var(--gg-font-heading); font-weight:600; font-size:1rem; display:flex; justify-content:space-between; align-items:center; }
.accordion-head::after{ content:"+"; color: var(--gg-gold); font-size:1.2rem; transition: transform .3s ease; }
.accordion-item.is-open .accordion-head::after{ transform: rotate(45deg); }
.accordion-body{ max-height:0; overflow:hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 22px; }
.accordion-item.is-open .accordion-body{ max-height: 800px; padding: 0 22px 22px; }

/* ---------- CAB / DEST STATS ---------- */
.cab-stats{ list-style:none; padding:0; margin:0 0 24px; display:flex; flex-wrap:wrap; gap:24px; }
.cab-stats li{ background: rgba(255,255,255,.04); padding: 14px 18px; border-radius: var(--gg-radius-sm); border:1px solid var(--gg-glass-border); }
.cab-stats strong{ color: var(--gg-gold); font-family: var(--gg-font-heading); }
.destination-meta{ display:flex; gap:18px; color: var(--gg-text); margin-top:14px; }
.destination-meta .price{ color: var(--gg-gold); font-weight:700; }

/* ---------- 404 ---------- */
.error-404-section{ min-height: 80vh; display:flex; align-items:center; padding: 80px 0; }
.error-panel{ text-align:center; max-width:680px; margin:0 auto; padding: 60px 40px; }
.error-code{ font-family: var(--gg-font-heading); font-weight:800; font-size: clamp(5rem, 14vw, 9rem); line-height:1; margin-bottom: 10px; }
.error-actions{ display:flex; gap:14px; justify-content:center; margin: 24px 0; flex-wrap:wrap; }
.error-search .search-form{ margin-top:24px; }

/* ---------- SEARCH FORM ---------- */
.search-form{ display:flex; gap:10px; padding:14px; }
.search-form input[type="search"]{ flex:1; min-width:0; padding:12px 14px; border-radius:999px; border:1px solid var(--gg-glass-border); background: rgba(0,0,0,.35); color: var(--gg-heading); }

/* ---------- COMMENTS ---------- */
.comments-area{ margin-top: 40px; }
.comment-list{ list-style:none; padding:0; margin: 20px 0; display:flex; flex-direction:column; gap: 18px; }

/* ---------- PAGINATION ---------- */
.pagination-wrap .page-numbers{ display:inline-flex; padding:10px 16px; margin:4px; border-radius:999px; border:1px solid var(--gg-glass-border); color: var(--gg-heading); transition: all .2s ease; }
.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover{ background: linear-gradient(120deg, var(--gg-gold), var(--gg-blue)); color:#000; border-color: transparent; }

/* ---------- COUNTERS / STATS ---------- */
.gg-counter{ font-family: var(--gg-font-heading); font-weight:700; font-size: clamp(2rem, 5vw, 3.5rem); background: linear-gradient(120deg, var(--gg-gold), var(--gg-blue)); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---------- AOS reduce-motion fallback ---------- */
@media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important; }
    [data-aos]{ opacity:1 !important; transform:none !important; }
}

/* ---------- PAGE FADE ---------- */
body.glassgo-theme{ animation: gg-page-fade .6s ease both; }
@keyframes gg-page-fade{ from{ opacity:0; } to{ opacity:1; } }
