* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@font-face {
	font-family: 'Audrey-Normal';
	src: url('../fonts/Audrey-Normal.otf') format('opentype'); /* Adjust the path if necessary */
	font-weight: normal;
	font-style: normal;
}

@font-face {
    src: url(../fonts/DidotRegular.ttf) format("truetype");
    font-family: DidotRegular;
    font-weight: 500;
    font-display: swap
}

@font-face {
    src: url(../fonts/Holland.ttf) format("truetype");
    font-family: Holland;
    font-weight: 500;
    font-display: swap
}

body,html {
    background-color: #000!important;
    color: #fff!important;
	font-family: 'Audrey-Normal', sans-serif!important;
    padding: 0;
    margin: 0
}

.h2,h2 {
    font-size: 2rem!important;
    font-family: Holland!important;
    color: #d12020;
}

.content {
	padding: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.hotel-name {
	font-family: 'Audrey-Normal', sans-serif!important;
	font-size: 50px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.hotel-tagline {
	font-family: 'Audrey-Normal', sans-serif!important;
	font-style: italic;
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.hotel-welcome {
	font-family: Holland!important;
	font-size: 50px;
	margin-top: 10px;
	margin-bottom: 10px;
    color: #d12020;
}

.button-container {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.custom-button {
	padding: 0.75rem 1.5rem;
	background-color: #333333;
	color: white;
	border: none;
	border-radius: 4px;
	font-family: Audrey-Normal!important;
	font-weight: 1000;
	font-size: 20px;
	cursor: pointer;
	transition: background-color 0.3s;
	text-align: center;
}

.custom-button:hover {
	background-color: #2980b9;
}

.display-container {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.display-string {
	color: #dddddd;
	font-family: Audrey-Normal!important;
	font-weight: 1000;
	font-size: 15px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	
	.menu {
		display: none;
	}
	
	.menu.active {
		display: flex;
	}
}

