/* General styles */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
    font-family: "PPEditorialNewUltraLightItalic";
    src: url("Typefaces/PPEditorialOld-UltralightItalic.otf")
}

@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 {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* 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 {
    overflow: hidden;
}

.hero-section {
    position: relative;
    height: 80vh; 
    background-image: url("Images/reviewstop.jpg"); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 0 20px; 
}

.headline {
    max-width: 50%; 
    text-align: left;
    color: #fff;
}

.headline h1 {
    font-family: "PPEditorialOldUltraBold";
    color: #1F1F1F;
    font-size: 3.5rem;
    padding-left: 80px;
    padding-right: 80px;
}

.headline p {
    font-family: "Mulish";
    font-size: 20px;
    color: #515151;
    padding-left: 80px;
    padding-right: 80px;
    font-style: italic;
    line-height: 140%;
}

.bottom {
    padding-top: 20px; 
    padding-bottom: 20px; 
    background-image: url("Images/bg_brown.png"); 
    background-size: cover; 
    background-position: center; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 50vh; 
}

.carousel-container {
    position: relative;
    width: 75%; 
    overflow: hidden;
}

.carousel {
    display: flex;
}

.slide {
    flex: 0 0 50%; 
    margin: 0 auto; 
    text-align: center;
    padding: 20px;
    background-color: rgba(255,255,0,0.00);
    font-family: "PPEditorialNewItalic";
    font-size: 19px;
    color: #F0EADE;
    font-weight: lighter;
}

.slide h3 {
    font-family: "PPEditorialNewRegular";
    font-size: 28px;
    color: #F0EADE;
    font-weight: lighter;
    margin: 0px 0px 15px;
    padding: 0px;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #F0EADE;
    font-size: 24px;
    cursor: pointer;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media only screen and (max-width: 768px) {

.hero-section {
    position: relative;
    height: 60vh; 
    background-image: url("Images/reviewstop.jpg"); 
    background-size: cover;
    background-position: left;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 0 10px; 
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* White overlay with 70% opacity */
    z-index: 1; /* Ensure the overlay is below the text */
}
.headline {
    max-width: 95vw;
    justify-content: center;
    height: 60vh;
    z-index: 2;
}

.headline h1 {
    margin-top: 150px;
    padding: 0;
    font-size: 40px;
	text-align: center;
}

.headline p {
    padding: 0;
    font-size: 14px;
	text-align: center;
}

.bottom {
    padding-top: 10px; /* Adjust as needed */
    padding-bottom: 10px; /* Adjust as needed */
    height: 35vh; /* Adjust the height as needed */
}
.carousel-container {
    width: 90%;
}

.slide {
    font-size: 13px;
    flex: 0 0 70%; /* Adjust the width as needed */

}

.slide h3 {
    font-size: 16px;
}
}

/* 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; /* 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;
    }
}
