/*
 Theme Name: StayAwards Light v2
 Theme URI: https://stayawards.ro
 Author: StayAwards
 Description: Light, modern theme for StayAwards – top cazări și premii bazate pe recenzii reale.
 Version: 2.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: stayawards-light
*/

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9fafb;
  color: #111827;
}

a {
  color: #f97316;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2rem;
}

/* HEADER & NAV */
.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo-badge {
  height: 2.2rem;
  width: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg,#fed7aa,#fb923c,#facc15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 10px 30px rgba(249,115,22,0.45);
}

.site-logo-text-main {
  font-size: 1.1rem;
  font-weight: 700;
}

.site-logo-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.site-nav a {
  color: #374151;
  text-decoration: none;
}

.site-nav a:hover {
  color: #111827;
}

@media (max-width: 768px) {
  .site-header-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav ul {
    flex-wrap: wrap;
  }
}

/* HERO */
.hero {
  text-align: center;
  padding: 2.75rem 1rem 2.25rem;
  margin-bottom: 2rem;
  background: radial-gradient(circle at top, #fef3c7 0, #ffffff 40%, #f9fafb 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(209,213,219,0.8);
  box-shadow: 0 22px 60px rgba(15,23,42,0.08);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(251,191,36,0.6);
  margin-bottom: 0.9rem;
}

.hero-kicker-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ea7a1f;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  background: linear-gradient(to right, #f97316, #facc15);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.7rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.9);
  color: #4b5563;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(to right, #fb923c, #f97316, #facc15);
  color: #111827;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(249,115,22,0.25);
  border: none;
  font-size: 0.9rem;
}

.btn-main:hover {
  box-shadow: 0 22px 60px rgba(249,115,22,0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-weight: 500;
  border: 1px solid rgba(148,163,184,0.8);
  box-shadow: 0 12px 30px rgba(148,163,184,0.35);
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: #f9fafb;
}

/* CONTENT LAYOUT */
main.top-list {
  margin-top: 1.5rem;
}

.top-list h2 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.top-list p.top-intro {
  font-size: 0.9rem;
  color: #6b7280;
}

/* CARDS */
.top-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(209,213,219,0.9);
  padding: 0.9rem 0.9rem 1.1rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card-img-wrap {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: #e5e7eb;
}

.card-img-wrap img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-rank {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(17,24,39,0.85);
  color: #fde68a;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: #111827;
}

.card-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

.card-score {
  font-size: 0.9rem;
  color: #f97316;
  font-weight: 600;
}

.card-footer-link {
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

/* SINGLE STAY */
.single-stay-header {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(0,3fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .single-stay-header {
    grid-template-columns: 1fr;
  }
}

.single-stay-main-img img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}

.single-stay-meta {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

.single-stay-scores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #fef3c7;
  font-size: 0.75rem;
  color: #92400e;
}

/* FOOTER */
.site-footer {
  margin-top: 3rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(209,213,219,0.9);
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

/* ALERTS */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #ecfdf3;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  color: #b91c1c;
}
