@import url('variables.css');
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
	background-color: #f9f9f9;
	color: #333;
}
.container {
    width: 100dvw;
    padding: 150px 40px;
    max-width: 1600px;
    height: fit-content;
}
h1, h2, h3 {
	color: var(--price-color);
	margin-top: 1.5rem;
	line-height: 1.4em;
	font-family: 'Manrope ExtraBold', sans-serif;
}
h1 {
    font-size: var(--fs-smd-title);
}
h2 {
    font-size: var(--fs-lg-subtitle);
}
h3 {
    font-size: var(--fs-subtitle);
}
ul {
	margin: 0.5rem 0 1rem 1.5rem;
	line-height: 1.3em;
	font-family: 'Manrope', sans-serif;
    font-size: var(--fs-sm-md);
}
p {
	line-height: 1.3em;
	font-family: 'Manrope', sans-serif;
    font-size: var(--fs-sm-md);
}
div.section {
	margin-bottom: 2rem;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0;
}
th {
	line-height: 1.4em;
	font-family: 'Manrope Semibold', sans-serif;
    font-size: var(--fs-btn);
}
td {
	line-height: 1.3em;
	font-family: 'Manrope', sans-serif;
    font-size: var(--fs-sm-md);
}
th, td {
	border: 1px solid #ccc;
	padding: 0.75rem;
	text-align: left;
}
tbody tr:nth-child(odd) {
	background-color: #e8f5e9;
}
tbody tr:nth-child(even) {
	background-color: #ffffff;
}
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
	margin: 40px 0;
}
.image-wrapper img {
    width: 40dvw;
	height: auto;
	aspect-ratio: 16 / 9;
    object-fit: contain;
}
.image-wrapper.double img {
    width: 50%;
}
img {
	cursor: pointer;
}
#image-zoom-modal {
	position: fixed;
	top: 0;
	left: 0;
    width: 100dvw;
    height: 100dvh;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
#image-zoom-content {
	position: relative;
    width: 72dvw;
    height: auto;
	padding: 40px;
    background: #fff;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
#image-zoom-img {
    width: 100%;
    height: auto;
	object-fit: contain;
	transition: transform 0.2s ease-out;
	cursor: grab;
	aspect-ratio: 16 / 9;
}
#image-zoom-close {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #333333;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 30px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	padding: 0;
    z-index: 2;
}
#image-zoom-close img {
	width: 25px;
	height: 25px;
	object-fit: contain;
}
.zoom-button,
.zoom-button:hover,
.zoom-button:active,
.zoom-button:focus {
	position: absolute;
	bottom: 10px;
	border: none;
	font-size: 40px;
	cursor: pointer;
	color: #00ff51;
	background: none;
}
#zoom-in-btn {
	left: 10px;
}
#zoom-out-btn {
	left: 90px;
}
.image-wrapper img.small {
	width: 300px;
	height: 300px;
	object-fit: contain;
}
.video-img,
.yt-placeholder {
    width: 500px;
    height: 287px;
    object-fit: cover;
	cursor: pointer;
	border: 2px solid #76FF8D;
    padding: 0;
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
	overflow: hidden;
}
.yt-placeholder {
	position: relative;
}
.video-img:hover {
	box-shadow: inset 0 0 60px var(--white-color), inset 5px 0 5px #8dffb1, inset -5px 0 10px var(--secondary-color), inset 5px 0 20px var(--white-color), inset -5px 0 20px var(--white-color), 0 0 10px var(--white-color), -10px 0 50px #72f89e, 10px 0 20px #72f89e;
}
.video-img {
	transform: scale(1);
    margin: auto;
}
.yt-play-button {
    width: 56px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.yt-play-button img {
    width: 56px;
    height: 70px;
    object-fit: contain;
}
@media (max-width: 1200px) {
	.image-wrapper img {width: 50dvw;}
}
@media (max-width: 1024px) {
	.image-wrapper img {width: 70dvw;}
	.image-wrapper.double {flex-direction: column;}
	.image-wrapper.double img {width: 75%;}
	.container {padding: 60px 20px;}
}
@media (max-width: 768px) {
	.image-wrapper img {width: 90dvw;}
	table, thead, tbody, th, td, tr {
		display: block;
	}
	thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	tr {
		margin: 0 0 1rem 0;
	}
	td {
		border: none;
		position: relative;
		padding-left: 50%;
		text-align: right;
	}
	td::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 45%;
		padding-left: 0.75rem;
		white-space: nowrap;
		font-weight: bold;
		text-align: left;
	}
	td:nth-of-type(1)::before { content: "Λειτουργία"; }
	td:nth-of-type(2)::before { content: "Περιγραφή"; }
}
