/*
  Noku Sushi Custom Styles
*/

/* ===== Base Layout ===== */
html, body {
    height: 100%;
    overflow: auto;
}

body {
    text-align: center;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1A1A1A;
    background: #F8E3C8;
    padding: 2rem;
}

body.home {
    padding-top: 1rem;
}

body.menu {
    display: flex;
    flex-direction: column;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 0.5rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 100;
    word-spacing: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.6rem;
    margin-top: 2em;
    margin-bottom: 0;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    margin-top: 0;
    font-weight: 400;
    font-size: 1.15rem;
}

h5 b {
    color: #ce253d;
}

/* ===== Links ===== */
a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #ce253d;
}

nav a, footer a {
    text-decoration: none;
}

/* ===== Header ===== */
.home header {
    padding-bottom: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.home header h1 {
    margin: 0 auto;
    display: block;
    width: calc(100% - 2rem);
    max-width: 1104px;
    border-bottom: 1px solid rgba(206, 37, 61, 0.15);
}

.home header h1 img {
    display: block;
    width: 100%;
    height: auto;
    padding-bottom: 1rem;
}

/* ===== Navigation ===== */
nav {
    background: #F8E3C8;
}

header nav {
    position: fixed;
    top: 0;
    width: 100%;
}

header nav img {
    height: 40px;
    position: absolute;
    left: 8px;
    top: 8px;
}

nav ul {
    list-style: none;
    margin: 1em 0 1em 170px;
    padding: 0;
    text-align: left;
}

nav li {
    display: inline;
    text-transform: lowercase;
}

header nav li:after {
    content: ' · ';
    margin: 0 .5em;
    color: #fff;
}

header nav li:last-child:after {
    content: ' ';
}

main nav img {
    width: 50%;
}

main nav ul {
    text-align: center;
    margin: 2em 0 0;
    font-size: 1.5rem;
}

main nav li {
    display: block;
    margin: 2em;
}

/* ===== Main Layout ===== */
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.home main {
    padding-top: 1rem;
}

.home main p {
    width: 90%;
    margin: 2em auto;
}

.menu main {
    padding-top: 30px;
    flex: 1;
}

/* ===== Location Cards ===== */
section {
    flex: 1 1 420px;
    max-width: 520px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(206, 37, 61, 0.12);
    border-radius: 6px;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Grand Opening Badge ===== */
.badge-grand-opening {
    position: absolute;
    top: -1.1em;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    white-space: nowrap;
    background: #DD5433;
    color: #F8E3C8;
    font-family: "Oswald", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5em 1.2em;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(221, 84, 51, 0.3);
}

/* ===== Hours ===== */
.home .hours {
    margin-top: .5em;
    font-size: 1rem;
    text-transform: uppercase;
    color: #444;
}

.home .hours li {
    margin: 0.25em 0;
}

.home ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== Menu Button ===== */
p.intro {
    font-size: 1rem;
    text-transform: uppercase;
}

p.intro a {
    display: inline-block;
    background: #DD5433;
    color: #F8E3C8;
    border: none;
    padding: 0.5em 1.4em;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 6px rgba(221, 84, 51, 0.2);
    transition: all 0.2s ease;
}

p.intro a:hover {
    background: #c23d21;
    box-shadow: 0 3px 10px rgba(221, 84, 51, 0.3);
    color: #F8E3C8;
}

/* ===== Address (H-Card) ===== */
.p-adr {
    font-size: 0.95rem;
    line-height: 1.5;
}

.address {
    display: block;
}

.locale, .contact {
    display: inline;
}

.p-extended-address {
    white-space: nowrap;
}

.p-street-address:after {
    content: ', ';
}

.p-extended-address:after {
    content: '\A';
    white-space: pre;
}

.locale:after {
    content: '\A';
    white-space: pre;
}

.p-locality:after {
    content: ', ';
}

.p-region:after {
    content: '\00a0';
}

.p-tel:after {
    content: ' · ';
}

.p-country-name, .p-postal-code {
    position: absolute;
    left: -9999em;
}

/* ===== Social Media Icons ===== */
.social-media li {
    display: inline;
}

.card-social {
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
    display: flex;
    justify-content: center;
    gap: 1em;
}

.card-social i {
    font-size: 32px;
    color: #1A1A1A;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}

.card-social a:hover i {
    opacity: 1;
    color: #DD5433;
}

/* ===== Footer ===== */
footer {
    display: none;
}

/* ===== Utility Classes ===== */
.hidden {
    display: none !important;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* ===== Media Queries ===== */
@media only screen and (min-width: 35em) {
    /* Adjustments for larger screens */
}
