@import url('https://fonts.googleapis.com/css2?family=Anton&family=Arya:wght@400;700&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rancho&family=Rubik:ital,wght@0,300..900;1,300..900&family=Wendy+One&display=swap');

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

html {
	font-size: 62.5%;
}

body {
	font-family: "Rancho" , "oswald";
	font-weight: 400;
	font-style: normal;
	background-color: #d6d6d6;
}

/* navbar */

.navbar {
	display: flex;
	background-color: #800000;
	padding: 1% 3%;
	color: white;
	position: fixed;
	top: 0px;
	font-size: clamp(1.3rem, 2vw, 2.5rem);
	width: 100%;
	z-index: 100;
}

.right-nav {
	flex: 1;
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
}
/* .right-nav img{
	width: clamp(20px , 2vw ,40px);
} */
.left-nav {
	flex: 1;
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 1vw;
}

.left-nav a {
	text-decoration: none;
	border-bottom: 2px transparent solid;
	color: white;
	padding: 1% 2%;
	transition: 0.3s ease-in-out;
}
.left-nav a:hover {
	border-bottom: 2px solid white;
	color: white;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}
.bottom-nav {
	background-color: #d6d6d6;
	margin-top: 4.5vw;
	font-size: clamp(1.3rem, 2vw, 2.5rem);
	display: none;
	justify-content: space-evenly;
	padding: 1% 3%;
	gap: 2%;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.bottom-nav a {
	text-decoration: none;
	border-bottom: 2px transparent solid;
	color: #800000;
	padding: 1% 2%;
	transition: 0.3s ease-in-out;
}
.bottom-nav a:hover {
	border-bottom: 2px solid #800000;
	color: #800000;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}
.menu-icon {
	cursor: pointer;
	display: none;
}

/* hero section  */

.hero-sec {
	margin-top: 4.5vw;
	height: 650px;
	width: 100%;
	background-image: url(/Assets/hero-img-1.webp);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}
/* theme section */

.theme-sec {
	padding: 2%;
	text-align: center;
	scroll-margin: 5vw;
}
.theme-sec h1 {
	font-size: clamp(2rem, 3vw, 4rem);
	padding-top: 1%;
}
.theme-sec p {
	padding: 0.2% 0 1% 0;
	font-size: clamp(1.2rem, 2vw, 2rem);
}
.themes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5%;
}

.theme {
	max-width: 400px;
	max-height: 580px;
	margin-bottom: 2vw;
	background-color: #e28d19;
	text-decoration: none;
	color: white;
	padding: 1%;
	border-radius: 1rem;
	box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
	transition: 0.1s ease-in-out;
}
.theme:hover {
	scale: 105%;
	transition: 0.1s ease-in-out;
}
.theme h2 {
	padding: 1% 0 0 0;
	/* margin-bottom: 5%; */
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 200;
}
.theme img {
	width: 100%;
	height: 95%;
	object-fit: cover;
	border-radius: 1rem;
}

/* review section */

.review-sec {
	background-color: #d6d6d6;
	padding: 2%;
	box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.1);
	scroll-margin: 5vw;
}

.reviews {
	padding: 1%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 10px;
}
.review-sec h1 {
	padding-top: 1%;
	font-size: clamp(2rem, 3vw, 4rem);
	text-align: center;
}

.review {
	height: 100%;
	background-color: #e28d19;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	border-radius: 10px;
}
.review h3 {
	font-size: clamp(1.5rem, 2vw, 2rem);
	letter-spacing: 0.5px;
}
.review p {
	font-size: clamp(1.5rem, 2vw, 2rem);
	text-align: left;
	color: #fae9e9;
}

.avatar {
	width: 50px;
	height: 50px;
}
.avatar img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-radius: 50%;
}
.review-content {
	flex: 4;
}

/* add review section */

.add-review-heading {
	padding-top: 3%;
	padding-bottom: 1%;
	text-align: center;
	font-size: clamp(2rem, 3vw, 4rem);
}

.add-reviews form {
	background-color: #800000;
	color: white;
	padding: 2%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	font-size: clamp(1.5rem, 2vw, 2rem);
}

.add-reviews input {
	font-family: Arial, Helvetica, sans-serif;
	width: 100%;
	height: 40px;
	padding: 10px 20px;
	margin-bottom: 10px;
	border-radius: 8px;
	border: none;
}
.add-reviews textarea {
	font-family: Arial, Helvetica, sans-serif;
	width: 100%;
	height: 80px;
	padding: 10px 20px;
	margin-bottom: 10px;
	border-radius: 8px;
	border: none;
}
.add-reviews button {
	background-color: #e28d19;
	border: none;
	border-radius: 10px;
	font-weight: 500;
	color: white;
	padding: 10px 40px;
	align-self: flex-end;
}
.file-input {
	font-family: Arial, Helvetica, sans-serif;
	background-color: white;
	color: black;
	cursor: pointer;
	outline: none;
}
/* themes style start */

.templates-sec {
	margin-top: 5vw;
	padding: 2%;
	text-align: center;
}
.templates-sec h1 {
	font-size: clamp(2rem, 3vw, 4rem);
	padding-top: 1%;
}
.templates-sec p {
	font-size: clamp(1.2rem, 2vw, 2rem);
}
.templates {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5%;
	padding: clamp(0.5px, 1vw, 2vw);
}

