/*
Theme Name:  Residence Club Hard Rock Gramado
Theme URI:   https://meuclubedeferias.com.br
Author:      Meu Clube de Férias
Author URI:  https://meuclubedeferias.com.br
Description: Tema premium para o Residence Club Hard Rock Hotel Gramado. Totalmente personalizável pelo Customizador do WordPress com seções hero, conceito, complexo, apartamentos, localização, história, FAQ, blog e formulário de contato.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hardhock
Tags:        custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, blog, one-page
*/

/* =========================================================
   VARIÁVEIS CSS + BASE
   ========================================================= */
:root {
  --hh-black:         #000000;
  --hh-white:         #ffffff;
  --hh-gold:          #c9a961;
  --hh-text-dark:     #333333;
  --hh-text-gray:     #666666;
  --hh-light-bg:      #f5f5f5;
  --hh-lighter-bg:    #fafafa;
  --hh-border-light:  #e0e0e0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: var(--hh-text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--hh-gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--hh-text-dark); }

/* =========================================================
   TIPOGRAFIA GLOBAL
   ========================================================= */
.hh-section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 25px;
  color: var(--hh-text-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
}
.hh-section-title span { color: var(--hh-gold); display: block; }

.hh-section-subtitle {
  font-size: 14px;
  color: var(--hh-text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hh-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--hh-text-gray);
  line-height: 1.9;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.hh-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 6%;
}

.hh-section { padding: 110px 6%; position: relative; }
.hh-section--dark { background: var(--hh-light-bg); }
.hh-section--black { background: var(--hh-black); color: var(--hh-white); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
#masthead {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(to bottom,rgba(0,0,0,.92) 0%,rgba(0,0,0,.65) 70%,rgba(0,0,0,0) 100%);
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .4s;
}
#masthead.scrolled {
  background: rgba(0,0,0,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.site-branding img { height: 44px; width: auto; }
.site-title-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--hh-white);
  letter-spacing: 2px;
}

/* Nav */
#site-navigation { display: flex; align-items: center; }
#primary-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
#primary-menu > li > a {
  color: var(--hh-white);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .3s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a {
  color: var(--hh-gold);
  border-bottom-color: var(--hh-gold);
}

/* Hamburger */
.hh-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hh-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--hh-white);
  transition: all .3s;
}

/* =========================================================
   HERO
   ========================================================= */
.hh-hero {
  min-height: 100vh;
  color: var(--hh-white);
  background-color: var(--hh-black);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,.82) 0%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.15) 100%);
  pointer-events: none;
}
.hh-hero__content {
  max-width: 960px;
  padding: 0 20px;
  z-index: 1;
}
.hh-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hh-gold);
  margin-bottom: 20px;
}
.hh-hero__title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 3px 3px 14px rgba(0,0,0,.8);
  margin-bottom: 22px;
}
.hh-hero__title span { color: var(--hh-gold); }
.hh-hero__text {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 300;
  margin-bottom: 38px;
  opacity: .9;
}
.hh-hero__arrow {
  font-size: 42px;
  color: var(--hh-gold);
  display: block;
  margin-top: 24px;
  animation: hh-bounce 2.2s infinite;
}
@keyframes hh-bounce {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-18px); }
  60% { transform: translateY(-9px); }
}

/* =========================================================
   BOTÕES
   ========================================================= */
.hh-btn {
  display: inline-block;
  padding: 16px 50px;
  background: var(--hh-gold);
  color: var(--hh-black);
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 3px solid var(--hh-gold);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}
.hh-btn:hover {
  background: transparent;
  color: var(--hh-gold);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(201,169,97,.4);
}
.hh-btn--outline {
  background: transparent;
  color: var(--hh-gold);
}
.hh-btn--outline:hover {
  background: var(--hh-gold);
  color: var(--hh-black);
}
.hh-btn--dark {
  background: var(--hh-black);
  border-color: var(--hh-black);
  color: var(--hh-white);
}
.hh-btn--dark:hover {
  background: transparent;
  border-color: var(--hh-black);
  color: var(--hh-black);
}

/* =========================================================
   CARDS
   ========================================================= */
.hh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 50px;
}
.hh-grid--2 { grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); }
.hh-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.hh-card {
  background: var(--hh-lighter-bg);
  border: 1px solid var(--hh-border-light);
  overflow: hidden;
  transition: all .3s;
  position: relative;
}
.hh-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--hh-gold), transparent);
  transition: left .4s;
}
.hh-card:hover::before { left: 0; }
.hh-card:hover {
  border-color: var(--hh-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201,169,97,.18);
}
.hh-card__body { padding: 28px; }
.hh-card__img { width: 100%; height: 220px; object-fit: cover; }
.hh-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hh-gold);
  margin-bottom: 10px;
}
.hh-card h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hh-gold);
  margin-bottom: 12px;
}
.hh-card p { color: var(--hh-text-gray); line-height: 1.8; font-size: 15px; }

