* {
	transition: transform 0.3s ease;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	color: black;
	background: black;
	align-items: center;
	justify-content: center;
	position: relative;
	display: flow;
	height: 100vh;
}

.cover-img::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.container {
	text-align: center;
	background: black;
	color: white;
	/* backdrop-filter: blur(5px); */
	padding: 20px;
	height: 50vh;
	position: relative;
	z-index: 2;
}
header {
	text-align: center;
}

header h1 {
	font-size: 2rem;
	font-weight: bold;
	color: white;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content h2 {
	font-size: 1.5rem;
}

.social-icons img {
	width: 30px;
	margin: 10px;
	cursor: pointer;
}

.social-icons a {
	text-decoration: none;
	color: white;
}

.btn {
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 10px 0;
	padding: 15px;
	background: white;
	color: black;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.btn:hover {
	background: #ddd;
}

.cover-img {
	height: 50vh;
	color: black;
}

.cover-img>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	margin-bottom: -150px;

}

.content>p {
	font-size: large;
	color: rgb(138, 138, 138);
}

#rating-container {
	display: none;
	/* Hidden by default */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 1001;
	width: 80%;
	max-width: 400px;
	/* Prevents it from being too wide */
	text-align: center;
	transition: 0.3s;

}

#rating-container button {
	transition: 0.3s;
	background: rgb(197, 197, 197);
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	-webkit-backdrop-filter: blur(5px);
	/* Safari support */
	backdrop-filter: blur(5px);
	transition: opacity 0.5s ease;
}

.star {
	font-size:45px;
	color: gray;
	cursor: pointer;
}

.star.hover,
.star.active {
	color: gold;
}


.cover-img {
	position: relative;
	width: 100%;
	height: 50vh;
	/* Or any desired height */
	overflow: hidden;
}

.cover-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Ensures the image covers the container */
}

.gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
	pointer-events: none;
}

.review-form {
	display: none;
	justify-content: center;
	margin-top: 20px;
}

.review-form textarea {
	width: 100%;
	max-width: 400px;
	padding: 10px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: none;
	background: #f9f9f9;
	color: black;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-form textarea:focus {
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
	outline: none;
}

.grecaptcha-badge {
	display: none !important;
}

.add-contact {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

footer {
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, black, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    pointer-events: none;
    z-index: 999999;
}