
/*
Theme Name: Pet Getaway Boutique Luxury v26
Version: 26.0
*/

*,
*::before,
*::after { box-sizing:border-box; }

:root {
  --primary:#3f6f54;
  --gold:#c6a85b;
  --dark:#14241c;
  --bg:#f4efe2;
}

html,body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family:'Poppins',sans-serif;
  background:var(--bg) url('assets/body-paw.svg') repeat;
  background-size:300px; /* slightly larger pattern */
}

header{
  background:var(--primary);
  position:sticky;
  top:0;
  z-index:1000;
}

header::after{
  content:'';
  display:block;
  height:3px;
  background:var(--gold);
}

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

nav{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  padding:18px 0;
}

.logo img{
  width:95px;
  height:95px;
  border-radius:50%;
  border:4px solid var(--gold);
}

/* Desktop Menu */
.menu{
  list-style:none;
  display:flex;
  justify-content:center;
  gap:35px;
  margin:0;
  padding:0;
}

.menu li{ position:relative; }

.menu li.menu-item-has-children > a::after{
  content:" ▾";
  font-size:.7rem;
  margin-left:4px;
}

.menu li a{
  color:#fff;
  text-decoration:none;
  padding:10px 16px;
  border-radius:30px;
  transition:.3s;
}

.menu li a:hover{
  background:var(--gold);
  color:var(--dark);
}

/* Desktop Dropdown */
.menu li ul{
  position:absolute;
  top:130%;
  left:50%;
  transform:translateX(-50%) translateY(10px);
  background:#fff;
  border-radius:16px;
  padding:15px 0;
  min-width:240px;
  box-shadow:0 25px 50px rgba(0,0,0,.18);
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

.menu li:hover > ul{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

.menu li ul li a{
  color:var(--dark);
  display:block;
  padding:10px 25px;
}

/* Mobile */

.menu-toggle{
  display:none;
  width:30px;
  height:22px;
  position:relative;
  cursor:pointer;
}

.menu-toggle span{
  position:absolute;
  height:3px;
  width:100%;
  background:#fff;
  transition:.3s;
}

.menu-toggle span:nth-child(1){top:0;}
.menu-toggle span:nth-child(2){top:9px;}
.menu-toggle span:nth-child(3){top:18px;}

.menu-toggle.active span:nth-child(1){transform:rotate(45deg);top:9px;}
.menu-toggle.active span:nth-child(2){opacity:0;}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg);top:9px;}

.menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

.menu-backdrop.active{
  opacity:1;
  visibility:visible;
}

@media(max-width:900px){

  nav{ grid-template-columns:auto auto; }

  .menu-toggle{
    display:block;
    justify-self:end;
  }

  .menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:var(--primary);
    flex-direction:column;
    align-items:center;
    padding:110px 20px 40px;
    gap:15px;
    transition:right .4s ease;
    overflow-y:auto;
  }

  .menu.active{ right:0; }

  .menu li{
    width:100%;
    text-align:center;
  }

  .menu li a{
    width:100%;
    display:block;
    font-size:1.25rem;
    padding:12px 0;
    white-space:normal;
    word-break:break-word;
  }

  .menu li ul{
    position:static !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
    display:none;
    width:100%;
    background:rgba(255,255,255,0.06);
    border-radius:12px;
    margin-top:6px;
    padding:5px 0;
  }

  .menu li.open > ul{
    display:block;
  }

  .menu li ul li a{
    width:100%;
    padding:10px 0;
    font-size:1rem;
    color:#f1f1f1;
  }

}


/* Top Contact Bar */
.top-bar {
    background: #2e5c45;
    color: #fff;
    font-size: 0.9rem;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #c6a85b;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .social-icon,
.top-bar .phone-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    fill: #c6a85b;
}

@media(max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}


/* ===== Premium Google Map Section ===== */

.map-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.map-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #c6a85b;
    margin: 12px auto 0;
}

.map-wrapper {
    border: 2px solid #c6a85b;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    background: #fff;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media(max-width:768px) {
    .map-wrapper iframe {
        height: 350px;
    }
}


/* ===============================
   v35 Integrated Refinements
=============================== */

/* Slim Header */
header {
    padding-top: 6px;
    padding-bottom: 6px;
}

nav {
    padding-top: 8px;
    padding-bottom: 8px;
}

.menu li a {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Top Contact Bar Tightening */
.top-bar-inner {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Facebook Icon Size */
.top-bar .social-icon {
    width: 22px;
    height: 22px;
    fill: #c6a85b;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar .social-icon:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* Google Maps Luxury Frame */
.wgm-map-listing-container {
    position: relative;
    max-width: 1100px;
    margin: 90px auto !important;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    border: 1px solid rgba(198,168,91,0.35);
    overflow: hidden;
}

.wgm-map-listing-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, #c6a85b, #e6d18a, #c6a85b);
    -webkit-mask: linear-gradient(#000 0 0) content-box,
                   linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}



/* ===============================
   v36 Perfect Gold Header Divider
=============================== */

/* Ensure header spans full width */
header {
    position: relative;
}

/* Elegant 2px full-width gold divider */
header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100vw;
    height: 2px;
    background: #c6a85b;
}

/* Prevent horizontal scroll from 100vw */
body {
    overflow-x: hidden;
}



/* ===============================
   v37 Integrated Refinements
=============================== */

/* Reduce space between header and first H1 WITHOUT increasing header height */
.site-content,
.main-content,
.container {
    padding-top: 20px !important;
}

h1:first-of-type {
    margin-top: 5px !important;
}

/* Increase Facebook icon size by 30% (from 22px to ~29px) */
.top-bar .social-icon {
    width: 29px;
    height: 29px;
}



/* ===============================
   v38 Contact Number Enhancement
=============================== */

/* Increase contact number size by 20% and make bold */
.top-bar .contact-phone a {
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.3px;
}



/* ===============================
   v39 Mobile Top Bar Alignment Fix
=============================== */

@media (max-width: 768px) {

    .top-bar-inner {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap !important;
        text-align: center;
    }

    .top-bar .contact-phone,
    .top-bar .social {
        display: inline-flex;
        align-items: center;
    }

}

