/*
 * Azores Landing Page — azores-page.css
 * Only loaded on the /azores/ page (page-azores.php template).
 * All selectors are prefixed with .ge-az- or #ge-azores-page to avoid
 * conflicts with the main theme stylesheet.
 */

/* ── Reset the theme's #content.wrap constraint for this page ── */
/* body.ge-azores-landing is added via body_class filter in functions.php */
body.ge-azores-landing #content.site-content {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}
.ge-azores-page {
	width: 100%;
}

/* ── Inner wrap (mirrors theme .wrap but scoped) ── */
.ge-az-wrap {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── Shared typography ── */
.ge-az-label {
	font-size: 11px; font-weight: 700; letter-spacing: .14em;
	text-transform: uppercase; color: #ff8d00;
	display: block; margin-bottom: 10px;
}
.ge-az-section-title {
	font-size: 34px; font-weight: 900; color: #111827; margin-bottom: 10px; line-height: 1.15;
}
.ge-az-section-title.ge-az-light { color: #fff; }
.ge-az-section-sub { font-size: 15px; color: #6b7280; }
.ge-az-section-sub.ge-az-light { color: #9ca3af; }
.ge-az-section-head { margin-bottom: 40px; }

/* ── Shared image color fallbacks (used when no WP thumbnail is set) ── */
.ge-az-img-blue   { background: linear-gradient(145deg, #0f2a4a 0%, #1a5080 100%); }
.ge-az-img-brown  { background: linear-gradient(145deg, #3a2010 0%, #6a4020 100%); }
.ge-az-img-slate  { background: linear-gradient(145deg, #181e2a 0%, #2a3548 100%); }
.ge-az-img-warm   { background: linear-gradient(145deg, #3a2800 0%, #7a5500 100%); }
.ge-az-img-green  { background: linear-gradient(145deg, #1a4a2a 0%, #2d7a4f 100%); }
.ge-az-img-teal   { background: linear-gradient(145deg, #0d3535 0%, #196060 100%); }
.ge-az-img-purple { background: linear-gradient(145deg, #28153a 0%, #4a2a6a 100%); }
.ge-az-img-sage   { background: linear-gradient(145deg, #1e3020 0%, #3a5a40 100%); }
.ge-az-img-sky    { background: linear-gradient(145deg, #0c2040 0%, #1a406a 100%); }


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.ge-az-hero {
	background: #111827;
	padding: 88px 0 76px;
	position: relative; overflow: hidden;
}
.ge-az-hero::before {
	content: '';
	position: absolute; inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.052) 1.5px, transparent 1.5px);
	background-size: 34px 34px;
	animation: ge-az-bgdrift 90s linear infinite;
	pointer-events: none;
}
@keyframes ge-az-bgdrift {
	from { background-position: 0 0; }
	to   { background-position: 340px 340px; }
}

.ge-az-hero-inner {
	display: grid; grid-template-columns: 1.1fr 0.9fr;
	gap: 64px; align-items: center;
	position: relative; z-index: 1;
}

.ge-az-badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,141,0,0.13); border: 1px solid rgba(255,141,0,0.28);
	color: #ff8d00; font-size: 11px; font-weight: 700;
	letter-spacing: .1em; text-transform: uppercase;
	padding: 6px 14px; border-radius: 20px; margin-bottom: 22px;
}

.ge-az-hero h1 {
	font-size: 52px; font-weight: 900; color: #fff;
	line-height: 1.06; margin-bottom: 18px;
}
.ge-az-hero h1 span { color: #ff8d00; }

.ge-az-hero-sub {
	font-size: 17px; color: #9ca3af; line-height: 1.75;
	margin-bottom: 34px; max-width: 440px;
}

.ge-az-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.ge-az-btn-primary {
	display: inline-block; background: #ff8d00; color: #fff !important;
	font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 8px;
	text-decoration: none;
}
.ge-az-btn-outline {
	display: inline-block; background: transparent;
	border: 2px solid rgba(255,255,255,0.25); color: #fff !important;
	font-weight: 600; font-size: 14px; padding: 11px 24px; border-radius: 8px;
	text-decoration: none;
}

.ge-az-hero-stats {
	display: flex; gap: 28px; flex-wrap: wrap;
	padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
}
.ge-az-stat strong { display: block; font-size: 24px; font-weight: 900; color: #ff8d00; }
.ge-az-stat span { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: .08em; }

/* SVG slot */
.ge-az-hero-svg {
	border-radius: 20px;
	display: flex; align-items: center; justify-content: center;
}
.ge-az-svg-placeholder {
	color: rgba(255,255,255,0.18); font-size: 13px;
	font-weight: 500; letter-spacing: .04em;
}
.ge-az-hero-svg img,
.ge-az-hero-svg svg {
	width: 100%; height: auto; display: block; border-radius: 20px;
}


/* ════════════════════════════════════════════════════════════
   LOGISTICS
════════════════════════════════════════════════════════════ */
.ge-az-logistics { padding: 76px 0; background: #f9fafb; }

.ge-az-logistics-cards {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 18px; margin-bottom: 24px;
}

.ge-az-logistic-card {
	background: #fff; border-radius: 14px; overflow: hidden;
	border: 1px solid #e5e7eb;
	transition: box-shadow .18s, transform .18s;
	display: flex; flex-direction: column;
}
.ge-az-logistic-card:hover {
	box-shadow: 0 14px 40px rgba(0,0,0,0.11);
	transform: translateY(-4px);
}
.ge-az-logistic-img {
	height: 172px; width: 100%;
	background-size: cover; background-position: center;
}
.ge-az-logistic-body {
	padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column;
}
.ge-az-logistic-body h3 {
	font-size: 19px; font-weight: 800; color: #111827; margin-bottom: 8px;
}
.ge-az-logistic-body p {
	font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 18px; flex: 1;
}
.ge-az-conv-badge {
	display: inline-flex; align-items: center; gap: 5px;
	background: rgba(255,141,0,0.1); color: #ff8d00;
	font-size: 10px; font-weight: 700; letter-spacing: .08em;
	text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
}
.ge-az-btn-convert {
	display: block; text-align: center;
	background: #ff8d00; color: #fff !important;
	font-weight: 700; font-size: 13px; padding: 11px 20px; border-radius: 8px;
	transition: background .15s; text-decoration: none;
}
.ge-az-btn-convert:hover { background: #e07d00; }
.ge-az-btn-convert-sec {
	display: block; text-align: center;
	background: transparent; color: #ff8d00 !important;
	border: 1.5px solid #ff8d00; font-weight: 700; font-size: 13px;
	padding: 10px 20px; border-radius: 8px;
	transition: background .15s, color .15s; text-decoration: none; margin-top: 8px;
}
.ge-az-btn-convert-sec:hover { background: #ff8d00; color: #fff !important; }

/* Thumbnail cards */
.ge-az-thumb-cards {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.ge-az-thumb-card {
	display: flex; align-items: center; gap: 14px;
	background: #fff; border: 1px solid #e5e7eb;
	border-radius: 12px; padding: 12px 14px;
	transition: border-color .15s, box-shadow .15s; text-decoration: none;
}
.ge-az-thumb-card:hover {
	border-color: #ff8d00;
	box-shadow: 0 4px 16px rgba(255,141,0,0.08);
}
.ge-az-thumb-img {
	width: 72px; height: 72px; border-radius: 10px; flex-shrink: 0;
	background-size: cover; background-position: center;
	background-color: #e5e7eb; /* fallback */
}
.ge-az-thumb-text { min-width: 0; }
.ge-az-thumb-cat {
	font-size: 10px; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: #ff8d00; display: block; margin-bottom: 4px;
}
.ge-az-thumb-title {
	font-size: 14px; font-weight: 700; color: #111827; line-height: 1.35; display: block;
}


/* ════════════════════════════════════════════════════════════
   ISLAND GUIDES
════════════════════════════════════════════════════════════ */
.ge-az-islands { padding: 76px 0; background: #111827; }

/* "Which islands?" hero card */
.ge-az-which-card {
	border-radius: 16px; overflow: hidden; position: relative;
	display: block; margin-bottom: 18px;
	transition: transform .2s; text-decoration: none;
}
.ge-az-which-card:hover { transform: scale(1.005); }
.ge-az-which-img {
	height: 320px; width: 100%;
	background-size: cover; background-position: center;
}
.ge-az-which-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.1) 100%);
	display: flex; align-items: center; padding: 0 48px;
}
.ge-az-which-text {}
.ge-az-which-tag {
	display: inline-block; background: #ff8d00; color: #fff;
	font-size: 10px; font-weight: 700; text-transform: uppercase;
	letter-spacing: .1em; padding: 4px 11px; border-radius: 20px; margin-bottom: 14px;
}
.ge-az-which-text h2 {
	font-size: 34px; font-weight: 900; color: #fff;
	line-height: 1.1; margin-bottom: 10px; max-width: 480px;
}
.ge-az-which-text p {
	font-size: 15px; color: rgba(255,255,255,0.72);
	max-width: 420px; line-height: 1.6; margin-bottom: 20px;
}
.ge-az-which-btn {
	display: inline-block; background: #ff8d00; color: #fff;
	font-weight: 700; font-size: 14px; padding: 12px 24px; border-radius: 8px;
}

/* 3×3 island grid */
.ge-az-island-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.ge-az-island-card {
	border-radius: 13px; overflow: hidden;
	display: block; color: #fff; text-decoration: none;
	transition: transform .18s;
	background-size: cover; background-position: center;
}
.ge-az-island-card:hover { transform: translateY(-4px); }

/* Inner div maintains aspect ratio and provides a dark overlay */
.ge-az-island-card-inner {
	min-height: 210px;
	position: relative;
	background: rgba(0,0,0,0); /* overlay via ::after */
	display: flex; flex-direction: column; justify-content: flex-end;
}
/* Dark gradient fallback cover (shown when no bg-image is set) */
.ge-az-island-card:not([style]) .ge-az-island-card-inner {
	background: linear-gradient(145deg, #1a4a2a 0%, #2d7a4f 100%);
}
.ge-az-island-overlay {
	padding: 44px 18px 18px;
	background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
}
.ge-az-i-popular {
	display: inline-block; background: rgba(255,141,0,0.88);
	color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase;
	letter-spacing: .08em; padding: 3px 9px; border-radius: 20px; margin-bottom: 7px;
}
.ge-az-island-overlay h3 { font-size: 17px; font-weight: 800; margin-bottom: 3px; color: #fff; }
.ge-az-island-overlay p  { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.4; margin: 0; }
.ge-az-read-more {
	display: inline-flex; align-items: center; gap: 4px;
	color: #ff8d00; font-size: 12px; font-weight: 700; margin-top: 8px;
}


/* ════════════════════════════════════════════════════════════
   TOPIC GUIDES
════════════════════════════════════════════════════════════ */
.ge-az-topics { padding: 76px 0; background: #fff; }

.ge-az-topics-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 14px;
}
.ge-az-topic-card {
	border-radius: 13px; overflow: hidden;
	position: relative; display: block; color: #fff;
	transition: transform .18s; text-decoration: none;
	background-size: cover; background-position: center;
	background-color: #1a4a2a; /* fallback */
}
.ge-az-topic-card:hover { transform: translateY(-3px); }

/* Maintain height via a transparent inner div */
.ge-az-topic-card::before {
	content: ''; display: block; padding-top: 56.25%; /* 16:9 */
}
.ge-az-topic-large::before { padding-top: 0; min-height: 438px; }

.ge-az-topic-overlay {
	position: absolute; bottom: 0; left: 0; right: 0;
	padding: 52px 20px 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.ge-az-t-tag {
	display: inline-block; background: rgba(255,141,0,0.9);
	color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase;
	letter-spacing: .08em; padding: 3px 9px; border-radius: 20px; margin-bottom: 8px;
}
.ge-az-topic-overlay h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: #fff; }
.ge-az-topic-large .ge-az-topic-overlay h3 { font-size: 22px; }
.ge-az-topic-overlay p  { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.4; margin: 0; }


/* ════════════════════════════════════════════════════════════
   BLOG GRID
════════════════════════════════════════════════════════════ */
.ge-az-blog { padding: 76px 0; background: #f9fafb; }

.ge-az-blog-top {
	display: flex; align-items: flex-end;
	justify-content: space-between; gap: 20px; margin-bottom: 28px;
}
.ge-az-blog-top a { font-size: 14px; font-weight: 700; color: #ff8d00; text-decoration: none; }

.ge-az-blog-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px;
}
.ge-az-blog-card {
	background: #fff; border-radius: 12px; overflow: hidden;
	border: 1px solid #e5e7eb;
	transition: box-shadow .18s, transform .18s;
	display: block; text-decoration: none; color: inherit;
}
.ge-az-blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ge-az-blog-img {
	height: 152px; width: 100%;
	background-size: cover; background-position: center;
	background-color: #e5e7eb;
}
.ge-az-blog-body { padding: 15px 16px 18px; }
.ge-az-blog-cat {
	font-size: 10px; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: #ff8d00; display: block; margin-bottom: 5px;
}
.ge-az-blog-body h4 { font-size: 14px; font-weight: 700; color: #111827; line-height: 1.4; margin: 0; }
.ge-az-blog-meta { font-size: 12px; color: #9ca3af; margin-top: 6px; }

.ge-az-load-more { text-align: center; margin-top: 8px; }
.ge-az-load-more a {
	display: inline-block; background: #fff; border: 1.5px solid #e5e7eb;
	color: #374151; font-size: 14px; font-weight: 600;
	padding: 13px 32px; border-radius: 8px; text-decoration: none;
	transition: border-color .15s, color .15s;
}
.ge-az-load-more a:hover { border-color: #ff8d00; color: #ff8d00; }


/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.ge-az-faq { padding: 76px 0; background: #fff; border-top: 1px solid #f3f4f6; }
.ge-az-faq-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.ge-az-faq-inner .ge-az-section-title { margin-bottom: 36px; }
.ge-az-faq-item { border-bottom: 1px solid #e5e7eb; padding: 20px 0; }
.ge-az-faq-q {
	font-size: 16px; font-weight: 700; color: #111827;
	display: flex; justify-content: space-between; align-items: center;
	cursor: pointer; gap: 16px;
}
.ge-az-faq-q::after {
	content: '+'; color: #ff8d00; font-size: 22px; font-weight: 300; flex-shrink: 0;
}
.ge-az-faq-a {
	font-size: 14px; color: #6b7280; line-height: 1.8; padding-top: 12px;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 900px
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
	.ge-az-wrap { padding: 0 24px; }
	.ge-az-hero { padding: 64px 0 56px; }
	.ge-az-hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.ge-az-hero h1 { font-size: 40px; }
	.ge-az-hero-sub { max-width: 100%; }
	.ge-az-hero-svg { min-height: 280px; }
	.ge-az-logistics-cards { grid-template-columns: 1fr 1fr; }
	.ge-az-thumb-cards { grid-template-columns: 1fr 1fr; }
	.ge-az-topics-grid { grid-template-columns: 1fr 1fr; }
	.ge-az-topic-large { grid-column: span 2; }
	.ge-az-topic-large::before { min-height: 300px; }
	.ge-az-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 640px
════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
	.ge-az-wrap { padding: 0 16px; }
	.ge-az-section-title { font-size: 26px; }

	.ge-az-hero { padding: 48px 0 44px; }
	.ge-az-hero h1 { font-size: 32px; }
	.ge-az-hero-sub { font-size: 15px; }
	.ge-az-hero-btns { flex-direction: column; }
	.ge-az-btn-primary,
	.ge-az-btn-outline { text-align: center; }
	.ge-az-hero-stats { gap: 18px; }
	.ge-az-hero-svg { min-height: 200px; }

	.ge-az-logistics { padding: 52px 0; }
	.ge-az-logistics-cards { grid-template-columns: 1fr; }
	.ge-az-thumb-cards { grid-template-columns: 1fr; }

	.ge-az-islands { padding: 52px 0; }
	.ge-az-which-img { height: 220px; }
	.ge-az-which-overlay { padding: 0 22px; }
	.ge-az-which-text h2 { font-size: 22px; }
	.ge-az-which-text p { display: none; }
	.ge-az-island-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.ge-az-island-card-inner { min-height: 165px; }

	.ge-az-topics { padding: 52px 0; }
	.ge-az-topics-grid { grid-template-columns: 1fr; }
	.ge-az-topic-large { grid-column: span 1; }
	.ge-az-topic-large::before { min-height: 240px; }

	.ge-az-blog { padding: 52px 0; }
	.ge-az-blog-grid { grid-template-columns: 1fr 1fr; }
	.ge-az-blog-top { flex-direction: column; align-items: flex-start; gap: 8px; }

	.ge-az-faq { padding: 52px 0; }
	.ge-az-faq-inner { padding: 0 16px; }
	.ge-az-faq-q { font-size: 14px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile ≤ 400px
════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
	.ge-az-island-grid { grid-template-columns: 1fr; }
	.ge-az-blog-grid   { grid-template-columns: 1fr; }
}