.template {
	max-width: 400px;
	max-height: 580px;
	margin-bottom: 2vw;
	background-color: #e28d19;
	text-decoration: none;
	color: white;
	padding: 1%;
	border-radius: 1rem;
	box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
	transition: 0.1s ease-in-out;
}
.template:hover {
	scale: 105%;
	transition: 0.1s ease-in-out;
}
.template h2 {
	padding: 1% 0 0 0;
	/* margin-bottom: 5%; */
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 200;
}
.template img {
	width: 100%;
	height: 90%;
	object-fit: cover;
	border-radius: 1rem;
}
.button-sec {
	padding: clamp(20px, 2vw, 2%);
	text-align: center;
}

.pay-button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(1.2rem, 1.8vw, 1.8rem);
	font-weight: 400;
	text-decoration: none;
	background-color: #e28d19;
	color: white;
	padding: 10px 20px;
	border-radius: 10px;
	cursor: pointer;
}

#form {
	font-family: Arial, Helvetica, sans-serif;
}

/* FAQ */

.faq-section {
	width: 90vw;
	max-width: 800px;

	margin: 4rem auto;
	padding: 2rem;
	background-color: #fefefe;
	border-radius: 1rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	font-family: sans-serif;
}

.faq-section h2 {
	font-size: clamp(1.6rem, 3vw, 3rem);
	text-align: center;
	margin-bottom: 2rem;
	color: #333;
}

.faq-item details {
	background-color: #f9f9f9;
	padding: 1rem 1.2rem;
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	border: 1px solid #ddd;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.faq-item details[open] {
	background-color: #f0f8ff;
	border-color: #cce;
}

.faq-item summary {
	font-weight: bold;
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	color: #444;
	outline: none;
}

.faq-item p {
	margin-top: 0.8rem;
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: #555;
}

/* footer style */

.site-footer {
	background-color: #1a1a1a;
	color: #f0f0f0;
	padding: 40px 20px;
	font-family: sans-serif;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
}

.footer-column {
	flex: 1 1 200px;
	margin: 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer-column h2,
.footer-column h3 {
	margin-bottom: 10px;
	color: white;
}

.footer-column p,
.footer-column ul,
.footer-column a {
	font-size: 14px;
	color: #ccc;
	line-height: 1.6;
	text-decoration: none;
}

.footer-column a {
	border-bottom: 1px solid transparent;
	padding: 1%;
}

.footer-column a:hover {
	color: #e28d19;
	border-bottom: 1px solid #e28d19;
}
.social-icons {
	display: flex;
}
.social-icons a {
	font-size: 24px;
	margin-right: 10px;
	height: 30px;
	width: 30px;
	display: flex;
	overflow: hidden;
	padding-bottom: 5px;
}

.social-icons img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.cta-button {
	display: inline-block;
	margin-top: 10px;
	background-color: #28a745;
	color: white;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: bold;
}

.cta-button:hover a {
	color: black;
	background-color: #218838;
}

.footer-bottom {
	text-align: center;
	margin-top: 30px;
	border-top: 1px solid #444;
	padding-top: 15px;
	font-size: 13px;
	color: #aaa;
}

/* templates add on */

.optional {
	color: #800000;
}
.program-container {
	max-width: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	list-style-position: inside;
	flex-wrap: wrap;
}
.program-container li {
	color: #022631;
	display: inline-flex;

	gap: 5px;
	list-style: none;
	font-size: 1.2rem;
	line-height: 1.5rem;
}

.program-container li::before {
	content: "✔"; /* any emoji or character */
	color: #ca7600;
	flex-shrink: 0;
}

/* media queries */

@media (max-width: 1100px) {
	.hero-sec {
		height: 450px;
	}
}
@media (max-width: 800px) {
	.hero-sec {
		height: 350px;
	}
}
@media (max-width: 650px) {
	.navbar {
		padding: 2% 4%;
		font-size: 2rem;
	}
	.show {
		display: flex;
		transition: 0.3s ease-in-out;
	}
	.left-nav {
		flex: 2;
		display: none;
	}
	.menu-icon {
		display: block;
	}
	.bottom-nav {
		padding-top: clamp(20px, 2vw, 5px);
		margin-top: 8.4vw;
		font-size: clamp(1.5rem, 4vw, 2.5rem);
		position: sticky;
		top: 8.4vw;
		z-index: 10;
	}

	.hero-sec {
		height: 70vh;
		background-image: url(Assets/hero-img-2.webp);
		margin-top: 8.4vw;
	}
	.margin {
		margin-bottom: -8vw;
	}
	.review-sec,
	.theme-sec {
		scroll-margin: 25vw;
	}
	.templates-sec {
		margin-top: clamp(40px, 6vw, 9vw);
	}

	.theme {
		scale: 98%;
	}
	.template {
		scale: 98%;
	}
	.theme:hover {
		scale: 100%;
		transition: 0.1s ease-in-out;
	}
	.template:hover {
		scale: 100%;
		transition: 0.1s ease-in-out;
	}
	.reviews {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 400px) {
	.preview {
		zoom: 0.8;
	}
	#form {
		grid-template-columns: 1fr;
	}
}
