* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: rgb(38,21,9);
    background: rgb(38,21,9);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('photos/background.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 30px 20px 0 20px;
}

#header-gradient {
	background: linear-gradient(rgba(38,21,9,0), rgba(38,21,9,1));
	height: 50px;
	margin: 0 -20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px;
}

.menu-item {
    background: rgba(255,255,255,0.95);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: 0.3s;
    animation: btnIn 0.4s ease-out;
}

.menu-item:hover {
    background: #cc3a24;
    color: white;
}

.content-section {
	position: fixed;
	top: 10px;
	bottom: 60px;
	left: 0px;
	right: 0px;
    display: none;
    background: white;
    margin: 15px 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: fadeIn 0.6s ease-out;
    font-size: small;
    text-align: justify;
    overflow-y: auto;
}

.close-btn {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 10px;
    width: 25px;
    height: 25px;
    font-size: medium;
	font-weight: bold;
	text-align: center;
	vertical-align: absolute-middle;
	background-color: #e26c5a;
    color: white;
    border-radius: 5px;
	cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    background: #cc3a24;

}

.subtitle {
	font-weight: bold;
	margin-top: 10px;
}

.paragraph {
	margin-left: 6px;
}

.separator {
	border-bottom: solid 1px;
	margin: 10px 0;
}

.spacer {
	margin: 5px;
}

#intro {
	display: block;
	position: relative;
	background-color: #84582e;
	color: white;
    margin: 0px 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: fadeIn 1.2s ease;
    font-size: small;
    text-align: justify;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(rgba(38,21,9,1), rgba(13,7,3,1));
    padding: 12px;
    text-align: center;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.05);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background: #e26c5a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;   
    animation: fadeIn 0.8s ease;
}

.btn:hover {
    background: #cc3a24;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes btnIn {
    from { opacity: 0; transform: scale(0,1); }
    to { opacity: 1; transform: scale(1,1); }
}