/* Custom variables for premium Slate Obsidian & Icy Blue look & feel */
:root {
  --primary-color: #3b82f6; /* Icy Blue */
  --primary-glow: rgba(59, 130, 246, 0.4);
  --bg-gradient: linear-gradient(135deg, #1e263b 0%, #2e3d5c 50%, #1e263b 100%);
  --panel-bg: rgba(15, 23, 42, 0.7);
  --sidebar-bg: rgba(30, 41, 59, 0.85);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text-primary: #cbd5e1; /* Crisp Slate Light */
  --text-secondary: #64748b; /* Muted Slate */
  --accent-color: #60a5fa; /* Soft Blue */
  --highlight-color: #ffffff; /* Pure White */
  --link-color: #38bdf8; /* Light Cyan */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: var(--bg-gradient);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(3, 7, 18, 0.6);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Base headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--highlight-color);
}

/* Structure */
#bg {
  width: 100%;
  min-height: 100vh;
  padding: 0 14px 28px 14px;
}

#shadow {
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(3, 7, 18, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateZ(0);
  will-change: transform;
  border: 1px solid var(--panel-border);
  border-top: none;
  border-radius: 0 0 24px 24px;
  padding: 0 28px 28px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Header */
header {
  margin-bottom: 21px;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 14px;
}

#blogname {
  text-decoration: none;
  display: block;
}

#blogname span.bold {
  font-size: 38px;
  font-weight: 800;
  color: var(--highlight-color);
  background: linear-gradient(to right, var(--highlight-color) 20%, var(--accent-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

header h1 {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 4px;
  font-family: var(--font-body);
}

/* Navigation */
nav {
  margin-bottom: 28px;
}

#nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

#nav li a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

/* Layout container */
#container {
  display: flex;
  gap: 28px;
}

#left-col {
  flex: 1;
  min-width: 0; /* Avoid layout break */
}

/* Main Content Card */
.post {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.entry_header h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--accent-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 11px;
  line-height: 1.2;
}

.entry_header h2 a,
.entry_header h2 a:link,
.entry_header h2 a:visited {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.entry_header h2 a:hover {
  color: var(--highlight-color);
}


.entry_content {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.8;
}

/* Styles for inside post content */
.entry_content p {
  margin-bottom: 14px;
}

.entry_content a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--link-color);
  transition: all 0.2s ease;
}

.entry_content a:visited {
  color: var(--link-color);
  border-bottom-color: var(--link-color);
}

.entry_content a:hover {
  color: var(--accent-color);
  border-bottom-style: solid;
  border-bottom-color: var(--accent-color);
}

.entry_content ul, .entry_content ol {
  margin: 11px 0 18px 18px;
}

.entry_content li {
  margin-bottom: 7px;
}

/* Flex Container formatting inside resume */
.flexContainer {
  display: flex;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.4);
  padding: 8px 14px;
  border-radius: 8px;
  margin: 21px 0 7px 0;
  border: 1px solid var(--panel-border);
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--highlight-color);
  font-size: 15px;
}

.flexContainer div:first-child {
  color: var(--accent-color);
}

.entry_content p.has-text-align-center {
  font-weight: 700;
  color: var(--highlight-color);
  margin-bottom: 11px;
  font-size: 17px;
}

.entry_content p.has-medium-font-size {
  font-size: 22px;
  font-weight: 800;
  color: var(--highlight-color);
  margin-top: 28px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--panel-border);
  padding-bottom: 6px;
}

/* Sidebar */
#sidebar {
  width: 380px;
  flex-shrink: 0;
}

#sidebar ul {
  list-style: none;
}

.widget {
  background: var(--sidebar-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 21px;
  margin-bottom: 21px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.widget h2 {
  font-size: 18px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 7px;
}

.widget h2 a {
  color: inherit;
  text-decoration: none;
}

.widget ul li {
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  padding-bottom: 7px;
}

.widget ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.widget ul li a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
}

.widget ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
  text-decoration: none;
}

/* BookMe widget modifications for Icy Slate theme */
.book-me-widget {
  background: var(--sidebar-bg) !important;
  border: 1px solid var(--panel-border) !important;
}

.book-me-widget h3 {
  color: var(--accent-color) !important;
  border-bottom: 1px solid var(--panel-border) !important;
}

.book-me-widget label {
  color: var(--text-primary) !important;
}

.book-me-widget input, .book-me-widget select, .book-me-widget textarea {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(3, 7, 18, 0.5) !important;
}

.book-me-widget button {
  background: var(--primary-color) !important;
}

/* Post and content image constraints */
.entry_content img,
.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  display: block;
}

/* Responsiveness */
@media (max-width: 1024px) {
  #container {
    flex-direction: column;
    gap: 21px;
  }
  
  #sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #shadow {
    padding: 0 14px 14px 14px;
    border-radius: 0 0 16px 16px;
  }
  
  #blogname span.bold {
    font-size: 28px;
  }
  
  .post {
    padding: 18px;
  }
  
  .flexContainer {
    flex-direction: column;
    gap: 4px;
    padding: 7px 11px;
  }
}

/* WinWinHost custom BuyVM-inspired design elements */
.host-hero {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid var(--panel-border);
  margin-bottom: 40px;
}

.host-hero-content {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.host-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--link-color);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 6px;
}

.host-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.host-title span.cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #00f5d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.host-tagline {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.6;
}

.host-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-cyan {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #38bdf8 0%, #00f5d4 100%);
  color: #030712 !important;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-title);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.5);
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  color: #fff !important;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-title);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.host-hero-graphic {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.host-graphic-card {
  width: 100%;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.host-plans-title {
  text-align: center;
  margin-bottom: 40px;
}

.host-plans-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.host-plans-title p {
  color: var(--text-secondary);
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.host-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.host-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
}

.host-card-header h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

.host-card-header .subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--link-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.host-card-price {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-title);
}

.host-card-price span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.host-card-features {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.host-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.host-card-features li svg {
  color: #00f5d4;
  flex-shrink: 0;
}

.host-card-btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--panel-border);
  color: #fff !important;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-title);
  transition: all 0.2s ease;
}

.host-card-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
}

.host-features-section {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
}

.host-features-section h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-box p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .host-hero {
    padding: 40px 0;
  }
  .host-title {
    font-size: 36px;
  }
}
