@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

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

:root{
  --dark:#2a2a2a;
  --darker:#1e1e1e;
  --red:#c0392b;
  --red-hover:#a93226;
  --light:#f5f5f5;
  --white:#fff;
  --gray:#888;
  --border:#3a3a3a;
}

html{scroll-behavior:smooth}

body{
  font-family:'Open Sans',Arial,sans-serif;
  color:#333;
  background:var(--light);
  line-height:1.7;
  font-size:16px;
}

h1,h2,h3,h4,h5,h6{
  font-family:'Oswald',Arial,sans-serif;
  font-weight:700;
  line-height:1.2;
}

a{color:var(--red);text-decoration:none;transition:color .2s}
a:hover{color:var(--red-hover)}

img{max-width:100%;height:auto;display:block}

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

/* ===== HEADER ===== */
.site-header{
  background:var(--darker);
  border-bottom:3px solid var(--red);
  padding:18px 0;
  position:sticky;
  top:0;
  z-index:100;
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

.logo{
  font-family:'Oswald',sans-serif;
  font-size:1.5rem;
  font-weight:700;
  color:var(--white);
  letter-spacing:1px;
}

.logo span{color:var(--red)}

nav{display:flex;gap:24px;flex-wrap:wrap}

nav a{
  color:#ccc;
  font-family:'Oswald',sans-serif;
  font-size:.95rem;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:color .2s;
}

nav a:hover,nav a.active{color:var(--red)}

/* ===== HERO ===== */
.hero{
  background:var(--dark);
  color:var(--white);
  padding:70px 0 60px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(192,57,43,.15) 0%,transparent 60%);
  pointer-events:none;
}

.hero h1{
  font-size:2.4rem;
  margin-bottom:16px;
  position:relative;
}

.hero h1 span{color:var(--red)}

.hero-sub{
  font-size:1.1rem;
  color:#bbb;
  max-width:700px;
  margin:0 auto 30px;
  position:relative;
}

.hero-badge{
  display:inline-block;
  background:var(--red);
  color:var(--white);
  font-family:'Oswald',sans-serif;
  font-size:.85rem;
  padding:6px 18px;
  border-radius:3px;
  text-transform:uppercase;
  letter-spacing:1px;
  position:relative;
}

/* ===== SECTIONS ===== */
.section{padding:60px 0}

.section--dark{
  background:var(--dark);
  color:var(--white);
}

.section--dark h2,
.section--dark h3{color:var(--white)}

.section--dark p{color:#ccc}

.section-title{
  font-size:1.9rem;
  text-align:center;
  margin-bottom:12px;
}

.section-title span{color:var(--red)}

.section-sub{
  text-align:center;
  color:var(--gray);
  margin-bottom:40px;
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
}

/* ===== RATING CARD ===== */
.rating-list{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.rating-card{
  background:var(--white);
  border-radius:6px;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
  padding:30px 32px;
  position:relative;
  border-left:4px solid var(--border);
  transition:box-shadow .3s,border-color .3s;
}

.rating-card:hover{
  box-shadow:0 4px 20px rgba(0,0,0,.12);
  border-left-color:var(--red);
}

.rating-card.featured{
  border-left-color:var(--red);
  background:linear-gradient(135deg,#fff 80%,#fdf2f0 100%);
}

.card-pos{
  position:absolute;
  top:-14px;
  left:24px;
  background:var(--dark);
  color:var(--white);
  font-family:'Oswald',sans-serif;
  font-size:.9rem;
  font-weight:700;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}

.rating-card.featured .card-pos{
  background:var(--red);
}

.card-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}

.card-header h3{
  font-size:1.35rem;
}

.card-city{
  font-family:'Oswald',sans-serif;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--gray);
}

.card-stars{
  color:#e67e22;
  font-size:1.1rem;
  letter-spacing:2px;
}

.card-body p{
  margin-bottom:10px;
  color:#555;
}

.card-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.tag{
  background:var(--light);
  color:#555;
  font-size:.78rem;
  padding:4px 12px;
  border-radius:3px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.tag--red{
  background:var(--red);
  color:var(--white);
}

/* ===== CTA ===== */
.cta-block{
  background:var(--red);
  color:var(--white);
  text-align:center;
  padding:50px 20px;
}

.cta-block h2{
  font-size:1.8rem;
  margin-bottom:12px;
}

.cta-block p{
  margin-bottom:24px;
  font-size:1.05rem;
  opacity:.9;
}

.btn{
  display:inline-block;
  font-family:'Oswald',sans-serif;
  font-size:1rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  padding:14px 36px;
  border-radius:4px;
  transition:background .2s,transform .15s;
  cursor:pointer;
  border:none;
}

.btn--white{
  background:var(--white);
  color:var(--red);
}

.btn--white:hover{
  background:#eee;
  color:var(--red-hover);
  transform:translateY(-1px);
}

.btn--red{
  background:var(--red);
  color:var(--white);
}

.btn--red:hover{
  background:var(--red-hover);
  transform:translateY(-1px);
}

.btn--outline{
  background:transparent;
  color:var(--red);
  border:2px solid var(--red);
}

.btn--outline:hover{
  background:var(--red);
  color:var(--white);
}

.cta-buttons{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ===== INFO GRID ===== */
.info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}

.info-card{
  background:var(--white);
  border-radius:6px;
  padding:28px 24px;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
  border-top:3px solid var(--red);
}

.section--dark .info-card{
  background:var(--darker);
  box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.info-card h3{
  font-size:1.15rem;
  margin-bottom:10px;
}

.info-card p{
  font-size:.95rem;
}

/* ===== ARTICLE ===== */
.article-content{
  max-width:800px;
  margin:0 auto;
}

.article-content h2{
  font-size:1.6rem;
  margin:36px 0 14px;
  color:var(--dark);
}

.article-content h3{
  font-size:1.25rem;
  margin:28px 0 10px;
  color:var(--dark);
}

.section--dark .article-content h2,
.section--dark .article-content h3{
  color:var(--white);
}

.article-content p{
  margin-bottom:16px;
}

.article-content ul,
.article-content ol{
  margin:0 0 18px 24px;
}

.article-content li{
  margin-bottom:8px;
}

.article-content blockquote{
  border-left:4px solid var(--red);
  padding:14px 20px;
  margin:24px 0;
  background:rgba(192,57,43,.05);
  font-style:italic;
  color:#555;
}

/* ===== FOOTER ===== */
.site-footer{
  background:var(--darker);
  color:#999;
  padding:30px 0;
  text-align:center;
  font-size:.85rem;
  border-top:3px solid var(--red);
}

.site-footer a{color:var(--red)}

.footer-links{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:14px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#aaa;
  font-family:'Oswald',sans-serif;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.footer-links a:hover{color:var(--red)}

/* ===== BREADCRUMBS ===== */
.breadcrumbs{
  padding:14px 0;
  font-size:.85rem;
  color:var(--gray);
}

.breadcrumbs a{color:var(--red)}
.breadcrumbs span{margin:0 6px;color:#bbb}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .hero h1{font-size:1.7rem}
  .hero-sub{font-size:.95rem}
  .section{padding:40px 0}
  .section-title{font-size:1.5rem}
  .rating-card{padding:22px 18px}
  .card-header h3{font-size:1.15rem}
  .cta-block h2{font-size:1.4rem}
  .info-grid{grid-template-columns:1fr}
  nav{gap:14px}
  .logo{font-size:1.25rem}
}

@media(max-width:480px){
  .hero{padding:50px 0 40px}
  .hero h1{font-size:1.4rem}
  .container{padding:0 14px}
  .cta-buttons{flex-direction:column;align-items:center}
}
