/* =======================================
     Global Styles
   ======================================= */

/* ------------------------------
   CSS VARIABLES (COLOR + FONT)
------------------------------ */
:root {
    --color-bg-primary: #F3F1E9;
    --color-text-primary: #4A4039;
    --color-accent: #7E715C;
    --font-serif: "Lexend Deca", serif;
    --font-sans: "Lexend Deca", sans-serif;
}

.caprasimo-regular {
  font-family: "Caprasimo", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}


/* ------------------------------
   GLOBAL RESET + BODY
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: var(--color-bg-primary);
    font-family: var(--font-sans);
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* ------------------------------
   GLOBAL TEXT STYLES
------------------------------ */
h1, h2, h3 {
    font-family: var(--font-sans);
    font-weight: 800;
    color: var(--color-text-primary);
}

p, li {
    font-family: var(--font-sans);
}

/* ----------------------------------------
   HEADER — NAV WITH COOPER BLACK
---------------------------------------- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
    border-bottom: 1px solid var(--color-accent);
}

.logo {
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

.logo img {
    height: 2em;
}

/* NAVIGATION */
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0.7rem;
}

.site-nav a {
    font-family: var(--font-sans);
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 595;
    font-size: 1.1em;
}

.site-nav a.active {
    text-decoration: underline;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
    background-image: url('../hero.jpg');
    background-size: cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-width: 1px;
    border-style: solid;
    text-align: center;
}

.hero-content img {
    width: 50%;
    margin: 1rem;
}

.hero-content-name {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    margin-bottom: 1.5rem;
    font-size: 1em;
}

.cta-button {
    background-color: var(--color-text-primary);
    color: var(--color-bg-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    margin: 0.3rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .hero {
        min-height: 75vh;
        text-align: left;
        padding-left: 3rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

/* ------------------------------
   INTRO SECTION
------------------------------ */
.intro {
    padding: 2rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ------------------------------
   MENU PAGE LAYOUT
------------------------------ */
.menu-wrapper img {
    display: flex;
    padding: 2rem 1.5rem;
    width: 75%;
    justify-content: center;
}



.menu-title-wrapper {
    align-items: center;
}

@media (max-width: 750px) {

    .menu-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* ------------------------------
    MENU PAGE LAYOUT
    ------------------------------ */
    .menu-wrapper img {
        display: flex;
        padding: 2rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

}

/* ------------------------------
   CONTACT PAGE
------------------------------ */
.contact-wrapper {
    padding: 2rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-section {
    margin-bottom: 2rem;
}

.contact-section h2 {
    font-family: var(--font-sans);
    font-size: 1.5em;
    font-weight: 599;
}

.contact-section a{
    color: var(--color-accent);
    font-weight: 700;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    border: 1px solid var(--color-accent);
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--color-accent);
}

.socials {
    margin-bottom: 1rem;
}

.socials a {
    color: var(--color-accent);
    font-size: 1.4rem;
    margin: 0 0.5rem;
}

.footer-handle {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-smallprint {
    font-size: 0.85rem;
    opacity: 0.8;
}
