/* londresturismo.es — style.css, reconstruido 2025 */

:root {
  --primary:   #9b2900;
  --secondary: #cc6600;
  --accent:    #0094d2;
  --text:      #333333;
  --bg:        #f5f5f5;
  --bg-white:  #ffffff;
  --nav-bg:    #1a1a1a;
  --border:    #d5d5d5;
  --header-bg: #ffffff;
  --footer-bg: #111111;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #ed8f00;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--secondary);
}

p {
  margin-bottom: 1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1.3;
  color: var(--text);
}

/* ===== LAYOUT WRAPPER ===== */
#lt-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* ===== HEADER ===== */
#lt-header {
  background: var(--header-bg);
  padding: 20px 20px 16px;
  border-bottom: 3px solid var(--secondary);
}

#lt-title-area a {
  text-decoration: none;
}

#lt-title {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
}

#lt-title a {
  color: var(--primary);
  text-decoration: none;
}

#lt-description {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* ===== NAVIGATION ===== */
#lt-nav {
  background: var(--nav-bg);
  position: relative;
  z-index: 100;
}

#lt-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

#lt-nav ul li {
  position: relative;
}

#lt-nav ul li a {
  display: block;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 15px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}

#lt-nav ul li a:hover,
#lt-nav ul li.lt-activo a {
  color: var(--accent);
  text-decoration: none;
  background: rgba(255,255,255,0.08);
}

/* ===== INNER CONTENT ===== */
#lt-inner {
  padding: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

#lt-content {
  flex: 1;
  min-width: 0;
}

/* ===== HOME SECTIONS ===== */
.lt-seccion-titulo {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lt-seccion-titulo a {
  color: var(--primary);
  text-decoration: none;
}

.lt-seccion-titulo a:hover {
  color: var(--secondary);
}

/* Large featured posts (Qué visitar) */
.lt-visitar-bloque {
  margin-bottom: 24px;
}

.lt-visitar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 10px;
}

.lt-visitar-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.lt-visitar-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.lt-visitar-item-texto {
  padding: 8px 10px 10px;
}

.lt-visitar-item-texto h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.lt-visitar-item-texto h3 a {
  color: var(--text);
  text-decoration: none;
}

.lt-visitar-item-texto h3 a:hover {
  color: var(--accent);
}

.lt-visitar-item-texto p {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

.lt-mas-enlace {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  margin-top: 4px;
}

/* Medium list (Qué hacer) */
.lt-hacer-bloque {
  margin-bottom: 24px;
}

.lt-hacer-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lt-hacer-lista li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 10px;
}

.lt-hacer-lista li img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.lt-hacer-lista-texto h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lt-hacer-lista-texto h3 a {
  color: var(--text);
  text-decoration: none;
}

.lt-hacer-lista-texto h3 a:hover {
  color: var(--accent);
}

.lt-hacer-lista-texto p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Small list (Compras, Barrios) */
.lt-mini-bloque {
  margin-bottom: 24px;
}

.lt-mini-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lt-mini-lista li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.lt-mini-lista li:last-child {
  border-bottom: none;
}

.lt-mini-lista li img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.lt-mini-lista li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.lt-mini-lista li a:hover {
  color: var(--accent);
}

/* ===== SIDEBAR ===== */
#lt-sidebar {
  width: 200px;
  flex-shrink: 0;
}

.lt-sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.lt-sidebar-widget-titulo {
  background: var(--primary);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 12px;
  letter-spacing: 0.5px;
}

.lt-sidebar-widget-cuerpo {
  padding: 12px;
}

.lt-sidebar-widget-cuerpo p {
  font-size: 13px;
  color: #666;
  margin-bottom: 0.5em;
}

.lt-sidebar-widget-cuerpo ul {
  list-style: none;
  padding: 0;
}

.lt-sidebar-widget-cuerpo ul li {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.lt-sidebar-widget-cuerpo ul li:last-child {
  border-bottom: none;
}

.lt-sidebar-widget-cuerpo ul li a {
  color: var(--text);
  text-decoration: none;
}

.lt-sidebar-widget-cuerpo ul li a:hover {
  color: var(--accent);
}

/* ===== FOOTER ===== */
#lt-footer {
  background: var(--footer-bg);
  color: #999;
  font-size: 13px;
  padding: 16px 20px;
  text-align: center;
  line-height: 1.8;
}

#lt-footer a {
  color: #ccc;
  text-decoration: none;
}

#lt-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===== INTERIOR PAGE ===== */
.lt-pagina-interior {
  background: var(--bg-white);
  padding: 20px 24px;
}

.lt-pagina-interior h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
}

.lt-pagina-interior h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 10px;
}

.lt-pagina-interior h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 8px;
}

.lt-pagina-interior p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

.lt-pagina-interior ul, .lt-pagina-interior ol {
  margin: 0 0 1em 1.5em;
}

.lt-pagina-interior li {
  margin-bottom: 0.4em;
  font-size: 15px;
}

.lt-destino-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.lt-destino-item:last-child {
  border-bottom: none;
}

.lt-destino-item img {
  width: 200px;
  flex-shrink: 0;
  height: 130px;
  object-fit: cover;
}

.lt-destino-texto h2 {
  margin-top: 0;
  font-size: 20px;
}

/* ===== ARTICLE TABLE (DOCX) ===== */
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.article-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px;
  text-align: left;
}

.article-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.article-table tr:nth-child(even) td {
  background: #f8f9fa;
}

/* ===== FAQ ===== */
.faq-section {
  margin-top: 32px;
}

.faq-section h3 {
  background: #f0f4f8;
  padding: 12px 16px;
  border-left: 4px solid var(--accent);
  margin: 0 0 2px;
  font-size: 16px;
  color: var(--text);
}

.faq-section p {
  padding: 12px 16px;
  background: #fafafa;
  border-left: 4px solid var(--border);
  margin-bottom: 16px;
  font-size: 14px;
}

/* ===== 404 ===== */
.error-404 {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-white);
}

.error-404 .big-404 {
  font-size: 120px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-family: 'Oswald', Arial, sans-serif;
}

.error-404 h2 {
  font-size: 28px;
  margin: 16px 0;
  color: var(--text);
}

.error-404 p {
  color: #666;
  margin-bottom: 0;
}

.btn-back {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 16px;
  text-decoration: none;
}

.btn-back:hover {
  background: var(--secondary);
  text-decoration: none;
  color: #fff;
}

/* ===== BREADCRUMB ===== */
.lt-breadcrumb {
  font-size: 13px;
  color: #999;
  padding: 8px 20px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.lt-breadcrumb a {
  color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #lt-inner {
    flex-direction: column;
    padding: 12px;
  }

  #lt-sidebar {
    width: 100%;
  }

  .lt-visitar-grid {
    grid-template-columns: 1fr;
  }

  #lt-nav ul {
    flex-direction: column;
  }

  #lt-nav ul li a {
    padding: 8px 14px;
    border-bottom: 1px solid #333;
  }

  #lt-title {
    font-size: 26px;
  }

  .lt-destino-item {
    flex-direction: column;
  }

  .lt-destino-item img {
    width: 100%;
    height: auto;
  }
}
