html {
	scroll-behavior: smooth;
}

body {
	background-color: #fafafa;
	box-sizing: border-box;
	font-family: 'Playfair Display', sans-serif;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

/* Navbar */

#navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow 0.3s ease;
	/* overflow: hidden; */
	background: linear-gradient(to right, #311b92, #9575cd);
	width: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.side-menu-wrapper,
.cta-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.hamb {
	cursor: pointer;
	display: none;
	padding: 0px 20px;
}

.hamb-line {
	background: white;
	display: block;
	height: 2px;
	position: relative;
	width: 24px;
}

.hamb-line::before,
.hamb-line::after {
	background: white;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all 0.2s ease-out;
	width: 100%;
}

.hamb-line::before {
	top: 5px;
}

.hamb-line::after {
	top: -5px;
}

.side-menu {
	display: none;
}

.side-menu:checked ~ nav {
	max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
	background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
	transform: rotate(-45deg);
	top: 0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
	transform: rotate(45deg);
	top: 0;
}

select {
	order: 2;
	margin-bottom: 6px;
}

.hamburger-menu-wrapper {
	order: 1;
}

.header-logo-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	max-width: 1275px;
	margin: auto;
	padding-bottom: 20px;
	padding-top: 20px;
}

.header-logo-wrapper .cta-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.header-logo-wrapper .logo {
	width: 60px;
	height: 60px;
}

.header-logo-wrapper .cta {
	color: white;
	width: fit-content;
	cursor: pointer;
	font-size: 16px;
	text-decoration: none;
}

.cta {
	position: relative;
	padding-bottom: 8px;
}

.cta:hover {
	opacity: 0.8;
}

.cta.active {
	text-decoration: none;
	border-bottom: 4px solid #b2ff59;
	padding-bottom: 4px;
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	border: none;
	color: white;
	font-size: large;
	outline: none;
	margin-bottom: 6px;
}

select:focus,
select:active {
	border: none;
	outline: none;
}

.header-logo-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	max-width: 1275px;
	margin: auto;
	/* padding-bottom: 50px; */
}

.header-logo-wrapper .logo {
	width: 60px;
	height: 60px;
}

.header-logo-wrapper .cta-contact-us {
	background-color: white;
	color: #311b92;
	padding: 15px 20px;
	font-size: 14px;
	border-radius: 8px;
	border: none;
	width: fit-content;
	cursor: pointer;
	font-weight: bold;
	max-width: 200px;
	border: 2px solid white;
	text-decoration: none;
}

h1 {
	font-size: 60px;
	font-weight: bolder;
}

h3 {
	font-size: 30px;
}

/* HEADER section */

