@import url("https://fonts.googleapis.com/css2?family=Poiret+One&family=Red+Hat+Mono&display=swap");

/* General Styles */
body {
    font-family: 'Poiret One', cursive;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #9e9e9e;
    box-sizing: border-box;
    line-height: 1.6;
    scroll-behavior: smooth; /* Smooth scrolling for navigation */
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #25110c;
    color: white;
    text-align: center;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    margin: 1rem 0 0;
    font-size: 1.2rem;
}

/* Navigation */
nav {
    background-color: rgb(0, 0, 0);
    text-align: center;
    padding: 0.5rem 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Poiret One', cursive;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #70663d;
}

/* Fix anchor scroll issues with offset for fixed header */
:target {
    scroll-margin-top: 175px; /* Adjust for header height */
}

/* Main Content */
/* If you want the content behind the footer, no extra margin needed on main */
/* If you'd rather avoid covering content, add bottom-padding or margin to main */
main {
    margin-top: 175px;
    padding-bottom: 100px;
}

/* Hero Section */
#hero {
    background-color: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 2rem auto;
}

.hero-content p {
    font-family: 'Poiret One', cursive;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Panels */
.panel {
    max-width: 800px;
    margin: 1rem auto;
    padding: 2rem;
    background-color: #3a3a3a;
    color: white;
    border-radius: 8px;
    text-align: center;
}

.panel h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.panel p {
    font-family: 'Poiret One', cursive;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Menu Categories */
.menu-category {
    border-top: 2px solid #352e2d;
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.5rem;
    font-family: 'Poiret One', cursive;
    text-align: center;
}

/* Menu Items */
.menu-item {
    background-color: #2b0f0f;
    border: 1px solid #c04600;
    border-radius: 8px;
    padding: 0 1rem 1rem 1rem;
    margin: 1rem;
    box-shadow: 0 8px 9px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease; /* Adjust transition duration for smooth scaling */
    text-align: center;
}


.menu-item h3 {
    display: flex;
    padding: 0rem;
    margin-top: .5rem;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}

.menu-item p {
    font-family: 'Poiret One', cursive;
    font-size: 1rem;
    margin-top: 0.5rem;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #25110c;
    color: white;
    text-align: center;
    padding: 0.1rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

/* Adjust link text color in the footer */
footer a {
    color: #ff7b00;       /* Choose whatever color you want for links */
    text-decoration: none;
}

footer a:hover {
    color: #ffcd70;       /* Hover color, e.g. gold */
    text-decoration: underline;
}


