*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background:#1a120d;
    color: #E8DCC5;
    font-family: 'Open Sans',sans-serif;
    line-height: 1.6;
}

#under-construction {
    font-weight: bold;
    text-align: center;
}

.container{
    width: min(1200px,90%);
    margin: auto;
}

h1,h2,h3{
    font-family: 'Oswald',sans-serif;
    text-transform: uppercase;
}

section{
    padding: 80px 0;
    scroll-margin-top: 140px;
}

/* NAV */
header{
    background: #2b1b14;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #b45a2a;
}

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img{
    height: 175px;
    margin-top: -15%;
    margin-bottom: -10%;
}

nav ul{
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a{
    color:#E8DCC5;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
}

/* HERO */
.hero{
    min-height:80vh;

    /* HERO IMAGE HERE */
    background:
    linear-gradient(
        #1a120d,
        #20150f
    ),
    url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero h1{
    font-size: clamp(3rem,7vw,5rem);
    margin-bottom: 1rem;
}

.hero p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* BUTTONS */
.btn{
    display: inline-block;
    background: #b45a2a;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: .3s;
}

.btn:hover{
    transform: translateY(-3px);
}

/* EVENTS */
.events{
    background: #222;
}

.event-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card{
    background: #2b2b2b;
    border-left: 5px solid #b45a2a;
    padding: 2rem;
    width: 100%;
}

.event-grid img {
    height: 500px;
    border-radius: 4px;
}

/* MENU */
.menu-preview{
    margin-top: 2rem;
}

.menu-preview img{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    border: 2px solid #b45a2a;
    border-radius: 10px;
}

/* GALLERY */
.gallery-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* NEWSLETTER */
.newsletter{
    background: #222;
    text-align: center;
}

/* CONTACT */
.contact-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.hours {
    width: 100%;
    max-width: 300px;
    border-collapse: collapse;
}

.hours td {
    border: none;
    font-weight: bold;
    text-align: left;
}

.hours td:last-child {
    text-align: left;
    font-weight: normal;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
}

footer a {
    color: #E8DCC5;
    font-style: normal;
}

footer a:visited {
    color: #E8DCC5;
}

footer a:hover {
    color: #b45a2a;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #E8DCC5;
    font-size: 1.8rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #c49a3a; /* Your site's accent color */
    transform: translateY(-2px);
}

#back {
    color: #E8DCC5;
}

#back:visited {
    color: #E8DCC5;
}

/* MOBILE */
@media(max-width:1000px){
    .logo img {
        height: 100px;
        margin-bottom: -30px;
        margin-top: -20px;
    }
    
    .nav-container{
        flex-direction: column;
        gap: 1rem;
    }

    nav ul{
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 18px;
    }

    nav a:hover{
    color: #E8DCC5;
    }

    .contact-grid{
        grid-template-columns: 1fr;
    }

    #mobile-link {
        color: #E8DCC5;
    }

    .menu-preview img{
    width: 100%;
    border: 2px solid #b45a2a;
    border-radius: 10px;
    }

    #google-maps {
        display: flex;
        width: 100%;
    }
}

@media(min-width:1000px){
    nav a:hover{
    color: #ee8822;
    }
}