@import url('https://fonts.googleapis.com/css2?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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

@font-face {
  font-family: "American Typewriter";
  src: url("fonts/american-typewriter-regular.ttf") format("truetype")
}

html, body {
	margin: 0;
}

body {
	font-family: "Poppins";
	color: #3f424a;
	font-size: 16px;
	font-weight: 400;
	line-height: 28.8px;
}

.container {
	margin-left: auto;
	margin-right: auto;
	width: 1300px;
	max-width: 90%;
}

h2 {
	font-family: "American Typewriter";
	margin-top: 0;
	margin-bottom: 0;
	text-align: center;
	font-size: 40px;
}

.line-container {
	width: 200px;
	display: flex; 
	align-items: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}

.line {
	height: 1px;
	width: 100%;
	background-color: #013220;
}

.line-container .diamond {
	width: 26px;
	height: 26px;
	position: absolute;
	left: 0;
	top: -13px;
	opacity: 0.5;
	left: 50%;
}
.diamond-1 {
	margin-left: -18px;
}
.diamond-2 {
	margin-left: -8px;
}

@media screen and (max-width: 820px) {
	h2 {
		font-size: 30px;
	}

	.line-container {
		margin-top: 30px;
	}
}

/* Header */
header {
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	padding: 0 25px 0 15px;
	box-sizing: border-box;
	height: 60px;
	width: 100%;
	position: relative;
}

header .container {
	display: flex; 
	align-items: center;
	height: 100%;
	justify-content: space-between; 
}

.logo-container {
	display: flex; 
	align-items: center;
	gap: 10px;
	height: 100%;
}

.logo-link {
	display: block;
	height: 70%;
}

.logo {
	height: 100%;
}

.logo-text {
	color: unset;
	text-decoration: none; 
	font-family: "American Typewriter";
	color: rgb(47, 72, 88);
	font-weight: 700; 
	font-size: 23px;
}

nav {
	display: flex;
	align-items: cemter;
	gap: 25px;
	height: 100%;
}

.nav-box {
	height: 100%;
	position: relative;
	align-items: center; 
	display: flex;
}

.nav-box .text {
	color: unset;
	text-decoration: none;
	transition: 0.3s;
}
.nav-box:hover .text {
	color: #013220;
	transition: 0.3s;
}
.nav-box.active .text {
	color: #013220;
}

.nav-box .line {
	position: absolute;
	bottom: -5px;
	left: 50%;
	margin-left: -15px;
	height: 2.5px;
	width: 30px;
	background-color: #013220;
	opaCity: 0;
	transition: 0.3s;
}
.nav-box:hover .line {
	opacity: 1;
	bottom: 0;
	transition: 0.3s;
}
.nav-box.active .line {
	opacity: 1;
	bottom: 0;
}

.jewelry-box {
	display: flex;
	align-items: center;
}
.jewelry-box a {
	color: rgb(174, 214, 81);
	text-decoration: none;
}

.hamburger {
	display: none;
}

.mobile-nav {
	display: none;
}

@media screen and (max-width: 820px) {
	.desktop-nav {
		display: none;
	}

	.hamburger {
		display: block; 
		height: 34px;
		cursor: pointer;
	}

	.mobile-nav {
		left: 50%;
		width: 100%;
		max-width: 600px;
		margin-left: -300px;
		padding-left: 15px;
		padding-bottom: 0px;
		box-sizing: border-box;
		position: absolute;
		bottom: 0;
		top: 60px;
		background-color: white;   	
		transition: 0.3s;
		overflow: hidden;
		padding-bottom: 0;
		height: 0;
		display: block;
		z-index: 2;
	}
	.mobile-nav.active {
		transition: 0.3s;
		padding-bottom: 20px;
	}

	.mobile-nav .links-container {
		gap: 0;
		display: flex;
		flex-direction: column; 
	}

	.mobile-nav .nav-link {
		height: 48px; 
		display: flex;
		align-items: center;
		text-decoration: none;
		color: unset;
	}
	.mobile-nav .nav-link:hover {
		color: #013220;
	}
	.mobile-nav .nav-link.active {
		color: #013220;
	}

	.jewelry-link {
		color: rgb(174, 214, 81);
		text-decoration: none;
	}
}

@media screen and (max-width: 600px) {
	.mobile-nav {
		margin-left: 0;
		left: 0;
		padding-left: 8%;
	}
}
/* End Header */

/* Hero Section */
.hero-section {
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.hero-section .left {
	flex: 1;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: rgb(174, 214, 81);
	border-right: 3px rgb(174, 214, 81) solid;
}

.hero-section .left .container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 650px;
	display: flex;
	flex-direction: column; 
	justify-content: center;
}

.hero-section h1 {
	color: #3f424a;
	font-family: "American Typewriter";
	font-size: 40px;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0;
}

.hero-section .text {
	font-family: Poppins, sans-serif;
	font-size: 20px;
	line-height: 1.3;
	margin-top: 30px;
}

.text-and-form-container {
	display: flex; 
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero-section .form-group {
	display: flex;
	height: 54px;
	margin-top: 40px;
	border-radius: 5px;
	overflow: hidden;
	max-width: 450px;
	width: 100%;
	box-shadow: rgba(1, 6, 33, 0.06) 2px 0px 15px 5px
}

.hero-section input {
	flex: 1;
	border: none;
	font-family: "Poppins";
	font-size: 16px;
	padding: 15px;
	box-sizng: border-box;
	width: calc(100% - 120px);
}

.hero-section .subscribe-button {
	width: 120px;
	height: 100%;
	background-color: #3f424a;
	border: none;
	cursor: pointer;
	display: flex; 
	justify-content: center;
	align-items: center;
	color: white;
	font-family: "Poppins";
	font-size: 16px;
	transition: 0.3s;
}
.hero-section .subscribe-button:hover {
	background-color: black;
	transition: 0.3s;
}

.subscribe-button .subscribe-loading {
	height: 25px;
	width: 25px;
	animation: spin 2s linear infinite;
	display: none;
}

.subscribe-button.loading .subscribe-text {
	display: none;
}
.subscribe-button.loading .subscribe-loading {
	display: block;
}

.subscribe-notification {
	color: red;
	margin-top: -10px;
	display: none;
}
.subscribe-notification.active {
	display: block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-section .large-circle {
	margin-top: 20%;
	width: 80%;
	height: auto; 
	aspect-ratio: 1;
	border-radius: 100%;
	background-color: rgb(174, 214, 81);
	position: relative;
}

.hero-section .bouncing-circle {
	position: absolute;
	background-color: rgb(1, 50, 32);
	height: 100px;
	width: 100px;
	bottom: 15%;
	left: 0%;
	border-radius: 100%;
	display: flex; 
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.hero-section .large-text {
	font-family: "Philosopher";
	font-size: 26px;
	font-weight: 700;
	color: white;
}
.hero-section .small-text {
	font-family: "Philosopher";
	font-size: 16px;
	color: white;
	font-weight: 400;
	margin-top: -5px;
}

.hero-section .book-cover {
	position: absolute;
	top: -15%;
	left: 0;
	width: 100%;
}

.hero-section .right {
	flex: 1;
	height: 100%;
	background-color: #3f424a;
	padding-top: 100px;
	padding-bottom: 100px;
}
.hero-section .right .container {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	max-width: 650px;
}

.hero-section .right h1 {
	text-decoration: center;
	color: rgb(174, 214, 81);
	text-align: center;
	font-family: "IBM Plex Sans";
	font-size: 40px;
}
.hero-section .right h1 a {
	text-decoration: none;
	color: unset;
}

.hero-section .right h2 {
	color: rgb(174, 214, 81);
	font-family: "IBM Plex Sans";
	font-size: 25px;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0;
}

.collection-container {
	width: 100%;
	display: grid; 
	gap: 25px;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 30px;
}

.collection {
	width: 100%;
}

.collection-image-container {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
}

.collection img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: cover;
	border: 2px rgb(174, 214, 81) solid;
}

.collection-title {
	display: block;
	margin-top: 5px; 
	text-decoration: none;
	text-transform: uppercase; 
	text-align: center;
	color: rgb(174, 214, 81);
	font-family: "IBM Plex Sans";
}

.collection-container.mobile {
	display: none;
}

@media screen and (max-width: 1050px) {
	.hero-section h1 { 
		font-size: 30px;
	}

	.hero-section .left {
		border-right: none;
	}

	.hero-section .right h2 { 
		font-size: 25px;
	}
}

@media screen and (max-width: 820px) {
	.hero-section {
		flex-direction: column;
	}

	.hero-section .left { 
		padding-top: 60px;
		padding-bottom: 60px;
		border-bottom: 3px rgb(174, 214, 81) solid;
	}

	.hero-section .right { 
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.hero-section .left .container { 
		display: flex;
		flex-direction: row;
		margin-right: auto;
		gap: 15px;
		display: flex;
	}

	.hero-section .large-circle { 
		margin-top: 0;
	}

	.hero-section .right .container {
		margin-left: auto; 
	}

	.collection-container.desktop { 
		display: none;
	}

	.collection-container.mobile { 
		display: flex;
	}

	.hero-section .right h2 { 
		font-size: 16px;
	}

	.collection-container { 
		margin-top: 20px;
		display: flex;
		justify-content: center;
	}

	.collection { 
		width: 50%;
	}

	.collection-title {
		line-height: 1.3;
		margin-top: 10px;
	}

	.hero-section .large-circle { 
	}
}

@media screen and (max-width: 600px) {
	.hero-section .left { 
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.hero-section h1 { 
		font-size: 16px;
	}

	.text-and-form-container {
		width: 50%;
	}

	.hero-section .text { 
		font-size: 14px;
		margin-top: 10px;
	}

	.hero-section .form-group { 
		margin-top: 20px;
	}

	.hero-section .form-group { 
		height: unset;
		display: flex;
		flex-direction: column;
	}

	.hero-section input { 
		width: 100%;
		display: flex;
		align-items: center;
		padding: 5px;
		height: 40px;
	}

	.hero-section .subscribe-button { 
		width: 100%;
		height: 34px;
	}

	.hero-section .book-cover { 
		top: -5%;
	} 

	.hero-section .right { 
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
/* End Hero Section */

/* About Section */
.about-section {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: white;
	border-bottom: 1px #d0e3a3 solid;
}

.back-cover {
	margin-top: 40px;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

@media screen and (max-width: 820px) {
	.about-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.back-cover {
		width: 100%;
	}
}
/* End About Section */

/* Reviews Section */
.reviews-section {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: rgb(174, 214, 81);
}

.reviews-container {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.review-box {
	padding: 24px;
	box-sizing: border-box;
	background-color: white;
	width: 100%;
}

.review-box .quote {
	width: 50px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.review-box .quote-text {
	margin-top: 30px;
	font-style: italic;
}

.reviewer-container {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.reviewer-container img {
	height: 60px;
	width: 60px;
}

.reviewer-container .text-container {
	display: flex;
	flex-direction: column;
	justify-content: center; 
	gap: 0px;
}

.reviewer-name {
	font-family: "American Typewriter";
	font-weight: 600;
	font-size: 20px;
}

.reviewer-detail {
	font-style: italic;
}

.reviews-section p {
	text-align: center;
	margin-top: 30px;
}

@media screen and (max-width: 820px) {
	.reviews-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 600px) {
	.reviews-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/* End Reviews Section */

/* Contact Section */
.contact-section {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: white;
}

.contact-row {
	margin-top: 50px;
	display: flex;
	gap: 30px;
	width: 100%;
}

.contact-form-container {
	padding: 40px; 
	box-sizing: border-box;
	width: 70%;
	background-color: rgb(174, 214, 81);
}

.address-container {
	padding: 30px;
	background-color: rgb(174, 214, 81);
	flex: 1;
	box-sizing: border-box;
}

.address-container .title {
	font-weight: 600;
}

.address-container .text {
	margin-bottom: 25px;
}

.address-container .socials-text {
	font-family: "American Typewriter";
	font-size: 25px;
	font-weight: 600;
}

.address-container .social-media-container {
	margin-top: 15px;
	display: flex;
	gap: 10px;
}

.address-container .social-icon {
	width: 40px;
	height: 40px;
	background-color: #013220;
	box-shadow: black 3px 3px 0px;
	transition: 0.3s;
	padding: 10px;
	box-sizing: border-box;
}
.address-container .social-icon:hover {
	box-shadow: none;
	background-color: black;
}

.address-container .social-icon img {
	width: 100%;
	height: 100%;
}

.contact-form-container form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-form-container form input {
	height: 45px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 16px; 
	font-family: "Poppins";
	background-color: white;
	border: none;
}

.contact-form-container form textarea {
	height: 120px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 16px; 
	font-family: "Poppins";
	background-color: white;
	border: none;
}

.contact-form-container .send-now-button {
	width: 200px;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	background-color: #013220;
	border: none;
	transition: 0.3;
	color: white; 
	font-size: 16px; 
	font-family: "Poppins";
	display: flex;
	justify-content: center; 
	align-items: center;
}
.contact-form-container form .send-now-button:hover {
	background-color: black;
	transition: 0.3s;
}

.send-now-button .send-now-loading {
	height: 25px;
	width: 25px;
	animation: spin 2s linear infinite;
	display: none;
}

.send-now-button .send-now-text {
	display: block;
}
.send-now-button .send-now-loading {
	display: none;
}

.send-now-button.loading .send-now-text {
	display: none;
}
.send-now-button.loading .send-now-loading {
	display: block;
}

.send-now-notification {
	color: red;
	margin-top: -10px;
	display: none;
	text-align: center;
}
.send-now-notification.active {
	display: block;
}

@media screen and (max-width: 820px) {
	.contact-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.contact-form-container {
		margin-left: auto;
		margin-right: auto;
		width: 504px;
		max-width: 100%;
	}

	.contact-row {
		flex-direction: column;
	}

	.contact-form-container form .send-now-button {
		width: 100%;
		align-items: center;
	}

	.address-container {
		margin-left: auto;
		margin-right: auto; 
		width: 504px;
		max-width: 100%;
	}
}
/* End Contact Section */