* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Roboto', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	min-height: 100vh;
}
a {
	text-decoration: none;
	color: inherit;
}
img, video {
	max-width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.navbar {
	background-color: #fff;
}
.btn-primary, .btn-secondary {
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	display: inline-block;
}
.btn-primary {
	background-color: #007bff;
}
.btn-primary:hover {
	background-color: #0056b3;
}
.btn-secondary {
	background-color: #6c757d;
}
.btn-secondary:hover {
	background-color: #5a6268;
}
.hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 10%;
	background-color: #f5f5f5;
	text-align: center;
	color: white;
}
.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
	max-width: 50%;
}
.hero-text h1 {
	font-size: 3em;
}
.hero-text p {
	font-size: 1.5em;
}
.hero-image {
	max-width: 45%;
	border-radius: 10px;
	transition: transform 0.3s ease;
}
.hero-image:hover {
	transform: scale(1.05);
}
.introduction {
	padding: 40px 10%;
	text-align: center;
}
.introduction h2 {
	font-size: 2em;
}
.workshops {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
}
.workshops-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	padding: 0 10%;
}
.workshop-card {
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.workshop-card img {
	cursor: pointer;
}
.workshop-card h3 {
	padding: 16px 0;
	font-size: 1.4em;
}
.workshop-card p {
	padding: 0 20px;
	flex-grow: 1;
}
.workshop-card .btn-secondary {
	margin: 20px;
	padding: 10px 15px;
}
.workshop-card:hover {
	transform: scale(1.05);
}
.workshop-card:hover img {
	transform: scale(1.1);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.testimonials {
	background: #e9ecef;
	padding: 40px 10%;
	text-align: center;
}
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}
.testimonial {
	padding: 20px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.testimonial:hover {
	transform: scale(1.05);
}
.testimonial p {
	font-style: italic;
}
.testimonial cite {
	display: block;
	margin-top: 10px;
	font-weight: bold;
}
.contact {
	padding: 40px 10%;
	background-color: #ffffff;
	text-align: center;
}
.contact ul {
	list-style-type: none;
	padding: 0;
}
.contact li {
	margin-bottom: 10px;
}
.contact a {
	color: #007bff;
}
.contact a:hover {
	text-decoration: underline;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}
table, th, td {
	border: 1px solid #ddd;
}
th, td {
	padding: 8px;
	text-align: left;
}
th {
	background-color: #f2f2f2;
}
tr:nth-child(even) {
	background-color: #f9f9f9;
}
.gallery, .workshop-gallery, .client-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
	padding: 16px;
}
.media-item, .client-item {
	position: relative;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.media-item img, .client-item img {
	width: 100%;
	height: auto;
}
.media-item img:hover, .client-item img:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.media-item .media-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0);
	color: #fff;
	text-align: center;
	padding: 8px;
	font-size: 14px;
	box-sizing: border-box;
	text-shadow: 1px 1px 2px #000, -1px -1px 2px #000;
}
.client-info {
	padding: 16px;
	background-color: #f9f9f9;
}
.lb-prev, .lb-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 24px;
	color: #fff;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center;
}
.lb-prev {
	background-image: url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/images/prev.png');
}
.lb-next {
	background-image: url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/images/next.png');
}
.lb-prev:hover, .lb-next:hover {
	background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
	.hero {
		flex-direction: column;
	}
	.workshops-grid, .testimonials-grid {
		grid-template-columns: 1fr;
	}
}
.page-header {
	margin-left: 10%;
	margin-top: 40px;
}
.workshop-images-section {
	margin-left: 10%;
	margin-bottom: 40px;
}
.workshop-images-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}
.workshop-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.workshop-image:hover img {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.page-header {
	margin-left: 10%;
	margin-top: 40px;
}
.workshop-images-section {
	margin-left: 10%;
	margin-bottom: 40px;
}
.workshop-images-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}
.workshop-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}
.workshop-image:hover img {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
	margin: auto;
	display: block;
	max-width: 80%;
}
.modal-content {
	-webkit-animation: zoom 0.6s;
	animation: zoom 0.6s;
}
@-webkit-keyframes zoom {
	from {
		transform: scale(0)
}
	to {
		transform: scale(1)
}
}
@keyframes zoom {
	from {
		transform: scale(0.5)
}
	to {
		transform: scale(1)
}
}
.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
	cursor: pointer;
}
.close:hover,.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
.pricing-tables {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}
.pricing-table {
	padding: 20px;
	background-color: #f8f8f8;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-table:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.pricing-table h3 {
	margin-bottom: 20px;
}
.pricing-table .price {
	font-size: 24px;
	color: #333;
	margin-bottom: 20px;
}
.pricing-table ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}
.pricing-table ul li {
	margin-bottom: 10px;
	color: #666;
}
.btn-primary {
	display: inline-block;
	padding: 10px 20px;
	background-color: #007bff;
	color: #fff;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}
.btn-primary:hover {
	background-color: #0056b3;
}
.form-container {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	margin: 20px 0;
}
h2, h3 {
	color: #333;
}
.form-container form {
	margin-bottom: 20px;
}
.form-container label {
	color: #666;
}
.form-container input[type="text"],.form-container input[type="email"],.form-container input[type="password"],.form-container input[type="file"],.form-container select {
	width: 100%;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background-color: #fff;
	color: #333;
	font-size: 16px;
}
.form-container button {
	width: 100%;
	padding: 10px;
	background-color: #6c757d;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.form-container button:hover {
	background-color: #5a6268;
}
.form-container p {
	text-align: center;
	color: #dc3545;
	font-weight: bold;
}
form {
	margin-bottom: 20px;
}
form button {
	width: 100%;
	padding: 10px;
	background-color: #007bff;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
form button:hover {
	background-color: #0056b3;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
table th, table td {
	padding: 10px;
	text-align: left;
	border: 1px solid #ddd;
}
table th {
	background-color: #f2f2f2;
}
table tr:nth-child(even) {
	background-color: #f9f9f9;
}
table tr:hover {
	background-color: #e9e9e9;
}
.container {
    max-width: 70%;
    padding: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.container-wide {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container-wide ul, .container-wide ol {
	list-style: none;
	padding-left: 0; 
	margin-left: 0; 
}
form {
	margin-bottom: 20px;
}
form button {
	width: 100%;
	padding: 10px;
	background-color: #6c757d;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
form button:hover {
	background-color: #5a6268;
}
p {
	text-align: center;
	color: #6c757d;
	font-weight: bold;
}
.testimonial {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.testimonial-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-right: 15px;
	object-fit: cover;
}
.welcome-message h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem; 
	font-weight: 700;
	color: #4A90E2;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	background: linear-gradient(to right, #4A90E2, #50C9C3);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fadeIn 2s ease-in-out;
}

.welcome-message h1::after {
	content: "";
	display: block;
	width: 50%;
	height: 4px;
	background: #4A90E2;
	margin: 20px auto 0;
	opacity: 0.7;
	border-radius: 2px;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.welcome-message h1 {
		font-size: 25px; 
	}
}

body {
	font-family: Arial, sans-serif;
	color: #333;
	margin: 0;
	padding: 0;
	text-align: center;
}
.page-header {
	padding: 20px;
	background-color: #f0f0f0;
	border-bottom: 1px solid #ccc;
}
.page-header h1 {
	font-size: 2em;
	margin: 0;
}
.page-header p {
	font-size: 1.2em;
}
.workshop-images-section {
	padding: 20px;
	background-color: #e0e0e0;
}
.workshop-images-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.workshop-image img {
	width: 100%;
	max-width: 200px;
	height: auto;
	cursor: pointer;
	border: 2px solid #ccc;
}
.workshop-images-section p {
	font-size: 1.2em;
	margin-top: 10px;
}
.pricing-tables {
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 20px;
}
.pricing-table {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	width: 250px;
}
.pricing-table h3 {
	font-size: 1.5em;
	margin-top: 0;
}
.pricing-table .price {
	font-size: 2em;
	color: #4A90E2;
	margin: 10px 0;
}
.pricing-table ul {
	list-style-type: none;
	padding: 0;
}
.pricing-table li {
	margin: 10px 0;
}
.btn-primary {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
}
.btn-primary:hover {
	background-color: #0056b3;
}
section {
	padding: 20px;
	margin: 10px 0;
}
h2 {
	font-size: 1.8em;
	margin-bottom: 10px;
}
ul {
	list-style-type: disc;
	padding-left: 20px;
}
.modal {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
	text-align: center;
}
.modal-content {
	margin: auto;
	display: block;
	max-width: 80%;
	max-height: 80%;
}
.close {
	position: absolute;
	top: 20px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}
.close:hover {
	color: #bbb;
}
html, body {
	height: 100%;
	margin: 0;
}
body {
	display: flex;
	flex-direction: column;
}
.footer {
	margin-top: auto;
}
.footer .container {
	padding: 0 15px;
}
.footer .map-container {
	position: relative;
	width: 100%;
	height: 150px;
	overflow: hidden;
}
.footer iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
.image-gallery {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
.gallery-container {
	display: flex;
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.gallery-slide {
	display: flex;
	white-space: nowrap;
	animation: slide 30s linear infinite;
}
.gallery-slide a {
	display: block;
	flex: 0 0 auto;
	width: 100%;
	height: auto;
}
.gallery-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.gallery {
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}
.media-item {
	position: relative;
	width: 100%;
	max-width: 300px;
	height: 0;
	padding-bottom: 75%;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.media-item img, .media-item video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact, .introduction {
	margin: 20px auto;
	max-width: 100%;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact ul {
	list-style-type: none;
	padding: 0;
	text-align: center;
}
.contact li {
	margin-bottom: 10px;
}
.contact a {
	color: #007bff;
	text-decoration: none;
}
.contact a:hover {
	text-decoration: underline;
}
.content-sections {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.content-row {
	display: flex;
	align-items: center;
	gap: 20px;
}
.content-row.reversed {
	flex-direction: row-reverse;
}
.image-container {
	flex: 1;
	max-width: 40%;
	margin-left: 40px;
	margin-right: 40px;
}
.image-container img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.text-container {
	flex: 1;
}
.text-container h2 {
	margin-top: 0;
	font-size: 1.5em;
}
.text-container p {
	font-size: 1em;
	line-height: 1.6;
}
.rules-section {
	padding: 20px;
	background-color: #ffffff;
	margin: 20px 0;
}
.rules-section h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: #333;
	font-weight: bold;
}
.rules-section ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.rules-section li {
	font-size: 1.5em;
	margin-bottom: 15px;
	color: #444;
}
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 15px;
	text-align: center;
	font-size: 14px;
	z-index: 1000;
	display: none;
	border-top: 1px solid #ccc;
}
.cookie-consent p {
	margin: 0;
	padding: 0;
	font-size: 14px;
}
.cookie-button {
	background-color: #d3d3d3;
	border: none;
	color: #333;
	padding: 10px 20px;
	margin-top: 10px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 4px;
}
.cookie-button:hover {
	background-color: #b0b0b0;
}
.atelier-introduction {
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1s ease-out forwards;
}
.atelier-introduction h2 {
	font-size: 2.5em;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
	animation: titleBounce 1.2s ease-out;
}
.atelier-introduction p {
	font-size: 1.2em;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes titleBounce {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
form {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: #f9f9f9;
}
form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
form input[type="text"],form input[type="email"],form input[type="password"],form select,form textarea {
	width: 100%;
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}
form button {
	background-color: #6c757d;
	color: white;
	border: none;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin-top: 10px;
	cursor: pointer;
	border-radius: 4px;
}
form button:hover {
	background-color: #6c757d;
}
.btn-secondary {
	background-color: #6c757d;
	color: white;
}
.btn-secondary:hover {
	background-color: #5a6268;
}

.about-nous {
	background-color: #f8f9fa;
	padding: 40px 0;
}
.about-nous-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.about-nous-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.team-member {
	transition: transform 0.3s ease;
}
.team-member:hover {
	transform: scale(1.05);
}
.team-member img {
	max-width: 150px;
	height: auto;
	border: 5px solid #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.about-us h2 {
	margin-bottom: 20px;
	font-size: 2rem;
}
.about-nous p {
	font-size: 1.1rem;
	max-width: 800px;
	text-align: center;
	margin-bottom: 30px;
}
.todays-video {
	padding: 16px;
	border-radius: 8px;
	margin: 16px auto;
	max-width: 1200px;
}
.todays-video h2 {
	text-align: center;
	margin-bottom: 16px;
}
.media-container {
	border-radius: 8px;
	overflow: hidden;
}
.todays-video video {
	width: 100%;
	height: 600px;
	display: block;
}
.profile-details-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0 auto;
	padding: 20px;
	max-width: 600px;
	background-color: #f4f4f9;
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.profile-details-page h1, .profile-details-page h2 {
	font-family: 'Arial', sans-serif;
	color: #333;
	margin-bottom: 20px;
}
.profile-picture {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 20px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.ateliers-list {
	list-style: none;
	padding: 0;
}
.ateliers-list-item {
	background-color: #e0e0e0;
	padding: 5px 10px;
	margin: 5px 0;
	border-radius: 5px;
}
.profile-button {
	background-color: #3498db;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.profile-button:hover {
	background-color: #2980b9;
}
.profile-return-link {
	display: inline-block;
	margin-top: 20px;
	text-decoration: none;
	color: #3498db;
	font-weight: bold;
	padding: 10px 15px;
	border: 2px solid #3498db;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.profile-return-link:hover {
	background-color: #3498db;
	color: white;
}
.profile-message, .profile-details-page p {
	font-family: 'Arial', sans-serif;
	color: #555;
}
.delete-button {
	background-color: #e74c3c;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: 20px;
}
.delete-button:hover {
	background-color: #c0392b;
}
.gallery-title {
    text-align: center;
    margin: 20px 0;
    color: #333;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.painting-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.painting-card:hover {
    transform: scale(1.05);
}

.painting-image {
    width: 100%;
    height: auto;
}

.painting-info {
    padding: 15px;
}

.painting-name {
    font-size: 1.5em;
    margin: 0;
    color: #333;
}

.painting-price,
.painting-date,
.painting-location,
.painting-phone,
.painting-dimensions,
.painting-technique {
    margin: 5px 0;
    color: #555;
}

.no-paintings {
    text-align: center;
    color: #888;
    padding: 20px;
    font-size: 1.2em;
}

.bg-image {
	background-image: url('../images/bg.png'); 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh; 
	padding: 20px; 
}

form {
	background-image: url('../images/bg.png'); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 5px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    max-width: 60%;
    margin: 30px auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    form {
        max-width: 90%;
    }
}

form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    font-size: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control:hover {
    border-color: #bdc3c7;
    background-color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 
        0 0 0 4px rgba(52, 152, 219, 0.1),
        inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    background: linear-gradient(135deg, #3498db, #2475a7);
}

.btn-submit:active {
    transform: translateY(0);
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #95a5a6;
    transition: color 0.3s ease;
}

.form-control.is-invalid {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    animation: showError 0.3s forwards;
}

@keyframes showError {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control.is-valid {
    border-color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.05);
}

.btn-submit.loading {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    bottom: 0;
    left: -100%;
    animation: loading 1s infinite;
}

@keyframes loading {
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    select.form-control {
        padding: 8px 30px 6px 12px;
        font-size: 14px;
        height: 40px;
        line-height: 1.2;
        background-position: right 8px center;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .form-group {
        margin-bottom: 16px;
    }
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M8 11l-7-7h14l-7 7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.custom-control {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
}

.custom-control input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-control .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-control:hover input ~ .checkmark {
    border-color: #3498db;
}

.custom-control input:checked ~ .checkmark {
    background-color: #3498db;
    border-color: #3498db;
}

.custom-control .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.custom-control input:checked ~ .checkmark:after {
    display: block;
}