header {
	padding: 40px;
	background: linear-gradient(to right, #311b92, #9575cd);
	padding-bottom: 100px;
	padding-top: 60px;
}

.header {
	display: flex;
	color: white;
}

.header-wrapper {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	/* flex-direction: row; */
	max-width: 1275px;
	margin: auto;
	gap: 60px;
}

.delete_account,
.privacy-policy,
.for-designers {
	display: flex;
	flex-wrap: wrap;
	padding: 40px;
	flex-direction: column;
	justify-content: center;
	max-width: 980px;
	margin: auto;
	margin-bottom: 15%;
}

.for-designers {
	margin-bottom: 0px;
}

.delete_account strong {
	font-weight: bold;
}

/* FOOTER */

.footer-wrapper {
	background: linear-gradient(to right, #311b92, #9575cd);
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	max-width: 100%;
	padding-bottom: 10em;
}

.footer-wrapper p {
	margin-top: 0px;
	font-size: 30px;
	display: flex;
	align-items: center;
}

.footer-wrapper h3 {
	margin-top: 0px;
}

.svg-footer-wrapper {
	position: relative;
	height: 200px;
}

.footer-wave-1 {
	position: absolute;
	left: 0;
	bottom: -10px;
	z-index: -1;
}

.footer-wave {
	position: absolute;
	left: 0;
	bottom: 0px;
	z-index: -10;
}

.social-wrapper {
	background: linear-gradient(to right, #311b92, #9575cd);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 50px;
	margin: auto;
	padding-left: 200px;
	padding-right: 200px;
	color: white;
}

.logo {
	width: 80px;
	height: 80px;
}

.logo-wrapper {
	display: flex;
	gap: 20px;
}

.logo-wrapper p {
	font-weight: lighter;
	font-size: medium;
}

.logo-wrapper a {
	font-weight: lighter;
	font-size: medium;
	color: white;
	text-decoration: none;
}

.social {
	display: flex;
	flex-direction: row;
	gap: 6px;
	align-items: center;
}

.social a {
	cursor: pointer;
	display: flex;
	align-items: center;
}
.social a:hover {
	opacity: 0.8;
}

.call-to-action {
	justify-content: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: fit-content;
	align-items: center;
	margin-top: 40px;
}
.cta {
	max-width: 200px;
	cursor: pointer;
}

ol {
	margin: 0;
	padding: 0;
	list-style-type: decimal;
}

ol li {
	font-weight: 900;
	margin-bottom: 10px;
	font-size: 18px;
}

ul {
	margin: 0;
	padding: 0;
	list-style-type: lower-alpha;
}

ul li {
	font-weight: 400;
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 16px;
}

.company-logos a {
	text-decoration: none;
	padding-left: 20px;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	right: 0;
	max-width: 350px;
	background-color: #f4ebf8;
	color: black;
	text-align: center;
	padding: 20px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	align-items: center;
	z-index: 1000;
	border-top-left-radius: 10px;
	transition: transform 0.3s ease-in-out;
	transform: translateY(100%);
	box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner a {
	padding-bottom: 10px;
	text-decoration: none;
}
.cookie-banner a:focus {
	color: #5000ca;
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-banner p {
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.cookie-banner button {
	margin-left: 10px;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 5px;
}

.accept-btn {
	background-color: #5000ca;
	color: white;
	border: 1px solid #5000ca;
}

.reject-btn {
	background-color: #f4ebf8;
	color: #5000ca;
	border: 1px solid #5000ca;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 16px;
	text-align: left;
}
th,
td {
	padding: 12px;
	border-bottom: 1px solid #ddd;
}
th {
	background-color: #f4f4f4;
}
td {
	background-color: #fafafa;
}
tr:hover {
	background-color: #f1f1f1;
}

.drop-area {
	border: 2px dashed #5000ca;
	padding: 60px;
	border-radius: 8px;
	cursor: pointer;
	background-color: #f1f1f1;
	margin-bottom: 15px;
	transition: background-color 0.3s ease;
}

.drop-area.dragover {
	background-color: #e2f0ff;
}

.drop-area p {
	margin: 0;
	font-size: 16px;
	color: #555;
}

.file-choose {
	color: #5000ca;
	text-decoration: underline;
	cursor: pointer;
}

#uploadButton {
	background-color: #5000ca;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 10px;
	cursor: pointer;
	transition: background-color 0.3s;
	width: 100%;
	margin-bottom: 15px;
	font-size: 16px;
}

#uploadButton:hover {
	background-color: rgba(80, 0, 202, 0.8);
}

.progress-container {
	background-color: #e0e0e0;
	border-radius: 4px;
	height: 20px;
	margin-top: 20px;
	display: none;
}

.progress-bar {
	height: 100%;
	background-color: #b2ff59;
	width: 0%;
	border-radius: 4px;
	transition: width 0.4s;
}

.status-message {
	margin-top: 10px;
}

.download-button {
	display: block;
	margin-top: 20px;
	padding: 10px;
	background-color: #5000ca;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s;
	font-size: 16px;
}

.download-button:hover {
	background-color: rgba(80, 0, 202, 0.8);
}

.upload-container {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 40px;
	width: 420px;
	text-align: center;
	display: flex;
	flex-direction: column;
	margin: auto;
	margin-bottom: 15%;
}

.header-oxs {
	max-width: 1275px;
	display: flex;
	flex-direction: row;
	margin: auto;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.header-content {
	flex: 0 0 40%;
}

h1#header-title {
	font-size: 4rem;
	font-family: 'Playfair Display', serif;
	font-optical-sizing: auto;
	font-weight: 900;
}

.header-image {
	flex: 0 0 50%;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 35px;
	padding: 20px;
	max-width: 1275px;
	margin: auto;
	margin-top: 100px;
	margin-bottom: 20%;
}

.card {
	position: relative;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	font-family: Playfair Display, serif;
}

.card img {
	width: 100%;
	height: 300px;
	object-fit: contain; /* Stretches the image */
	display: block;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card .card-content {
	padding: 20px 40px;
	padding-bottom: 40px;
}
.card .card-content h3 {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	background-color: rgba(0, 0, 0, 0.3); /* Black with 70% opacity */
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
	opacity: 1;
}

.download-link {
	color: #fff;
	font-size: 1.2rem;
	text-decoration: none;
	background-color: #5000ca;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

a.download-link:hover {
	background-color: rgba(80, 0, 202, 0.8);
}

a#designer-instagram-link {
	color: rgba(116, 107, 132, 0.921);
	text-decoration: none;
	padding-bottom: 5px;
	background: linear-gradient(to right, rgb(142, 100, 200), rgb(157, 100, 200)),
		linear-gradient(to right, rgba(255, 0, 0, 1), rgba(255, 0, 180, 1), rgba(0, 100, 200, 1));
	background-size: 100% 2px, 0 2px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 400ms;
}

a#designer-instagram-link:hover {
	background-size: 0 3px, 100% 3px;
}

.support-ukraine {
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.3s ease, scale 0.3s ease;
}

.support-ukraine-button {
	font-size: 12px;
	font-family: inherit;
	font-weight: 700;
	padding: 4px;
	border-radius: 20px;
	cursor: pointer;
	border: none;
	color: black;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
	background: linear-gradient(0deg, rgba(255, 213, 0, 1) 0%, rgba(255, 213, 0, 1) 47%, rgba(0, 91, 187, 1) 47%, rgba(0, 91, 187, 1) 100%);
	transition: all 0.1s ease-in-out;
	margin-left: 8px;
}

.support-ukraine-button:active {
	transform: translateY(3px);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 14px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.support-ukraine-button .button-content {
	display: flex;
	align-items: center;
	background: white;
	padding: 0.7em 1.5em;
	padding-left: 1.2em;
	border-radius: 16px;
}

.support-ukraine-button svg {
	width: 20px;
	height: 20px;
	margin-right: 6px;
	color: #ff0000;
	transition: transform 0.3s;
}

.support-ukraine-button:hover svg {
	transform: scale(1.2);
}

.google-image-container {
	position: relative;
	display: inline-block;
}

.label {
	position: absolute;
	top: -27px;
	right: -80px;
	background-color: #b2ff59;
	color: #5000ca;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 5px;
	text-transform: uppercase;
	z-index: 1;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.google-image-container:hover .label {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.header-wrapper {
		align-items: flex-start;
	}
	.header-logo-wrapper {
		padding-left: 40px;
		padding-right: 40px;
	}

	.headline {
		font-size: 50px;
		word-break: break-word;
	}

	.call-to-action {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		width: fit-content;
		justify-content: center;
		align-items: center;
	}

	.social-wrapper {
		padding-left: 40px;
		padding-right: 40px;
	}

	.social-wrapper {
		justify-content: center;
		align-items: center;
		gap: 30px;
	}
	.footer-wrapper p {
		text-align: center;
	}
}

@media (max-width: 869px) {
	.header-oxs {
		flex-direction: column;
		max-width: 100%;
	}
	.header-content {
		flex: 0 0 100%;
	}

	h1#header-title {
		font-size: 3.5rem;
	}

	.header-image {
		flex: 0 0 100%;
	}
}

@media (max-width: 807px) {
	.hamb {
		display: inline;
	}

	.hamburger-menu-wrapper {
		order: 2;
	}

	.cta-wrapper {
		background-color: #f2f0f6;
		padding: 40px;
		flex-direction: column;
		min-width: 200px;
		align-items: flex-start !important;
		position: absolute;
		top: 125px;
		right: 20px;
		z-index: 1000000;
		border-radius: 10px;
		box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
	}

	.side-menu:checked ~ .cta-wrapper {
		opacity: 1;
		visibility: visible;
	}

	.cta-wrapper a {
		color: black !important;
	}
}

@media (max-width: 747px) {

	.card-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	.social-wrapper {
		justify-content: space-between;
	}

	.logo-wrapper {
		flex-direction: column;
		gap: 0px;
	}
	.logo-wrapper p {
		margin-top: 0px;
	}

	.upload-container {
		width: 70%;
	}
}
