@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
	font-family: "PPEditorialOldUltraBold";
	src: url("Typefaces/PPEditorialOld-Ultrabold.otf");
}

@font-face {
	font-family: "PPEditorialNewItalic";
	src: url("Typefaces/PPEditorialNew-Italic.otf");
}

@font-face {
	font-family: "PPEditorialNewRegular";
	src: url("Typefaces/PPEditorialNew-Regular.otf");
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-image: url("Images/bg_yellow.jpg");
}

/* Header Styles */
.header {
	background-color: #F9F8F3;
	color: #412A1A;
	padding: 10px 140px 10px 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	width: 110px;
	height: auto;
}

.nav-links {
	display: flex;
	gap: 50px;
}

.nav-links a {
	color: #412A1A;
	text-decoration: none;
	padding: 10px;
	font-family: "PPEditorialNewItalic";
}

.nav-links a:hover {
	color: #9C5738;
}

.hamburger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.line {
	width: 30px;
	height: 4px;
	background-color: #412A1A;
	margin: 5px;
}

/* Menu Styles */
.menu {
	background-color: #F9F8F3;
	color: #412A1A;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	padding-top: 90px;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 1000;
}

.menu ul {
	list-style-type: none;
	padding: 0;
}

.menu ul li {
	padding: 20px 0;
	margin: 60px auto;
	text-align: center;
}

.menu ul li a {
	color: #412A1A;
	text-decoration: none;
	font-size: 24px;
}

.menu.active {
	transform: translateX(0);
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 54px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	color: #412A1A;
}

@media screen and (max-width: 768px) {
	body {
		overflow-x: hidden;
	}

	.header {
		padding: 10px 20px;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 999;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 50%;
		transform: translateY(-50%);
		background-color: #F9F8F3;
		width: 100%;
		height: 100vh;
		left: 0;
		padding: 20px 0;
		box-sizing: border-box;
		z-index: 998;
		overflow-y: auto;
	}

	.nav-links.show {
		display: flex;
	}

	.nav-links a {
		padding: 10px 0;
	}

	.hamburger-menu {
		display: flex;
		position: absolute;
		top: 25px;
		right: 60px;
	}
}

/* Page  Styles */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.title {
	text-align: center;
}

.title h1 {
	font-family: "PPEditorialOldUltraBold";
	font-size: 50px;
	padding: 50px 0px 30px;
	color: #412A1A;
}

.title .p1 {
	font-family: "PPEditorialNewItalic";
	font-size: 22px;
	padding: 0px 0px 10px;
	color: #412A1A;
}

.title .p2 {
	font-family: "Mulish";
	font-style: italic;
	font-size: 15px;
	padding: 15px 0px;
	color: #412A1A;
	text-align: center;
	width: 50vw;
	margin: auto;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: -1;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.modal.active {
	opacity: 1;
	z-index: 100;
}

.modal .btn {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	background-color: transparent;
	border: 0;
	font-size: 25px;
	cursor: pointer;
}

.main {
	margin-top: 30px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 0 auto;
	max-width: 900px;
}

.grid img {
	width: 300px;
	height: 300px;
	object-fit: cover;
	cursor: pointer;
	border-radius: 15px;
	transition: opacity 0.5s ease-in-out;
	-webkit-box-shadow: 10px 10px 8px 5px rgba(30, 30, 30, 0.51);
	box-shadow: 5px 5px 5px 3px rgba(30, 30, 30, 0.51);
}

.grid img:hover {
	opacity: 0.8;
	transform: scale(1.02);
}

.instagram-link {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.insta .p3 {
	font-family: "PPEditorialNewItalic";
	font-size: 12px;
	padding: 0px 0px 10px;
	color: #412A1A;
}

.insta img {
	height: 50px;
	width: auto;
}

.insta {
	text-align: center;
	display: flex;
	margin: 30px 0px 10px 0px;
	justify-content: center;
	margin-top: 20px;
}

.instamessage {
	text-align: center;
	display: flex;
	margin: 0px 0px 20px 0px;
	justify-content: center;
	margin-top: 10px;
	height: 50px;
	width: auto;
	font-family: "PPEditorialNewItalic";
	font-size: 15px;
	color: #412A1A;
}

@media screen and (max-width: 768px) {
	.container {
		padding: 10px;
	}

	.title h1 {
		font-size: 40px;
		padding: 130px 0px 0px;
	}

	.title .p1 {
		font-size: 18px;
		padding: 15px 0px 10px;
	}

	.title .p2 {
		width: 70vw;
	}

	.grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
		max-width: 600px;
		padding-left: 5px;
		padding-right: 5px;
	}

	.grid img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* Footer Styles */
footer {
	background-color: #1f1f1f;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.top-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.middle-section,
.bottom-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-links-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-left: 300px;
}

.footer-links-right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-right: 300px;
}

.footer-links-left a,
.footer-links-right a {
	color: #b0b2ad;
	font-family: "PPEditorialNewRegular";
	text-decoration: none;
	margin-bottom: 15px;
	text-align: center;
}

.footer-links-left a:hover,
.footer-links-right a:hover {
	color: #ffffff;
	text-decoration: none;
	margin-bottom: 15px;
	text-align: center;
}

.footer-logo img {
	display: block;
	margin: 0 auto;
	flex: 0 0 auto;
	width: 120px;
}

.social-media {
	text-align: center;
	flex-grow: 1;
	display: flex;
	justify-content: center;
}

.social-media img {
	width: 60px;
	margin: 40px 20px 0px;
}

.ig-icon:hover img {
	content: url("Images/icons-03.png");
}

.tt-icon:hover img {
	content: url("Images/icons-02.png");
}

.fb-icon:hover img {
	content: url("Images/icons-04.png");
}

.copyright {
	text-align: center;
	margin-top: 20px;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	font-family: "Helvetica Light";
	color: #b0b2ad;
	font-size: 13px;
}

.social-media a {
	margin-right: 10px;
}

.back-to-topp {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
}

.bottom-section {
	align-items: center;
}

@media screen and (max-width: 768px) {
	.top-section .middle-section,
	.bottom-section {
		flex-direction: row;
		align-items: center;
	}

	.middle-section,
	.bottom-section {
		flex-direction: column;
		align-items: center;
	}

	.footer-links-left,
	.footer-links-right {
		flex-direction: column;
		justify-content: center;
		margin-left: 0;
		margin-right: 0;
	}

	.footer-links-left,
	.footer-links-right,
	.footer-logo {
		margin-bottom: 15px;
	}
}
