@charset "UTF-8";
/*
Theme Name: Blog Goofy Theme
Author: Mark Plante
Description: Custom theme for BlogGoofy.com - Disney World for Men
Version: 1.0
*/
:root {
  --bg-dark: #0b1d2a;
  --primary: #0f2f44;
  --accent: #f4b400;
  --accent-orange: #ff7a00;
  --text-light: #ffffff; }

/* FULL HEIGHT LAYOUT */
html, body {
  height: 100%;
  margin: 0; }

/* FLEX WRAPPER */
body {
  display: flex;
  flex-direction: column; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light); }

.site-header {
  background: var(--primary);
  padding: 15px 0;
  border-bottom: 3px solid var(--accent); }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.logo img {
  height: 120px;
  /* was 60px */
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)); }

.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none; }

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold; }

.main-nav a:hover {
  color: var(--accent); }

/* STICKY HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease; }

/* SHRINK EFFECT */
.site-header.shrink {
  padding: 5px 0;
  background: #08141d; }

/* LOGO SHRINK */
.site-header.shrink .logo img {
  height: 55px; }

/* DEFAULT LOGO */
.logo img {
  height: 120px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)); }

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer; }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  background: var(--primary); }

.mobile-nav ul {
  list-style: none;
  padding: 0; }

.mobile-nav li {
  border-bottom: 1px solid #1c3b52; }

.mobile-nav a {
  display: block;
  padding: 15px;
  color: white;
  text-decoration: none; }

/* SHOW MOBILE MENU */
.mobile-nav.active {
  display: block; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    display: none; }
  .hamburger {
    display: block; } }

.hero {
  background: linear-gradient(to right, #0b1d2a, #0f2f44);
  padding: 100px 20px;
  text-align: center; }

.hero h1 {
  font-size: 48px; }

.hero p {
  font-size: 20px;
  margin: 20px 0; }

.btn {
  background: var(--accent);
  color: black;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; }

.card {
  background: var(--primary);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold; }

.card:hover {
  background: var(--accent-orange); }

.site-footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #aaa; }

/* ===== MAIN NAV ===== */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.main-nav > ul {
  display: flex;
  gap: 25px; }

.main-nav li {
  position: relative; }

/* TOP LEVEL LINKS */
.main-nav > ul > li > a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  display: block; }

/* HOVER EFFECT */
.main-nav a:hover {
  color: var(--accent); }

/* ===== DROPDOWN LEVEL 1 ===== */
.main-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary);
  min-width: 220px;
  display: none;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); }

/* SHOW DROPDOWN */
.main-nav li:hover > ul {
  display: block; }

/* DROPDOWN LINKS */
.main-nav ul ul li a {
  padding: 12px 15px;
  color: white;
  display: block; }

/* HOVER DROPDOWN ITEM */
.main-nav ul ul li a:hover {
  background: var(--accent-orange); }

/* ===== LEVEL 2 (SUB-SUB MENU) ===== */
.main-nav ul ul ul {
  top: 0;
  left: 100%; }

/* ADD ARROW INDICATOR */
.main-nav li.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 10px; }

.main-nav ul ul li.menu-item-has-children > a::after {
  content: " ▶";
  float: right; }

.post-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative; }

.post-hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }

.post-hero h1 {
  color: white;
  font-size: 42px;
  text-align: center;
  max-width: 800px; }

.post-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px; }

.post-meta {
  color: #aaa;
  margin-bottom: 20px;
  display: flex;
  gap: 20px; }

.post-content {
  line-height: 1.7;
  font-size: 18px; }

/* Make images clean */
.post-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0; }

.post-content a {
  color: var(--accent);
  font-weight: bold; }

.related-posts {
  background: #08141d;
  padding: 50px 20px; }

.related-posts h2 {
  text-align: center;
  margin-bottom: 30px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto; }

.related-card {
  background: var(--primary);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease; }

.related-card:hover {
  transform: scale(1.03); }

.related-card .thumb {
  height: 150px;
  background-size: cover;
  background-position: center; }

