/*
Theme Name: Easy Days Travel
Theme URI: https://easydaystravel.com
Author: Easy Days Travel
Author URI: https://easydaystravel.com
Description: Custom classic WordPress theme for Easy Days Travel, a boutique cruise, family, and Disney travel advisory affiliated with Boardwalk Travel Agency. Built from a static mockup — no page builder or premium plugin required.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: easy-days-travel
Tags: blog, e-commerce, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* -------------------------------------------------------------
   1. CSS Custom Properties
------------------------------------------------------------- */
:root {
	--ink: #1f2933;
	--muted: #5b6673;
	--blue: #1d7a8c;
	--blue-dark: #155e6c;
	--sand: #f7a94d;
	--bg: #ffffff;
	--bg-2: #f5f7f8;
	--line: #e5e9ec;
	--focus: #0b4a56;
}

/* -------------------------------------------------------------
   2. Reset & Base
------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	overflow-x: hidden;
}

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

h1, h2, h3, h4, .heading {
	font-family: 'Poppins', 'Inter', sans-serif;
	font-weight: 600;
	line-height: 1.25;
}

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* -------------------------------------------------------------
   3. Accessibility helpers
------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 4px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 6px;
	line-height: normal;
	padding: 14px 20px;
	text-decoration: none;
	top: 6px;
	width: auto;
	z-index: 100000;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 2px;
	border-radius: 4px;
}

/* -------------------------------------------------------------
   4. Buttons & shared elements
------------------------------------------------------------- */
.btn {
	background: var(--blue);
	color: #fff;
	padding: 13px 26px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	box-shadow: 0 6px 16px rgba(29, 122, 140, 0.25);
}

.btn:hover,
.btn:focus-visible {
	background: var(--blue-dark);
	color: #fff;
}

.btn.outline {
	background: transparent;
	color: var(--blue);
	border: 1.5px solid var(--blue);
	box-shadow: none;
}

.btn.outline:hover,
.btn.outline:focus-visible {
	background: var(--blue);
	color: #fff;
}

.eyebrow {
	color: var(--sand);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}

.placeholder-block {
	background: linear-gradient(135deg, #7fc8d6, #1d7a8c 55%, #f7a94d);
	display: flex;
	align-items: flex-end;
	padding: 14px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 11px;
	font-weight: 500;
}

/* -------------------------------------------------------------
   5. Topbar
------------------------------------------------------------- */
.topbar {
	background: var(--ink);
	color: #cfd8dd;
	font-size: 12.5px;
}

.topbar .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 6px;
	padding: 8px 24px;
}

.topbar a {
	color: #cfd8dd;
	margin-left: 16px;
}

.topbar a:hover,
.topbar a:focus-visible {
	color: #fff;
}

/* -------------------------------------------------------------
   6. Header / Nav
------------------------------------------------------------- */
.site-header {
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo,
.site-logo-link {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 21px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
}

.logo .mark {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--blue), var(--sand));
	flex-shrink: 0;
}

.custom-logo {
	max-height: 40px;
	width: auto;
}

.menu-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 1.5px solid var(--line);
	border-radius: 6px;
	padding: 9px 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}

.menu-toggle .bar {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	position: relative;
}

.menu-toggle .bar::before,
.menu-toggle .bar::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--ink);
}

.menu-toggle .bar::before { top: -6px; }
.menu-toggle .bar::after { top: 6px; }

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 14.5px;
	font-weight: 500;
}

.primary-navigation .nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.primary-navigation a {
	display: inline-block;
	padding: 6px 0;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
	color: var(--blue);
}

