:root {
	--primary-color: #007BFF;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Hero section */
.hero {
	background: url('images/header-bg-new.webp') center/cover no-repeat;
	height: 550px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .overlay {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 2rem;
	text-align: center;
	color: #fff;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.cta-button {
	background-color: var(--primary-color);
	color: #fff;
	padding: 0.75rem 1.5rem;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
}

/* Services section */
.services {
	padding: 4rem 1rem;
	background-color: #f9f9f9;
	text-align: center;
	border-top: 5px solid var(--primary-color);
}

.services h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.service-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.service-item {
	background-color: #fff;
	padding: 2rem;
	border-radius: 10px;
	width: 325px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-item img {
	width: 60px;
	margin-bottom: 1rem;
}

.service-item h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

/* Gallery section */
.gallery {
	padding: 4rem 2rem;
	text-align: center;
}

.gallery h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.gallery-grid img {
	width: 100%;
	border-radius: 10px;
}

/* Contact section */
.contact {
	padding: 4rem 2rem;
	background-color: #f9f9f9;
	border-top: 5px solid var(--primary-color);
}

.contact h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.contact-info {
	text-align: center;
	margin-bottom: 0rem;
	font-size: 17px;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
}

.contact-form input,
.contact-form textarea {
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
}

.contact-form button {
	padding: 0.75rem;
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
}

/* Footer */
footer {
	background-color: #333;
	color: #fff;
	padding: 2rem;
	text-align: center;
}

footer nav {
	margin-top: 1rem;
}

footer nav a {
	color: #fff;
	margin: 0 1rem;
	text-decoration: none;
}

/* Top Contact Bar */
.top-bar {
	background-color: #f4f4f4;
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 2rem;
	font-size: 0.9rem;
	color: #555;
}

.top-left a {
	color: #333;
	text-decoration: none;
	margin-right: 20px;
	font-size: 14px;
	display: inline-block;
}

.top-left a span {
	display: inline-flex;
	align-items: center;
	gap: 6px; /* space between icon and text */
	white-space: nowrap; /* keep icon & text on the same line */
	font-size: 16px;
}

.top-left a:hover {
	color: var(--primary-color);
}

.top-left i {
	margin-right: 0.4rem;
	color: var(--primary-color);
}

.top-right a {
	color: #333;
	margin-left: 1rem;
	font-size: 1rem;
	transition: color 0.3s;
}

@media (max-width: 576px) {
	.top-left {
		display: flex;
		flex-direction: column;
		gap: 6px;
	}
}

.top-right a:hover {
	color: var(--primary-color);
}

.top-left i {
	margin-right: 0.5rem;
	color: var(--primary-color);
}

/* Main Navigation */
.navbar {
	background-color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 2rem;
	border-bottom: 1px solid #eee;
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
	line-height: 0px;
}

.logo img {
	height: 100px;
}

.menu {
	list-style: none;
	display: flex;
	gap: 2rem;
}

.menu li a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.menu li a:hover {
	color: var(--primary-color);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

@media (max-width: 768px) {
	.menu {
		display: none;
		flex-direction: column;
		background-color: white;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
	}

	.menu.active {
		display: flex !important;
		padding: 0px 0px 15px 15px !important;
		gap: 1rem !important;
	}

	.menu-toggle {
		display: block;
		color: #333;
	}

	.navbar {
		position: relative;
		flex-wrap: wrap;
	}

	.logo {
		flex: 1;
	}
}

i.fas.fa-truck, i.fas.fa-dolly, i.fas.fa-box-open {
	font-size: 24px;
	color: var(--primary-color);
	margin-right: 8px;
}

.about-section {
	padding: 60px 20px;
	background-color: #f4f4f4; /* lighter gray for contrast */
	color: #333;
	text-align: center;
	font-family: Arial, sans-serif;
	border-top: 5px solid var(--primary-color); /* accent border on top */
	/*border-bottom: 4px solid var(--primary-color);*/ /* accent border at bottom */
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
}

.about-section .container {
	max-width: 1100px;
	margin: 0 auto;
}

.about-section h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.about-section p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 15px;
}

.gallery-section {
	padding: 60px 20px;
	background-color: #fff;
	text-align: center;
	border-top: 5px solid var(--primary-color);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* exactly 4 columns */
	gap: 20px;
	margin-top: 30px;
}

.gallery-grid img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.gallery-grid img:hover {
	transform: scale(1.03);
}

@media (max-width: 1400px) {
	.hero {
		background: url('images/header-bg-new.webp') center/cover no-repeat;
		height: 450px;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hero {
		background: url('images/header-bg-new.webp') center/cover no-repeat;
		height: 200px;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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


/* Optional: darken overlay a bit more */
.lb-overlay {
	background: rgba(0, 0, 0, 0.9) !important;
}

/* Optional: style caption */
.lb-caption {
	font-size: 1rem;
	font-family: Arial, sans-serif;
	color: #fff;
}

#form-response {
	text-align: center;
	padding-top: 10px;
}

.white-bg {
	background-color: white !important;
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 2.7rem;
	}
}

@media (min-width: 768px) {
  .about-section, .gallery-section, #services, #contact {
    scroll-margin-top: 119px; /* Adjust to your desktop sticky header height */
  }
}

.about-section h2, .gallery-section h2, #services h2, #contact h2 {
  color: var(--primary-color) !important;
}

.hero-banner {
	display: block; /* για να λειτουργεί σαν κουτί */
	background-color: var(--primary-color);
	color: #fff;
	text-align: center;
	padding: 1.5rem 2rem;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 0px;
	margin: 20px auto;
	width: 100%;   /* να έχει πλάτος όσο το κείμενο */
	max-width: 100%;       /* ασφαλές όριο */
	text-decoration: none; /* να μη φαίνεται σαν link */
	transition: background-color 0.3s, transform 0.2s;
	font-size:40px;
}

.hero-banner:hover {
	background-color: #0056b3; /* πιο σκούρο μπλε στο hover */
	transform: scale(1.02);
}

.section-banner {
	background-color: var(--primary-color); /* το μπλε του site */
	color: #fff;
	text-align: center;
	padding: 1.5rem 2rem;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 0px;
	margin: 20px auto;
	width: 100%;   /* να έχει πλάτος όσο το κείμενο */
	max-width: 100%;       /* ασφαλές όριο */
}

@media (max-width: 1290px) {
	.section-banner h1 {
		font-size:30px;
	}
}

@media (max-width: 768px) {
	.section-banner h1 {
		font-size:24px;
	}
	
	.hero-banner {
		font-size:24px;
	}
}