.related-card h3 {
  padding: 15px;
  font-size: 18px; }

/* TOC BOX */
.toc {
  background: #0f2f44;
  border-left: 5px solid var(--accent);
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px; }

/* TITLE */
.toc h3 {
  margin-top: 0;
  color: var(--accent); }

/* LIST */
.toc ul {
  list-style: none;
  padding-left: 0; }

.toc li {
  margin: 10px 0; }

/* LINKS */
.toc a {
  color: white;
  text-decoration: none; }

.toc a:hover {
  color: var(--accent-orange); }

html {
  scroll-behavior: smooth; }

/* BASE CALLOUT */
.callout {
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
  font-weight: 500; }

/* TIP */
.callout.tip {
  background: #0f2f44;
  border-left: 5px solid #00c853; }

/* WARNING */
.callout.warning {
  background: #3a1f1f;
  border-left: 5px solid #ff5252; }

/* INFO */
.callout.info {
  background: #1a2e3b;
  border-left: 5px solid var(--accent); }

/* BEER / FUN */
.callout.fun {
  background: #2b2b00;
  border-left: 5px solid #f4b400; }

/* TITLE */
.callout strong {
  display: block;
  margin-bottom: 8px; }

.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0f2f44;
  border-left: 5px solid var(--accent);
  padding: 20px;
  margin: 50px 0;
  border-radius: 10px; }

/* AUTHOR IMAGE */
.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; }

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; }

.author-info h3 {
  margin: 0 0 5px 0;
  color: var(--accent-orange); }

.author-info p {
  margin: 0;
  color: #ddd;
  line-height: 1.5; }

.content-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px; }

.post-main {
  min-width: 0; }

.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content; }

.sidebar-box {
  background: #0f2f44;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--accent); }

.sidebar-box h3 {
  margin-top: 0; }

.sidebar-box ul {
  list-style: none;
  padding: 0; }

.sidebar-box li {
  margin: 10px 0; }

.sidebar-box a {
  color: white;
  text-decoration: none; }

.sidebar-box a:hover {
  color: var(--accent-orange); }

@media (max-width: 900px) {
  .content-wrapper {
    grid-template-columns: 1fr; }
  .sidebar {
    position: relative;
    top: auto; } }

.popular-item a {
  display: flex;
  align-items: center;
  gap: 10px; }

.popular-thumb {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: center;
  border-radius: 6px; }

.popular-item span {
  font-size: 14px; }

.related-content {
  padding: 15px; }

.related-content .category {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase; }

.related-content h3 {
  margin: 5px 0 0 0;
  font-size: 18px; }

.page-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px; }

.page-content {
  line-height: 1.7; }

.archive-header {
  text-align: center;
  margin: 40px 0; }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px; }

.archive-card {
  background: var(--primary);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: white; }

.archive-content {
  padding: 15px; }

.error-page {
  text-align: center;
  padding: 100px 20px; }

.error-page h1 {
  font-size: 80px; }

.thumb {
  width: 100%;
  height: 180px;
  overflow: hidden; }

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.archive-card:hover .thumb img {
  transform: scale(1.05);
  transition: transform 0.3s ease; }

/* THUMB CONTAINER */
.thumb {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden; }

/* CATEGORY LABEL */
.category-label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: black;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase; }

/* OPTIONAL: DARK BACKGROUND FOR BETTER READABILITY */
.category-label {
  background: rgba(244, 180, 0, 0.9); }

.category-label.food-drinks {
  background: #f4b400; }

.category-label.rides {
  background: #2196f3; }

.category-label.money {
  background: #4caf50; }

/* META LINE */
.meta {
  font-size: 12px;
  color: #bbb;
  margin-bottom: 8px;
  display: flex;
  gap: 6px;
  align-items: center; }

/* HERO */
.homepage-hero {
  max-width: 98%;
  margin: 10px auto;
  padding: 10px 0; }

.hero-card {
  height: 60vh;
  width: 98%;
  background-size: cover;
  background-position: cover;
  position: relative;
  border-radius: 10px;
  overflow: hidden; }

.hero-card .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px; }

.hero-card h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 10px; }
  .hero-card h1 a {
    color: white;
    text-decoration: none; }

.hero-card p {
  color: #ddd;
  max-width: 600px; }

/* SECTION SPACING */
.homepage-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px; }
  .homepage-section h1 a {
    color: white; }
  .homepage-section p {
    text-align: right;
    float: right; }

