@charset "utf-8";
/* CSS Document */
@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, html {
	margin: 0;
	padding: 0;
	font-size: 16px;
}

/* 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;
}
.brands-section h2 {
	text-align: center;
	font-family: "PPEditorialNewRegular";
	font-size: 1.8rem;
	color: #000000;
	font-weight: lighter;
}

@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; /* Center vertically */
		position: fixed;
		top: 50%; /* Adjusted to center vertically */
		transform: translateY(-50%); /* Center vertically */
		background-color: #F9F8F3;
		width: 100%;
		height: 100vh;
		left: 0;
		padding: 20px 0; /* Adjusted padding */
		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;
	}
}

/* FAQ Section */
.main {
 background-color: #53533B;
 padding-top: 30px;
}
.faq-title {
	width: 90%;
	margin: 0 auto;
	font-family: "PPEditorialOldUltraBold";
	font-size: 30px;
	text-align: left;
	color: #F0EADE;
}
.main .faq-title h1 {
	padding: 0;
	margin: 0;
	width: 30%
}
.faq-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 0px 20px 100px 20px;
}

.question {
	cursor: pointer;
	background-color: #F0EADE;
	padding: 20px 15px;
	margin-top: 20px;
	position: relative; /* Ensure the arrow position is relative to the question */
	border-radius: 10px;
	font-family: "PPEditorialNewItalic";
	font-size: 19px;
	color: #3B4234;
}

.arrow {
	position: absolute;
	top: 50%; /* Position the arrow vertically in the middle */
	right: 10px; /* Adjust the position as needed */
	transform: translateY(-50%); /* Center the arrow vertically */
	width: 20px; /* Adjust the width of the arrow */
	height: auto; /* Allow height to adjust according to aspect ratio */
	background-image: url("Images/arrows-06.png"); /* Path to your arrow image */
	background-size: contain; /* Ensure the arrow fits within its container */
	background-repeat: no-repeat; /* Prevent the arrow from repeating */
}

.answer {
	display: none;
	padding-top: 30px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 20px;
	background-color: #C9C4B5;
	margin-top: -10px; /* Adjust this value */
	margin-bottom: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	font-family: "Helvetica";
	color: #3B4234;
	text-align: justify;
}

.answer-visible .arrow {
	transform: rotate(180deg); /* Rotate the arrow image 180 degrees */
	top: calc(50% - 8px); /* Adjust the top position to compensate for rotation */
}

@media screen and (max-width: 768px) {
    .faq-title {
        font-family: "PPEditorialOldUltraBold";
        font-size: 25px;
        text-align: left;
        color: #F0EADE;
        padding-left: 15px;
        margin-top: 30px; /* Adjust the margin as needed */
    }
	.main .faq-title h1 {
		padding: 0;
		margin: 0;
		margin-top: 80px;
		width: 20%;
    }
	.faq-container {
		max-width: 90%;
	}

	.question {
		font-size: 19px;
		padding-top: 20px;
		padding-right: 30px;
		padding-left: 15px;
		padding-bottom: 20px;
	}

	.arrow {
		width: 20px;
	}

	.answer {
		padding: 20px;
	}
}

/* Footer Section */
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; /* Ensure the social media section grows to fill available space */
	display: flex;
	justify-content: center; /* Center social media icons horizontally */
}

.social-media img {
	width: 60px;
	margin: 40px 20px 0px;
}

.ig-icon:hover img {
	content: url("Images/icons-03.png"); /* Change image source on hover */
}

.tt-icon:hover img {
	content: url("Images/icons-02.png"); /* Change image source on hover */
}

.fb-icon:hover img {
	content: url("Images/icons-04.png"); /* Change image source on hover */
}

.copyright {
	text-align: center;
	margin-top: 20px;
	flex-grow: 1; /* Ensure the social media section grows to fill available space */
	display: flex;
	justify-content: center; /* Center social media icons horizontally */
	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;
	}
}