/* -------------------------------------------------------------
   7. Hero
------------------------------------------------------------- */
.hero {
	background: linear-gradient(180deg, var(--bg-2), #fff);
	padding: 50px 0 0;
}

.hero-grid {
	display: grid;
	gap: 40px;
	align-items: center;
	padding-bottom: 50px;
}

.hero h1 {
	font-size: 32px;
	line-height: 1.18;
	margin-bottom: 18px;
}

.hero p.hero-subhead {
	color: var(--muted);
	font-size: 16.5px;
	max-width: 460px;
	margin-bottom: 28px;
}

.hero .cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-photo {
	aspect-ratio: 5 / 4;
	border-radius: 16px;
	box-shadow: 0 24px 50px rgba(29, 122, 140, 0.22);
	overflow: hidden;
}

.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.search-bar {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 20px 40px rgba(20, 30, 40, 0.08);
	padding: 20px 26px;
	display: flex;
	gap: 18px;
	align-items: center;
	margin-bottom: 0;
	position: relative;
	border: 1px solid var(--line);
	flex-wrap: wrap;
}

.search-bar .field {
	flex: 1;
	min-width: 150px;
}

.search-bar label {
	display: block;
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.search-bar .val {
	font-size: 14.5px;
	font-weight: 500;
}

/* -------------------------------------------------------------
   8. Features / Why book with us
------------------------------------------------------------- */
.features {
	padding: 70px 0;
	background: var(--bg-2);
}

.features-head {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 40px;
}

.features-head h2 {
	font-size: 26px;
	margin-bottom: 10px;
}

.features-head p {
	color: var(--muted);
	font-size: 15px;
}

.feature-grid {
	display: grid;
	gap: 26px;
}

.feature-card {
	background: #fff;
	border-radius: 14px;
	padding: 30px 26px;
	border: 1px solid var(--line);
	box-shadow: 0 8px 24px rgba(20, 30, 40, 0.04);
}

.feature-card .ico {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: rgba(29, 122, 140, 0.1);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	margin-bottom: 16px;
}

.feature-card h3 {
	font-size: 17px;
	margin-bottom: 8px;
}

.feature-card p {
	font-size: 14px;
	color: var(--muted);
}

/* -------------------------------------------------------------
   9. Trips
------------------------------------------------------------- */
.trips {
	padding: 70px 0;
}

.trips-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 34px;
}

.trips-head h2 {
	font-size: 24px;
}

.trip-grid {
	display: grid;
	gap: 26px;
}

.trip-card {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 8px 20px rgba(20, 30, 40, 0.05);
}

.trip-card .photo {
	aspect-ratio: 16 / 10;
}

.trip-card .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trip-card .body {
	padding: 20px;
}

.trip-card .date-pill {
	display: inline-block;
	background: rgba(247, 169, 77, 0.15);
	color: #a8631f;
	font-size: 11.5px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.trip-card h3 {
	font-size: 17px;
	margin-bottom: 8px;
}

.trip-card h3 a {
	color: var(--ink);
}

.trip-card h3 a:hover,
.trip-card h3 a:focus-visible {
	color: var(--blue);
}

.trip-card p {
	font-size: 13.5px;
	color: var(--muted);
	margin-bottom: 14px;
}

.trip-card .link {
	color: var(--blue);
	font-size: 13.5px;
	font-weight: 600;
}

.no-trips {
	color: var(--muted);
	font-size: 14.5px;
}

/* -------------------------------------------------------------
   10. Partners / credentials strip
------------------------------------------------------------- */
.partners {
	padding: 40px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.partners .wrap {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	opacity: 0.85;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--muted);
}

.partners img {
	max-height: 32px;
	width: auto;
}

/* -------------------------------------------------------------
   11. Testimonial
------------------------------------------------------------- */
.testimonial {
	background: var(--ink);
	color: #fff;
	padding: 60px 0;
	text-align: center;
}

.testimonial blockquote {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	max-width: 640px;
	margin: 0 auto 18px;
	font-weight: 500;
}

.testimonial cite {
	font-size: 13px;
	color: #9fb0ba;
	font-style: normal;
}

.testimonial .placeholder-note {
	display: block;
	font-size: 11px;
	color: #7f8f99;
	margin-top: 14px;
}

/* -------------------------------------------------------------
   12. CTA band (block pattern)
------------------------------------------------------------- */
.cta-band {
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: #fff;
	padding: 60px 0;
	text-align: center;
	border-radius: 16px;
}

.cta-band h2 {
	font-size: 26px;
	margin-bottom: 14px;
	color: #fff;
}

.cta-band p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 480px;
	margin: 0 auto 24px;
}

.cta-band .btn {
	background: #fff;
	color: var(--blue-dark);
	box-shadow: none;
}

.cta-band .btn:hover,
.cta-band .btn:focus-visible {
	background: var(--bg-2);
}

/* -------------------------------------------------------------
   13. Footer widgets
------------------------------------------------------------- */
.site-footer {
	background: var(--bg-2);
	padding: 60px 0 24px;
}

.foot-grid {
	display: grid;
	gap: 34px;
	padding-bottom: 40px;
}

.foot-grid h4 {
	font-size: 14px;
	margin-bottom: 16px;
}

.foot-grid p,
.foot-grid a {
	display: block;
	font-size: 13.5px;
	color: var(--muted);
	margin-bottom: 9px;
}

.foot-grid a:hover,
.foot-grid a:focus-visible {
	color: var(--blue);
}

.foot-grid .widget ul {
	margin: 0;
}

.foot-grid .widget li {
	margin-bottom: 9px;
}

.foot-bottom {
	border-top: 1px solid var(--line);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--muted);
	flex-wrap: wrap;
	gap: 10px;
}

