/* Landing page styles - similar but distinct design */
.landing-bg {
	background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%) !important;
}
.landing-container {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
}
.landing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.landing-card {
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 8px 30px rgba(61, 89, 152, 0.10);
	padding: 18px 14px;
	min-height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	transition: transform .15s ease, box-shadow .15s ease;
}
.landing-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 34px rgba(61, 89, 152, 0.16);
}
.landing-card .landing-icon i {
	font-size: 36px;
	color: var(--primary, #f04c24);
}
.landing-card .landing-title {
	margin-top: 14px;
	font-weight: 800;
	font-size: 18px;
	color: var(--title, #3d5998);
}
.landing-card .landing-sub {
	margin-top: 4px;
	font-size: 12px;
	color: rgba(61, 89, 152, .75);
}
.landing-wide {
	grid-column: 1 / -1;
	min-height: 100px;
	flex-direction: row;
	gap: 12px;
}
.landing-wide .landing-title { margin: 0 0 0 6px; }

/* Social buttons */
.landing-socials {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-top: 28px;
}
.landing-socials .social-btn {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(0,0,0,.08);
	color: #fff;
	transition: transform .12s ease, box-shadow .12s ease;
}
.landing-socials .social-btn svg { width: 24px; height: 24px; display:block; }
.landing-socials .social-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0,0,0,.12);
}
.landing-socials .social-btn.youtube { background: #ff0000; }
.landing-socials .social-btn.instagram { background: #E1306C; }
.landing-socials .social-btn.tripadvisor { background: #34d39a; }
.landing-socials .social-btn.getyourguide { background: #f05a28; }

/* Dark mode tweaks */
.theme-dark .landing-card { background: #151515; box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.theme-dark .landing-card .landing-title { color: #e7e9ee; }
.theme-dark .landing-card .landing-sub { color: rgba(231,233,238,.7); }
.theme-dark .landing-bg { background: linear-gradient(180deg, #0f0f0f 0%, #101010 100%) !important; }

/* Landing header background */
.landing-header { 
	background: #f7f8fc !important; 
	box-shadow: none !important; 
	border: none !important;
}
.theme-dark .landing-header { 
	background: #0f0f0f !important; 
}

/* Landing logo */
.landing-logo { height: 36px; display:block; }


