/*
Theme Name: Alohaus SEO
Theme URI: https://alohaus.com.mx
Author: Alohaus
Description: Tema optimizado para SEO con diseño corporativo
Version: 1.0
*/

:root {
  --color-primary: #C53678;
  --color-secondary: #FF5841;
  --color-dark: #1A1A2E;
  --color-light: #FFF5F3;
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #4B5563;
  background: #FFF5F3;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid #F3E8F3;
}

.top-bar {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  color: white;
  padding: 8px 16px;
  font-size: 14px;
}

.top-bar a {
  color: white;
  text-decoration: none;
}

.main-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: #1A1A2E;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  color: #4B5563;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #C53678;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C53678, #FF5841);
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn-primary {
  background: #C53678;
  color: white !important;
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #A52D64;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 54, 120, 0.3);
}

.site-main {
  padding-top: 140px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.page-header {
  text-align: center;
  padding: 60px 0;
}

.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #C53678 0%, #FF5841 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.4s;
  border: 2px solid transparent;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(197, 54, 120, 0.15);
  border-color: #C53678;
}

.post-thumbnail {
  height: 220px;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.1);
}

.post-content {
  padding: 24px;
}

.post-meta {
  display: flex;
  gap: 16px;
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 12px;
}

.post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.post-title a:hover {
  color: #C53678;
}

.post-excerpt {
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  color: #C53678;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.read-more:hover {
  color: #FF5841;
  gap: 12px;
}

.site-footer {
  background: #1A1A2E;
  color: white;
  padding: 64px 16px 32px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #C53678, #FF5841);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.footer-text {
  color: #9CA3AF;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  color: #9CA3AF;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
}

.pagination a, .pagination span {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.pagination a {
  color: #4B5563;
  border: 2px solid #E5E7EB;
}

.pagination a:hover {
  background: #C53678;
  color: white;
  border-color: #C53678;
}

.pagination .current {
  background: linear-gradient(135deg, #C53678, #FF5841);
  color: white;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .page-title {
    font-size: 32px;
  }
}