header, 
.site-header, 
#masthead {
	display: none !important;
	height: 0 !important;
	overflow: hidden !important;
}

/* General Styles */
body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background: #000000;
	color: #ffffff;
}

/* Left navigation column */
.custom-left-column {
	position: fixed;
	top: 0;
	left: 0;
	width: 20vw;
	height: 100vh;
	background-color: #000000;
	padding: 20px;
	box-shadow: 2px 0 5px rgba(0,0,0,0.1);
	z-index: 1000;
}

.custom-left-column .logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	color: #DAA520;
/* Updated gold color */
	margin-bottom: 40px;
}

.custom-left-column ul {
	list-style: none;
	padding: 0;
}

.custom-left-column ul li {
	margin: 10px 0;
}

.custom-left-column ul li a {
	text-decoration: none;
	color: #DAA520;
/* Updated gold color */
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	transition: all .3s ease;
	padding: 5px 10px;
	display: block;
}

.custom-left-column ul li a:hover,
.custom-left-column ul li a.active {
	color: #ffffff;
	background: rgba(218, 165, 32, 0.2);
/* Subtle gold background on hover/active */
}

/* Right content column */
.custom-right-column {
	position: absolute;
	top: 0;
	left: 20vw;
	width: 80vw;
	padding: 20px;
	padding-top: 0;
	background: #000000;
	min-height: 100vh;
}

.section {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.section h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 36px;
	color: #DAA520;
/* Updated gold color */
	margin-bottom: 10px;
}

.section p {
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 20px;
}

.section .btn {
	background: #DAA520;
/* Updated gold color */
	color: #000000;
/* Black text for readability */
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	transition: all .3s ease;
}

.section .btn:hover {
	background: #ffffff;
	transform: scale(1.05);
/* Slight scale increase on hover */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
/* Subtle shadow on hover */
}

/* Subscribe Section */
#subscribe-section form {
	display: flex;
	justify-content: center;
	gap: 10px;
}

#subscribe-section input[type="email"] {
	padding: 10px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
}

#subscribe-section button {
	background: #DAA520;
/* Updated gold color */
	color: #000000;
/* Black text for readability */
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	transition: all .3s ease;
}

#subscribe-section button:hover {
	background: #ffffff;
	transform: scale(1.05);
/* Slight scale increase on hover */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
/* Subtle shadow on hover */
}

/* Contact Form */
#contact-section form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 500px;
}

#contact-section input,
#contact-section textarea {
	padding: 10px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
}

#contact-section button {
	background: #DAA520;
/* Updated gold color */
	color: #000000;
/* Black text for readability */
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	transition: all .3s ease;
}

#contact-section button:hover {
	background: #ffffff;
	transform: scale(1.05);
/* Slight scale increase on hover */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
/* Subtle shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
	.custom-left-column {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.custom-right-column {
		position: relative;
		width: 100%;
		left: 0;
	}
}