/* =========================================================
   STATS
   ========================================================= */
.hh-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 36px;
  padding: 52px;
  background: var(--hh-light-bg);
  border-left: 5px solid var(--hh-gold);
  margin: 56px 0;
}
.hh-stat__number {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--hh-gold);
  display: block;
}
.hh-stat__label {
  font-size: 13px;
  color: var(--hh-text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* =========================================================
   FORM
   ========================================================= */
.hh-form-wrap {
  background: var(--hh-light-bg);
  border: 1px solid var(--hh-border-light);
  padding: 60px;
}
.hh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hh-form-group { margin-bottom: 22px; }
.hh-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hh-form-group input,
.hh-form-group textarea,
.hh-form-group select {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid var(--hh-border-light);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--hh-text-dark);
  transition: border-color .3s, background .3s;
}
.hh-form-group input:focus,
.hh-form-group textarea:focus {
  outline: none;
  border-color: var(--hh-gold);
  background: rgba(201,169,97,.04);
}
.hh-form-group textarea { min-height: 120px; resize: vertical; }
.hh-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  font-size: 14px;
  color: var(--hh-text-gray);
}
.hh-checkbox input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--hh-gold); }

/* =========================================================
   FAQ / DETAILS
   ========================================================= */
.hh-faq details {
  border: 1px solid var(--hh-border-light);
  padding: 24px 28px;
  background: var(--hh-lighter-bg);
  margin-bottom: 18px;
  transition: border-color .3s;
}
.hh-faq details:hover,
.hh-faq details[open] { border-color: var(--hh-gold); background: var(--hh-light-bg); }
.hh-faq summary {
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hh-faq summary::-webkit-details-marker { display: none; }
.hh-faq summary::after {
  content: '+';
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--hh-gold);
  transition: transform .3s;
}
.hh-faq details[open] summary::after { transform: rotate(45deg); }
.hh-faq details p {
  margin-top: 18px;
  color: var(--hh-text-gray);
  line-height: 1.9;
}

/* =========================================================
   CITIES GRID
   ========================================================= */
.hh-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.hh-city {
  padding: 18px 10px;
  background: var(--hh-lighter-bg);
  border: 1px solid var(--hh-border-light);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all .3s;
  color: var(--hh-text-dark);
}
.hh-city:hover {
  background: var(--hh-gold);
  border-color: var(--hh-gold);
  color: var(--hh-black);
  transform: scale(1.05);
}

/* =========================================================
   DECORATIVE DIVIDER
   ========================================================= */
.hh-divider {
  border: none;
  border-top: 1px solid var(--hh-border-light);
  margin: 0;
}
.hh-divider--gold {
  border-color: var(--hh-gold);
  border-width: 3px;
}
.hh-gold-bar {
  height: 4px;
  width: 72px;
  background: var(--hh-gold);
  margin-bottom: 28px;
}

/* =========================================================
   BLOG - ARCHIVE / HOME
   ========================================================= */
.hh-blog-hero {
  min-height: 52vh;
  background-color: var(--hh-black);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--hh-white);
  position: relative;
  padding: 120px 6% 80px;
}
.hh-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.hh-blog-hero__content { position: relative; z-index: 1; }

.hh-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

article.hh-post-card {
  background: var(--hh-lighter-bg);
  border: 1px solid var(--hh-border-light);
  overflow: hidden;
  transition: all .3s;
}
article.hh-post-card:hover {
  border-color: var(--hh-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201,169,97,.15);
}
.hh-post-card__thumb { height: 240px; overflow: hidden; }
.hh-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
article.hh-post-card:hover .hh-post-card__thumb img { transform: scale(1.08); }
.hh-post-card__body { padding: 28px; }
.hh-post-card__meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hh-gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hh-post-card__title {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--hh-text-dark);
}
.hh-post-card__title a { color: inherit; }
.hh-post-card__title a:hover { color: var(--hh-gold); }
.hh-post-card__excerpt { color: var(--hh-text-gray); font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.hh-post-card__readmore {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hh-gold);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.hh-post-card__readmore:hover { border-bottom-color: var(--hh-gold); color: var(--hh-gold); }

/* Sidebar */
.hh-blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.hh-sidebar { margin-top: 0; }
.hh-widget {
  background: var(--hh-lighter-bg);
  border: 1px solid var(--hh-border-light);
  padding: 30px;
  margin-bottom: 30px;
}
.hh-widget__title {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--hh-gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hh-border-light);
}
.hh-widget ul { list-style: none; padding: 0; }
.hh-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hh-border-light);
  font-size: 14px;
}
.hh-widget ul li:last-child { border-bottom: none; }
.hh-widget ul li a { color: var(--hh-text-gray); }
.hh-widget ul li a:hover { color: var(--hh-gold); }

