@charset "UTF-8";
/*
Theme Name: DAWGS 2026
Theme URI: https://disneydawgs.com
Author: ChatGPT
Author URI: https://markplante.com
Description: A very basic WordPress starter theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-starter
*/
/* -----------------------
COLOR SYSTEM (from logo)
----------------------- */
:root {
  --dawgs-blue: #1E4FA3;
  --dawgs-blue-dark: #0B1D3A;
  --dawgs-gold: #F5B800;
  --dawgs-yellow: #FFD447;
  --dawgs-red: #E63946;
  --dawgs-red-dark: #660000;
  --dawgs-silver: #E6E9EF;
  --dawgs-accent: #2C6BD8; }

/* -----------------------
GLOBAL
----------------------- */
html, body {
  height: 100%;
  box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background: #f6f8fb;
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

.container {
  width: 1200px;
  max-width: 95%;
  margin: auto; }

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

main {
  flex: 1; }

.print-button {
  background: #F5B800;
  color: #000;
  padding: 12px 18px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: .2s; }

.print-button:hover {
  background: #FFD447;
  transform: translateY(-2px); }

.recipe-print {
  margin-top: 10px;
  margin-bottom: 20px; }

@media print {
  header,
  footer,
  .site-header,
  .site-footer,
  .mobile-nav,
  .desktop-nav,
  .print-button {
    display: none !important; }
  body {
    background: white; }
  .recipe-page {
    max-width: 700px; }
  .recipe-layout {
    grid-template-columns: 1fr; } }

/* -----------------------
HEADER
----------------------- */
.site-header {
  position: relative;
  z-index: 1000;
  background: linear-gradient(90deg, var(--dawgs-blue-dark), var(--dawgs-blue));
  border-bottom: 4px solid var(--dawgs-gold); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0; }

.site-logo img {
  height: 70px; }

.site-header.shrink .site-logo img {
  height: 50px; }

.site-header.shrink .desktop-menu {
  gap: 22px; }

/* =========================
HEADER LAYOUT
========================= */
.site-header {
  background: linear-gradient(90deg, #0B1D3A, #1E4FA3);
  border-bottom: 4px solid #F5B800;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease; }

.site-header.shrink {
  padding: 6px 0;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(6px); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0; }

.site-logo img {
  height: 140px;
  transition: all 0.3s ease; }

/* =========================
DESKTOP MENU
========================= */
.desktop-nav {
  display: block;
  width: 100%; }

/*
.desktop-menu{
display:flex;
gap:30px;
list-style:none;
margin:0;
padding:0;
width: 100%;
}
*/
.desktop-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center; }

.desktop-menu li {
  position: relative; }

.desktop-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none; }

.desktop-menu a:hover {
  color: #FFD447; }

/* =========================
DESKTOP DROPDOWNS
========================= */
.desktop-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #0B1D3A;
  padding: 15px 0;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 2000; }

.desktop-menu .sub-menu li {
  padding: 8px 20px; }

.desktop-menu .sub-menu a {
  color: #fff;
  font-size: 15px; }

.desktop-menu li:hover > .sub-menu {
  display: block; }

/* =========================
HAMBURGER
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer; }

.hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
  display: block; }

/* =========================
MOBILE MENU
========================= */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0B1D3A;
  padding-top: 120px;
  z-index: 999; }
  .mobile-nav .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px; }

.mobile-menu {
  list-style: none;
  text-align: center;
  padding: 0;
  margin-top: 40px; }

.mobile-menu li {
  margin-bottom: 25px; }

.mobile-menu a {
  color: #fff;
  font-size: 26px;
  text-decoration: none; }

.mobile-menu a:hover {
  color: #FFD447; }

/* =========================
RESPONSIVE RULES
========================= */
@media (max-width: 900px) {
  .desktop-nav {
    display: none; }
  .hamburger {
    display: flex; }
  .mobile-nav.open {
    display: block; } }

/* SECOND LEVEL DROPDOWN */
.desktop-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%; }

.desktop-menu li {
  position: relative; }

.desktop-menu li:hover > .sub-menu {
  display: block; }

.desktop-menu .menu-item-has-children > a::after {
  content: " ▾";
  font-size: 12px; }

.desktop-menu .sub-menu .menu-item-has-children > a::after {
  content: " ▶";
  float: right; }