/* GRID */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; }

/* CARDS */
.post-card {
  background: var(--primary);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease; }

.post-card:hover {
  transform: scale(1.03); }

.post-card .thumb {
  height: 160px;
  background-size: cover;
  background-position: center; }

.post-card h3 {
  padding: 15px;
  font-size: 18px;
  display: flex;
  box-sizing: border-box; }

.post-card p {
  padding: 0 15px;
  font-size: 14px;
  text-align: left;
  display: flex; }

/* CATEGORY COLORS */
.category-food-drinks h1 {
  color: #ffffff; }

.category-food-drinks .category-description {
  background: silver;
  color: black;
  padding: 3px 9px;
  border: 1px solid silver;
  border-radius: 3px; }

.category-rides h1 {
  color: #ffffff; }

.category-rides .category-description {
  color: #ffffff;
  padding: 3px 9px;
  border: 1px solid #ffffff;
  border-radius: 3px; }

.category-money h1 {
  color: #ffffff; }

.category-money .category-description {
  background: silver;
  color: black;
  padding: 3px 9px;
  border: 1px solid silver;
  border-radius: 3px; }

.category-dad-mode h1 {
  color: #ffffff; }

.category-dad-mode .category-description {
  background: silver;
  color: black;
  padding: 3px 9px;
  border: 1px solid silver;
  border-radius: 3px; }

.category-opinion h1 {
  color: #ffffff; }

.category-opinion .category-description {
  background: silver;
  color: black;
  padding: 3px 9px;
  border: 1px solid silver;
  border-radius: 3px; }

/* MAIN CONTENT AREA */
.site-wrapper {
  flex: 1; }

.site-footer {
  border-top: 2px solid var(--accent); }

.site-footer {
  background: #08141d;
  color: #ccc;
  padding: 40px 20px 20px;
  margin-top: 50px; }

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; }

/* BRAND */
.footer-brand img {
  height: 250px;
  margin-bottom: 10px; }

/* HEADINGS */
.site-footer h3 {
  color: white;
  margin-bottom: 10px; }

/* LINKS */
.site-footer a {
  color: #ccc;
  text-decoration: none; }

.site-footer a:hover {
  color: var(--accent); }

/* LIST */
.footer-categories ul {
  list-style: none;
  padding: 0; }

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

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #1c3b52;
  padding-top: 15px; }

/* RESET FOOTER MENU */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0; }

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

/* REMOVE NESTED MENU CHAOS */
.footer-nav ul ul {
  display: none; }

.footer-categories ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start; }

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

.footer-brand p {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa; }

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 15px;
  color: #bbb; }

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

.breadcrumbs a:hover {
  text-decoration: underline; }

@media (max-width: 600px) {
  .author-box {
    flex-direction: column;
    align-items: flex-start; }
  .author-box img {
    width: 70px;
    height: 70px; } }

.author-box:hover {
  transform: translateY(-10px);
  transition: 0.2s ease; }

.homepage-intro {
  max-width: 1100px;
  margin: 40px auto;
  text-align: center;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6; }

a.flink {
  color: var(--accent);
  text-align: center;
  font-size: 122%;
  font-weight: 600;
  display: flex; }

.visually-hidden {
  position: absolute;
  left: -9999px; }

.category-description {
  max-width: 1000px;
  margin: 10px auto 30px;
  text-align: center;
  color: #ccc;
  font-size: 16px;
  line-height: 1.6; }

.pagination {
  margin: 40px 0;
  text-align: center; }

.pagination .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  background: #eee;
  border-radius: 5px;
  text-decoration: none; }

.pagination .current {
  background: var(--accent);
  color: var(--bg-dark); }

/*# sourceMappingURL=style.map */