/* =========================================================
   VYTAUTAS EVENT – site styles
   Values mirror the original Hostinger Builder site 1:1.
   ========================================================= */

:root {
	--ve-primary: #1c2447;
	--ve-primary-alt: #1e264a;
	--ve-primary-light: #283555;
	--ve-page-bg: #d5d6f2;
	--ve-lavender: #d9daf3;
	--ve-lavender-soft: #eef0f8;
	--ve-white: #ffffff;
	--ve-text: rgb(28, 36, 71);
	--ve-border: rgba(28, 36, 71, 0.10);
	--ve-font: "Poppins", sans-serif;
	--ve-font-serif: "Lora", serif;
	--ve-container: 1200px;
}

/* ---------- base ---------- */

body.ve-site {
	margin: 0;
	background: var(--ve-page-bg) !important;
	color: var(--ve-text);
	font-family: var(--ve-font);
	font-size: 18px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body.ve-site *,
body.ve-site *::before,
body.ve-site *::after {
	box-sizing: border-box;
}

body.ve-site h1,
body.ve-site h2,
body.ve-site h3,
body.ve-site h4 {
	font-family: var(--ve-font);
	color: var(--ve-primary);
	margin: 0;
}

body.ve-site a {
	color: inherit;
}

.ve-skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--ve-primary);
	color: #fff;
	clip: auto;
	width: auto;
	height: auto;
}

.ve-main {
	display: block;
}

/* Elementor containers hosting our widgets: no extra spacing */
.ve-site .e-con.ve-full,
.ve-site .elementor-widget[class*="elementor-widget-ve-"] {
	margin: 0;
	padding: 0;
	max-width: none;
}

/* ---------- buttons ---------- */

.ve-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 20px;
	border: 1px solid var(--ve-primary);
	border-radius: 0;
	background: var(--ve-primary);
	color: #fff !important;
	font-family: var(--ve-font);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none !important;
	text-align: center;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ve-btn:hover {
	background: #fff;
	color: var(--ve-primary) !important;
	transform: translateY(-2px);
	box-shadow: 0 7px 18px rgba(28, 36, 71, 0.12);
}

.ve-btn--light {
	background: #fff;
	border-color: #fff;
	color: var(--ve-primary) !important;
}

.ve-btn--light:hover {
	background: transparent;
	color: #fff !important;
}

.ve-btn--cta {
	min-width: 130px;
}

/* ---------- section scaffolding ---------- */

.ve-section {
	width: 100%;
	padding: 52px 24px;
}

.ve-section__inner {
	width: 100%;
	max-width: var(--ve-container);
	margin: 0 auto;
}

.ve-section__title {
	margin: 0 0 14px;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.5px;
	text-align: center;
}

.ve-intro {
	max-width: 760px;
	margin: 0 auto 32px;
	text-align: center;
	font-size: 18px;
	line-height: 27px;
}

/* ---------- hero ---------- */

.ve-hero {
	padding: 80px 24px 120px;
}

.ve-hero__inner {
	max-width: var(--ve-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 496px 392px;
	grid-template-rows: auto auto;
	column-gap: 32px;
	justify-content: center;
}

.ve-hero__media {
	grid-row: 1 / 3;
}

.ve-site .ve-hero__img {
	display: block;
	width: 496px;
	max-width: 100%;
	height: 743px;
	object-fit: cover;
}

.ve-hero__text {
	padding-top: 26px;
}

.ve-site .ve-hero__greeting {
	margin: 0;
	font-family: var(--ve-font);
	font-size: 64px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--ve-primary);
	white-space: nowrap;
}

.ve-site .ve-hero__title {
	margin: 12px 0 16px;
	font-family: var(--ve-font-serif);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--ve-primary-alt);
	width: 470px; /* original text box is wider than the button column */
	max-width: none;
}

.ve-hero__lead {
	margin: 0 0 40px;
	font-size: 18px;
	line-height: 1.5;
}

.ve-hero__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-self: start;
}

.ve-btn--hero {
	width: 100%;
	padding: 14px 32px;
	min-height: 0;
	border: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: var(--ve-primary);
}

.ve-btn--hero:hover {
	background: rgb(70, 70, 70);
	color: #fff !important;
	transform: none;
	box-shadow: none;
}

/* ---------- pill button (builder "primary" button style) ---------- */

.ve-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 1000px;
	background: #091a5a;
	color: #fff !important;
	font-family: var(--ve-font-serif);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: background-color .2s ease;
}

.ve-pill:hover {
	background: rgb(70, 70, 70);
}

/* ---------- about ---------- */

.ve-about {
	padding: 80px 24px 96px;
}