@media (max-width: 1200px) {
  .desktop-menu {
    gap: 18px; } }

/* -----------------------
FOOTER
----------------------- */
.site-footer {
  background: var(--dawgs-blue-dark);
  color: white;
  padding: 40px 0;
  margin-top: 60px;
  text-align: center; }

/* FOOTER */
.site-footer {
  background: #0B1D3A;
  color: white;
  padding: 60px 0 30px;
  margin-top: 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; }

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #FFD447; }

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

.footer-column li {
  margin-bottom: 10px; }

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 15px; }

.footer-column a:hover {
  color: #FFD447; }

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #aaa; }

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr; } }

/* -----------------------
CONTENT
----------------------- */
.content-area {
  padding: 40px 0; }

/* -----------------------
POST CARDS
----------------------- */
.post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: .3s; }

.post-card:hover {
  transform: translateY(-5px); }

.post-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.post-card-content {
  padding: 20px; }

.post-card img,
.trending-card img,
.food-card img,
.gem-card img {
  border-bottom: 3px solid var(--dawgs-gold); }

/* HERO SECTION */
.hero {
  position: relative;
  margin-bottom: 50px;
  background: linear-gradient(180deg, #0B1D3A, #1E4FA3);
  overflow: hidden; }

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/2026/03/Magic-Kingdom-castle-fireworks-night-sky-N1a-scaled.jpeg");
  background-size: cover;
  background-position: center;
  opacity: .18;
  pointer-events: none; }

.hero-slide {
  position: relative;
  z-index: 2; }

.hero-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center; }

.hero-content {
  color: white;
  max-width: 700px; }

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px; }

.hero-content h1 {
  font-size: 48px;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 215, 0, 0.3); }

.hero-content h1 a {
  color: white; }

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px; }

/* BUTTON */
.hero-button {
  background: var(--dawgs-gold);
  color: black;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700; }

.hero-button:hover {
  background: var(--dawgs-yellow); }

.hero-button {
  background: #F5B800;
  color: black;
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: .25s; }

.hero-button:hover {
  background: #FFD447;
  transform: translateY(-2px); }

/* TRENDING SECTION */
.trending {
  padding: 20px 0;
  background: #ffffff; }

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--dawgs-blue); }

.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; }

/* TRENDING CARDS */
.trending-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: .3s; }

.trending-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }

.trending-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.trending-content {
  padding: 18px; }

.trending-content h3 {
  font-size: 18px;
  line-height: 1.4; }

@media (max-width: 900px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 500px) {
  .trending-grid {
    grid-template-columns: 1fr; } }

/* PARK EXPLORER */
.park-explorer {
  padding: 20px 0;
  background: #f6f8fb; }

.park-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; }

.park-tile {
  display: block;
  border-radius: 16px;
  padding: 60px 40px;
  color: white;
  text-align: center;
  font-weight: 700;
  transition: .3s;
  position: relative;
  overflow: hidden; }

.park-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }

.park-content {
  position: relative;
  z-index: 2; }

.park-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px; }

.park-tile h3 {
  font-size: 18px; }

/* PARK COLORS */
.magic-kingdom {
  background: linear-gradient(135deg, var(--dawgs-blue-dark), var(--dawgs-blue)); }

.epcot {
  background: linear-gradient(135deg, var(--dawgs-silver), #5A8BFF); }

.studios {
  background: linear-gradient(135deg, var(--dawgs-red-dark), var(--dawgs-red)); }

.animal-kingdom {
  background: linear-gradient(135deg, #2E7D32, #66BB6A); }

@media (max-width: 800px) {
  .park-grid {
    grid-template-columns: 1fr; } }

/* DISNEY FOOD SECTION */
.disney-food {
  padding: 30px 0;
  background: #FFF8E1; }

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

/* FOOD CARD */
.food-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: .3s; }

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }

.food-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.food-content {
  padding: 20px; }

.food-content h3 {
  font-size: 20px;
  margin-bottom: 10px; }

.food-content p {
  font-size: 15px; }

@media (max-width: 900px) {
  .food-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .food-grid {
    grid-template-columns: 1fr; } }

/* RECIPE PAGE */
.recipe-page {
  padding: 20px 0; }

.recipe-title {
  font-size: 42px;
  margin-bottom: 30px; }

.recipe-hero img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  margin-bottom: 40px; }

/* RECIPE LAYOUT */
.recipe-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px; }

.recipe-main h2 {
  margin-top: 30px; }

.recipe-sidebar {
  background: #FFF8E1;
  padding: 25px;
  border-radius: 12px; }

.recipe-sidebar h2 {
  margin-top: 0; }

@media (max-width: 900px) {
  .recipe-layout {
    grid-template-columns: 1fr; } }

/* HIDDEN GEMS */
.hidden-gems {
  padding: 20px 0;
  background: #f3f6ff; }

.gems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

.gem-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: .3s; }

.gem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }

.gem-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.gem-content {
  padding: 20px; }

.gem-content h3 {
  font-size: 20px;
  margin-bottom: 10px; }

@media (max-width: 900px) {
  .gems-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .gems-grid {
    grid-template-columns: 1fr; } }

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

/* enforce 16:9 cards */
.trending-image img,
.food-image img,
.gem-image img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%; }

/* hero image */
.hero-image img {
  width: 100%;
  height: 65vh;
  object-fit: cover; }

/* DISNEY HISTORY SECTION */
.disney-history {
  padding: 20px 0;
  background: #f6f8fb; }

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

.history-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: .3s; }

.history-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }

.history-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.history-content {
  padding: 20px; }

.history-content h3 {
  font-size: 20px;
  margin-bottom: 10px; }

@media (max-width: 900px) {
  .history-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .history-grid {
    grid-template-columns: 1fr; } }

/* =========================
SINGLE POST PAGE
========================= */
.single-page {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px; }
  .single-page hr {
    display: none; }

/* TITLE */
.post-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 10px; }

/* META */
.post-meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 25px; }

/* FEATURE IMAGE */
.post-hero img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px; }

/* ARTICLE CONTENT */
.post-content {
  font-size: 18px;
  line-height: 1.7; }

/* HEADINGS */
.post-content h2 {
  margin-top: 40px;
  font-size: 28px; }

.post-content h3 {
  margin-top: 30px;
  font-size: 22px; }

/* PARAGRAPHS */
.post-content p {
  margin-bottom: 20px; }

/* LINKS */
.post-content a {
  color: var(--dawgs-blue);
  font-weight: 600; }

.post-content a:hover {
  color: var(--dawgs-gold); }

/* CATEGORY FOOTER */
.post-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee; }

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; }

.post-content ul {
  margin: 20px 0;
  padding-left: 20px; }

.post-content li {
  margin-bottom: 10px; }

/* =========================
CATEGORY PAGE
========================= */
.category-page {
  padding: 60px 20px; }

/* HEADER */
.category-header {
  margin-bottom: 50px; }

.category-title {
  font-size: 40px;
  margin-bottom: 10px; }

.category-description {
  font-size: 18px;
  color: #666; }

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

/* CARDS */
.category-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: .3s; }

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }

/* IMAGE */
.category-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

/* CONTENT */
.category-content {
  padding: 20px; }
  .category-content p {
    color: #666; }

.category-content h2 {
  font-size: 20px;
  margin-bottom: 10px; }

@media (max-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr; } }

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

.post-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px; }

.post-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: .3px; }

/* ATTRACTIONS SECTION */
.attractions-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0B1D3A, #1E4FA3);
  color: white; }

.attractions-section .section-title {
  color: white;
  margin-bottom: 35px; }

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px; }

.attraction-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: .3s; }

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); }

.attraction-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover; }

.attraction-title {
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0B1D3A; }

@media (max-width: 1200px) {
  .attractions-grid {
    grid-template-columns: repeat(5, 1fr); } }

@media (max-width: 900px) {
  .attractions-grid {
    grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 600px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr); } }

/* RELATED POSTS */
.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee; }

.related-posts h2 {
  margin-bottom: 25px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px; }

.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: .3s; }

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }

.related-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

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

@media (max-width: 800px) {
  .related-grid {
    grid-template-columns: 1fr; } }

/* MORE RECIPES */
.more-recipes {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid #eee; }

.more-recipes h2 {
  margin-bottom: 25px; }

/* GRID */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; }

.recipe-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: .3s; }

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }

.recipe-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

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

@media (max-width: 900px) {
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) {
  .recipe-grid {
    grid-template-columns: 1fr; } }

/*# sourceMappingURL=style.map */