/* -------------------------------------------------------------
   14. Generic page / single / archive / 404 / search content
------------------------------------------------------------- */
.page-content-wrap {
	padding: 60px 0 90px;
}

.page-content-wrap .page-title,
.page-content-wrap .entry-title {
	font-size: 30px;
	margin-bottom: 24px;
}

.page-content-wrap article + article {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid var(--line);
}

.entry-meta {
	color: var(--muted);
	font-size: 13px;
	margin-bottom: 18px;
}

.entry-content > * + * {
	margin-top: 1.2em;
}

.entry-content h2 { font-size: 24px; }
.entry-content h3 { font-size: 19px; }

.entry-content ul,
.entry-content ol {
	list-style: revert;
	padding-left: 1.4em;
}

.archive-grid {
	display: grid;
	gap: 26px;
}

.search-form-wrap {
	margin: 30px 0 50px;
}

.search-form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	max-width: 480px;
}

.search-form label {
	flex: 1;
	min-width: 200px;
}

.search-form input[type="search"] {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--line);
	border-radius: 6px;
	font-size: 14.5px;
	font-family: inherit;
}

.search-form input[type="submit"] {
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0 22px;
	font-weight: 600;
	font-size: 14px;
}

.search-form input[type="submit"]:hover {
	background: var(--blue-dark);
}

.error-404 {
	text-align: center;
	padding: 90px 0;
}

.error-404 h1 {
	font-size: 60px;
	color: var(--blue);
	margin-bottom: 14px;
}

.error-404 p {
	color: var(--muted);
	margin-bottom: 26px;
}

.pagination {
	display: flex;
	gap: 10px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	padding: 8px 14px;
	border: 1.5px solid var(--line);
	border-radius: 6px;
	font-size: 13.5px;
}

.pagination .current {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
}

/* -------------------------------------------------------------
   15. Block editor patterns (rendered via the_content)
------------------------------------------------------------- */
.entry-content .wp-block-group.edt-pattern-hero {
	background: linear-gradient(180deg, var(--bg-2), #fff);
	padding: 50px 24px;
	border-radius: 16px;
}

.entry-content .wp-block-group.edt-pattern-features .wp-block-column {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 26px;
}

.entry-content .wp-block-group.edt-pattern-credentials {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 30px 0;
}

.entry-content .wp-block-group.edt-pattern-testimonial {
	background: var(--ink);
	color: #fff;
	padding: 50px 24px;
	border-radius: 16px;
	text-align: center;
}

.entry-content .wp-block-group.edt-pattern-testimonial p,
.entry-content .wp-block-group.edt-pattern-testimonial h2 {
	color: #fff;
}

/* -------------------------------------------------------------
   16. Mobile-first breakpoints
   Base rules above are single-column / mobile.
   Multi-column layout applies at 900px and up, matching the mockup.
------------------------------------------------------------- */
@media (max-width: 899px) {
	.primary-navigation .nav-menu {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 16px 0 0;
	}

	.primary-navigation.is-open .nav-menu {
		display: flex;
	}

	.primary-navigation {
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.menu-toggle {
		display: flex;
	}
}

@media (min-width: 900px) {
	.menu-toggle {
		display: none;
	}

	.primary-navigation .nav-menu {
		display: flex !important;
	}

	.hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
		padding-bottom: 60px;
	}

	.hero {
		padding: 70px 0 0;
	}

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

	.search-bar {
		margin-bottom: -34px;
	}

	.features {
		padding: 110px 0 70px;
	}

	.features-head h2 {
		font-size: 30px;
	}

	.feature-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.trips {
		padding: 90px 0;
	}

	.trips-head h2 {
		font-size: 28px;
	}

	.trip-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.testimonial {
		padding: 80px 0;
	}

	.testimonial blockquote {
		font-size: 22px;
	}

	.site-footer {
		padding: 70px 0 24px;
	}

	.foot-grid {
		grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	}

	.archive-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.entry-content .wp-block-group.edt-pattern-features .wp-block-columns {
		display: flex;
	}
}

@media (min-width: 600px) and (max-width: 899px) {
	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}

	.archive-grid {
		grid-template-columns: 1fr 1fr;
	}
}
