/* Beach Bay Vacation Rentals — DARK plum theme */
:root{
  --bg:#2a1839;
  --panel:#372249;
  --text:#f3edf5;
  --muted:#c3b3d0;
  --accent:#3fc7b4;
  --border:#4a3560;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  line-height:1.7;
  font-size:17px;
}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4{font-family:"Poppins",system-ui,sans-serif;font-weight:600;line-height:1.25;color:#fff}
a{color:var(--accent);text-decoration:none}
.container{max-width:1000px;margin:0 auto;padding:0 24px}

/* Header */
.site-header{background:var(--bg);border-bottom:1px solid var(--border);position:relative}
.header-inner{display:flex;flex-direction:column;align-items:center;gap:14px;padding:26px 24px}
.site-brand{display:flex;flex-direction:column;align-items:center;gap:6px}
.site-logo img{max-width:100%;height:auto}
.site-title,.site-tagline{display:none}
.nav-menu{display:flex;gap:28px;flex-wrap:wrap;justify-content:center}
.nav-menu a{color:var(--muted);font-family:"Poppins",system-ui,sans-serif;font-size:14px;font-weight:500;letter-spacing:.3px;transition:color .2s}
.nav-menu a:hover,.nav-menu a.active{color:var(--accent)}

/* Hamburger (RIGHT) */
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.menu-toggle span{display:block;width:24px;height:2px;background:var(--text);margin:5px 0;transition:all .3s}
.menu-toggle.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Hero — Style 7 gradient */
.hero{
  background:linear-gradient(135deg,#2a1839 0%,#1f2b3a 55%,#124b52 100%);
  padding:88px 24px;
  text-align:center;
}
.hero h1{font-size:44px;color:#fff;margin-bottom:16px;letter-spacing:.3px}
.hero p{font-size:19px;color:#e6dcee;max-width:640px;margin:0 auto}

/* Sections */
.section{padding:56px 0}
.section-head{margin-bottom:30px}
.section-head h2{font-size:26px;color:#fff}
.section-head p{color:var(--muted);margin-top:6px}

/* Masonry homepage */
.masonry{columns:3;column-gap:26px}
@media(max-width:900px){.masonry{columns:2}}
@media(max-width:600px){.masonry{columns:1}}
.brick{
  break-inside:avoid;
  margin-bottom:26px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  display:inline-block;
  width:100%;
}
.brick .card-image{width:100%;overflow:hidden}
.brick .card-image img{width:100%;height:auto;display:block}
.brick-body{padding:18px 20px 22px}
.cat-tag{
  display:inline-block;font-family:"Poppins",sans-serif;font-size:11px;font-weight:600;
  letter-spacing:1.2px;text-transform:uppercase;color:var(--accent);margin-bottom:8px;
}
.brick-body h3{font-size:19px;margin-bottom:8px}
.brick-body h3 a{color:#fff}
.brick-body h3 a:hover{color:var(--accent)}
.brick-body p{color:var(--muted);font-size:15px}
.brick-meta{margin-top:12px;font-size:13px;color:#9a89a8}

/* Category page grid */
.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
@media(max-width:900px){.grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.grid{grid-template-columns:1fr}}
.card{background:var(--panel);border:1px solid var(--border);border-radius:20px;overflow:hidden}
.card .card-image img{width:100%;height:auto}
.card-body{padding:18px 20px 22px}
.card-body h3{font-size:18px;margin-bottom:8px}
.card-body h3 a{color:#fff}
.card-body h3 a:hover{color:var(--accent)}
.card-body p{color:var(--muted);font-size:15px}
.card-meta{margin-top:12px;font-size:13px;color:#9a89a8}

/* Article */
.article{max-width:700px;margin:0 auto;padding:52px 24px 64px}
.article .cat-tag{margin-bottom:14px}
.article h1{font-size:34px;margin-bottom:14px;color:#fff}
.article-meta{color:#9a89a8;font-size:14px;margin-bottom:28px}
.article-image{border-radius:20px;overflow:hidden;margin-bottom:30px;background:var(--panel)}
.article-image img{width:100%;height:auto}
.article-content h2{font-size:23px;margin:34px 0 14px;color:#fff}
.article-content p{margin-bottom:18px;color:#e9e0f0}
.article-content a{color:var(--accent);text-decoration:underline;text-decoration-color:rgba(63,199,180,.45);text-underline-offset:3px}
.article-content a:hover{text-decoration-color:var(--accent)}

/* Related */
.related{max-width:1000px;margin:0 auto;padding:0 24px 60px}
.related h2{font-size:22px;margin-bottom:24px;color:#fff;text-align:center}

/* Standard pages */
.page{max-width:760px;margin:0 auto;padding:52px 24px 64px}
.page h1{font-size:34px;margin-bottom:20px;color:#fff}
.page h2{font-size:22px;margin:28px 0 12px;color:#fff}
.page p{margin-bottom:16px;color:#e9e0f0}
.page a{color:var(--accent);text-decoration:underline;text-underline-offset:3px}

/* Footer — shape #8 contact-led */
.site-footer{background:var(--bg);border-top:1px solid var(--border);padding:44px 24px 40px;text-align:center}
.footer-logo img{width:70%;max-width:124px;height:auto;margin:0 auto 16px;opacity:.95}
.footer-contact{margin-bottom:12px}
.footer-contact a{color:var(--accent);text-decoration:none;font-size:15px}
.footer-contact a:hover{text-decoration:underline}
.footer-legal{margin-bottom:10px}
.footer-legal a{color:var(--muted);font-size:13px;text-decoration:none}
.footer-legal a:hover{color:var(--accent)}
.footer-copy{color:#8a7998;font-size:13px}

@media(max-width:768px){
  .menu-toggle{display:block;position:absolute;right:24px;top:26px}
  .nav-menu{display:none;flex-direction:column;width:100%;gap:0;padding:12px 0}
  .nav-menu.open{display:flex}
  .nav-menu a{padding:10px 0;border-bottom:1px solid var(--border)}
  .hero h1{font-size:34px}
}