/* Pagination */
.hh-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 64px;
}
.hh-pagination .page-numbers {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hh-border-light);
  font-weight: 700;
  font-size: 14px;
  color: var(--hh-text-dark);
  transition: all .3s;
}
.hh-pagination .page-numbers.current,
.hh-pagination .page-numbers:hover {
  background: var(--hh-gold);
  border-color: var(--hh-gold);
  color: var(--hh-black);
}

/* =========================================================
   SINGLE POST
   ========================================================= */
.hh-single__header {
  min-height: 55vh;
  background-color: var(--hh-black);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 120px 6% 60px;
  position: relative;
  color: var(--hh-white);
}
.hh-single__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.3) 100%);
}
.hh-single__header-content { position: relative; z-index: 1; max-width: 900px; }
.hh-single__title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hh-single__meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hh-gold);
  font-weight: 700;
}
.hh-single__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 6%;
}
.hh-single__content h2,
.hh-single__content h3,
.hh-single__content h4 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 40px 0 16px;
  color: var(--hh-text-dark);
}
.hh-single__content h2 { font-size: clamp(28px, 3vw, 40px); }
.hh-single__content h3 { font-size: clamp(22px, 2.5vw, 32px); color: var(--hh-gold); }
.hh-single__content p { margin-bottom: 24px; line-height: 1.9; color: var(--hh-text-gray); }
.hh-single__content ul,
.hh-single__content ol { margin: 0 0 24px 30px; color: var(--hh-text-gray); line-height: 1.9; }
.hh-single__content blockquote {
  border-left: 4px solid var(--hh-gold);
  padding: 16px 28px;
  margin: 32px 0;
  background: var(--hh-light-bg);
  font-style: italic;
  font-size: 20px;
  color: var(--hh-text-dark);
}
.hh-single__content img { margin: 30px 0; }

.hh-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 6%;
  border-top: 1px solid var(--hh-border-light);
}
.hh-post-nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hh-text-gray);
  max-width: 45%;
}
.hh-post-nav a:hover { color: var(--hh-gold); }
.hh-post-nav__label {
  font-size: 11px;
  color: var(--hh-gold);
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 700;
}

/* Categories / tags */
.hh-post-tags { padding: 24px 6%; display: flex; flex-wrap: wrap; gap: 10px; }
.hh-post-tags a {
  padding: 6px 16px;
  border: 1px solid var(--hh-border-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hh-text-gray);
  transition: all .3s;
}
.hh-post-tags a:hover { border-color: var(--hh-gold); color: var(--hh-gold); }

/* =========================================================
   FOOTER
   ========================================================= */
#colophon {
  background: var(--hh-light-bg);
  border-top: 1px solid var(--hh-border-light);
  padding: 80px 6%;
  text-align: center;
}
.hh-footer__logo { margin: 0 auto 26px; }
.hh-footer__logo img { height: 52px; width: auto; margin: 0 auto; }
.hh-footer__logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  color: var(--hh-gold);
  letter-spacing: 3px;
}

.hh-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
}
.hh-social__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--hh-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--hh-text-dark);
  text-decoration: none;
  transition: all .3s;
}
.hh-social__icon:hover {
  background: var(--hh-gold);
  border-color: var(--hh-gold);
  color: var(--hh-black);
  transform: rotate(360deg) scale(1.1);
}

.hh-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin: 26px 0;
  list-style: none;
  padding: 0;
}
.hh-footer__links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hh-text-gray);
}
.hh-footer__links a:hover { color: var(--hh-gold); }

.hh-footer__legal {
  font-size: 11px;
  line-height: 1.9;
  color: #999;
  text-align: left;
  max-width: 1000px;
  margin: 40px auto 0;
}
.hh-footer__copy {
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hh-blog-layout { grid-template-columns: 1fr; }
  .hh-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  #masthead { padding: 12px 5%; }
  #site-navigation { display: none; }
  #site-navigation.is-open { display: block; position: absolute; top: 70px; left: 0; right: 0; background: rgba(0,0,0,.97); padding: 20px 5%; }
  #primary-menu { flex-direction: column; gap: 16px; }
  .hh-menu-toggle { display: flex; }
  
  .hh-section { padding: 72px 5%; }
  .hh-grid--2, .hh-grid--3, .hh-grid { grid-template-columns: 1fr; }
  .hh-form-grid { grid-template-columns: 1fr; }
  .hh-stats { flex-direction: column; padding: 32px; }
  .hh-form-wrap { padding: 36px 24px; }
  .hh-posts-grid { grid-template-columns: 1fr; }
  .hh-sidebar { grid-template-columns: 1fr; }
  .hh-post-nav { flex-direction: column; }
  .hh-post-nav a { max-width: 100%; }
  .hh-blog-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   HIGHLIGHT / SELECTION
   ========================================================= */
::selection { background: var(--hh-gold); color: var(--hh-black); }
