:root {
	--dark-bg: #8D3132;
	--light-bg: #fee6d4;
}

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

html {
	scroll-behavior: smooth;
	font-family: sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

.dark {
	background-color: var(--dark-bg);
}

.pattern-1 {
	background-image: url('pattern.png');
	background-repeat: repeat;
}

.golden-bg {
	background: radial-gradient(103.16% 103.16% at 50% 64.08%, #FFE53C 0.01%, #FF8926 100%);
}

.golden-text {
	background: radial-gradient(103.16% 103.16% at 50% 64.08%, #FFE53C 0.01%, #FF8926 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hindi {
	font-family: 'Mukta', sans-serif;
}

.gujarati {
	font-family: 'Noto Sans Gujarati', sans-serif;
}

.flex {
	display: flex;
}

#home {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#home > div {
	height: 100vh;
}

#home h1 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 1rem;
}

#home .gujarati, #home .hindi {
	font-size: 2.4rem;
}

#guruji {
	margin: 3rem 0 0;
	border-radius: 9999px;
	border: 0.5rem solid var(--light-bg);
}

#guruji img {
	display: block;
}

nav {
	background-image: url('pattern_2.png');
	background-repeat: repeat;
	padding: 1rem;
}

nav ul {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 1rem;
}

nav ul li {
	display: flex;
	justify-content: center;
	align-items: center;
}

nav li a {
	display: block;
	width: 100%;
	text-align: center;
	color: var(--dark-bg);
	padding: 1rem 0 0.9rem;
	border: 1px solid var(--dark-bg);
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	line-height: 1;
	border-radius: 0.5rem;
}

nav li a:hover {
	background-color: var(--dark-bg);
	color: var(--light-bg);
	border: 1px solid transparent;
}

@media (min-width: 475px) {
	nav ul {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 2rem;
	}

	nav li a {
		padding: 1.6rem 0;
	}
}

#videos {
	padding: 3rem 0;
}

#videos > div {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}

#videos .list {
	padding: 1rem;
}

#videos .list ol {
	padding: 0 2rem;
}

#videos .list h2 {
	font-size: 2rem;
	padding: 0 0 1rem;
	height: 5rem;
}

#videos .list li,
#videos .list a {
	color: #FFE53C;
}

#videos .list a:hover {
	color: #FFE53C;
	border-bottom: 1px solid #FF8926;
}

#videos .list li {
	margin-bottom: 1rem;
	line-height: 1.5;
}

#videos .hindi,
#videos .gujarati {
	font-size: 1.1rem;
}

.icon-scroll,
.icon-scroll:before {
	position: absolute;
	left: 50%;
}

.icon-scroll {
	width: 40px;
	height: 70px;
	margin-left: -20px;
	bottom: 5%;
	margin-top: -35px;
	box-shadow: inset 0 0 0 1px #fff;
	border-radius: 25px;
	transform: scale(0.8);
}

.icon-scroll:before {
	content: '';
	width: 8px;
	height: 8px;
	background: #fff;
	margin-left: -4px;
	top: 8px;
	border-radius: 4px;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: scroll;
	animation-name: scroll;
}

@-webkit-keyframes scroll {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(46px);
		transform: translateY(46px);
	}
}

@keyframes  scroll {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(46px);
		transform: translateY(46px);
	}
}

@media (min-width: 1280px) {
	main div {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	/* header {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	} */
	#home h1 {
		font-size: 4rem;
	}
	#home .gujarati, #home .hindi {
		font-size: 4.5rem;
	}
	#guruji {
		max-width: 40%;
		height: auto;
		margin-bottom: 4rem;
	}
	nav {
		padding: 2rem;
	}
	nav ul,
	#videos > div {
		margin: 0 auto;
		max-width: 1200px;
	}
	#videos .list {
		padding: 0;
	}
	#videos .list ol {
		padding: 0;
	}
	#videos > div {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 1rem;
	}
}