.ve-about__inner {
	max-width: var(--ve-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 575px 459px;
	column-gap: 146px;
	justify-content: start;
}

.ve-about__text {
	grid-column: 1;
	grid-row: 1;
}

.ve-about__media {
	grid-column: 2;
	grid-row: 1 / 3;
	padding-top: 175px;
}

.ve-about__closing {
	grid-column: 1;
	grid-row: 2;
	margin-top: 40px;
}

.ve-site .ve-about__img {
	display: block;
	width: 459px;
	max-width: 100%;
	height: 689px;
	object-fit: cover;
	border-radius: 24px;
}

.ve-site .ve-about__title {
	margin: 0 0 12px;
	font-family: var(--ve-font);
	font-size: 64px;
	font-weight: 400;
	line-height: 1.25;
}

.ve-site .ve-about__subtitle {
	margin: 0 0 18px;
	font-family: var(--ve-font-serif);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
}

.ve-about__content p {
	margin: 0 0 32px;
	font-size: 18px;
	line-height: 1.5;
}

.ve-about__content p:last-child {
	margin-bottom: 0;
}

.ve-site .ve-about__closing-title {
	max-width: 640px;
	margin: 0 0 16px;
	font-family: var(--ve-font);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
}

.ve-about__serif {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
}

.ve-about__buttons {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 56px;
}

.ve-about__buttons .ve-btn {
	min-width: 220px;
}

/* ---------- card grids (services / projects / blog) ---------- */

.ve-grid {
	display: grid;
	gap: 20px;
}

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

.ve-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 225px;
	padding: 25px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--ve-border);
	border-radius: 2px;
	box-shadow: 0 5px 20px rgba(28, 36, 71, 0.045);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ve-cards--projects .ve-card {
	background: #fff;
	padding: 24px;
	box-shadow: 0 5px 18px rgba(28, 36, 71, 0.04);
}

.ve-card:hover {
	transform: translateY(-4px);
	border-color: rgba(28, 36, 71, 0.18);
	box-shadow: 0 12px 30px rgba(28, 36, 71, 0.09);
}

.ve-card__title {
	margin: 0 0 9px;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.3;
}

.ve-card__title a {
	text-decoration: none;
}

.ve-card__text {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 23px;
}

.ve-cards--projects .ve-card__text {
	margin-bottom: 20px;
}

.ve-card .ve-btn {
	margin-top: auto;
}

.ve-card__thumb {
	display: block;
	width: 100%;
	margin: -25px -25px 18px;
	width: calc(100% + 50px);
}

.ve-card__thumb img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.ve-cards__more {
	margin-top: 28px;
	text-align: center;
}

/* ---------- experience (dark band) ---------- */

.ve-experience {
	width: 100%;
	padding: 0 24px;
}

.ve-experience__inner {
	max-width: var(--ve-container);
	margin: 0 auto;
	padding: 55px 34px;
	background: var(--ve-primary);
}

.ve-site .ve-experience__title {
	max-width: 800px;
	margin: 0 0 14px;
	color: #fff;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.ve-experience__text {
	max-width: 820px;
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.90);
	font-size: 17px;
	line-height: 27px;
}

/* ---------- process ---------- */

.ve-process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 8px;
}

.ve-step {
	position: relative;
	min-height: 190px;
	padding: 23px 21px;
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid rgba(28, 36, 71, 0.07);
	border-radius: 2px;
	transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.ve-step:hover {
	background: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(28, 36, 71, 0.07);
}

.ve-step__number {
	display: block;
	margin-bottom: 12px;
	color: rgba(28, 36, 71, 0.30);
	font-size: 34px;
	font-weight: 600;
	line-height: 1;
}

.ve-step__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.ve-step__text {
	margin: 0;
	font-size: 14px;
	line-height: 22px;
}

/* ---------- testimonials ---------- */

.ve-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.ve-testimonial {
	margin: 0;
	padding: 25px 28px;
	background: #fff;
	border: 1px solid var(--ve-border);
	border-left: 3px solid var(--ve-primary);
	box-shadow: 0 5px 18px rgba(28, 36, 71, 0.04);
}

.ve-testimonial__quote {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 24px;
}

.ve-testimonial__author {
	display: block;
	color: var(--ve-primary);
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
}

/* ---------- CTA ---------- */

.ve-cta-wrap {
	padding: 0 24px;
}

.ve-cta {
	position: relative;
	overflow: hidden;
	max-width: var(--ve-container);
	margin: 20px auto 52px;
	padding: 58px 30px;
	text-align: center;
	background: linear-gradient(135deg, #ffffff 0%, #f7f7fc 48%, #d9daf3 100%);
	border: 1px solid rgba(28, 36, 71, 0.08);
	border-radius: 2px;
	box-shadow: 0 14px 35px rgba(28, 36, 71, 0.08);
}

.ve-cta::before,
.ve-cta::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.ve-cta::before {
	width: 300px;
	height: 300px;
	top: -190px;
	right: -90px;
	background: rgba(217, 218, 243, 0.65);
}

.ve-cta::after {
	width: 220px;
	height: 220px;
	bottom: -150px;
	left: -80px;
	background: rgba(28, 36, 71, 0.045);
}

.ve-cta__content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
}

.ve-cta__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.ve-cta__text {
	max-width: 650px;
	margin: 0 auto 25px;
	font-size: 18px;
	line-height: 27px;
}
