/*
Theme Name: Restaurant Theme
Theme URI:
Author: James Dodd
Author URI:
Description: Restaurant Platform Theme
Version: 1.0
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.1
License: GPL v2 or later
Text Domain: restaurant-theme
*/

body{

    margin:0;

    font-family:Arial, Helvetica, sans-serif;

}

.skip-link{

    position:absolute;

    left:-9999px;

    top:auto;

    width:1px;

    height:1px;

    overflow:hidden;

}

.skip-link:focus{

    position:fixed;

    top:20px;

    left:20px;

    width:auto;

    height:auto;

    overflow:visible;

    padding:12px 20px;

    background:#000;

    color:#fff;

    text-decoration:none;

    z-index:10000;

}

.screen-reader-text{

    position:absolute;

    width:1px;

    height:1px;

    padding:0;

    margin:-1px;

    overflow:hidden;

    clip:rect(0,0,0,0);

    white-space:nowrap;

    border:0;

}

/* ===========================================================
   VIDEO BACKGROUND
   =========================================================== */

.page-video{

    position:fixed;

    top:0;
    left:0;

    width:100vw;
    height:100vh;

    overflow:hidden;

    z-index:-2;

}

.page-video video{

    width:100%;
    height:100%;

    object-fit:cover;

}

.page-video-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:1;

}

/* ===========================================================
   HEADER
   =========================================================== */

.site-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.75);

    border-bottom:1px solid rgba(255,255,255,.25);

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-sizing:border-box;

    
    padding:60px 40px 10px 40px;

}

body:not(.has-bg-video) .site-header{

    background:rgba(240,240,240,.88);

    border-bottom:1px solid rgba(180,180,180,.6);

    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
}

.header-left{

    display:flex;

    flex-direction:column;

    justify-content:center;

    flex:1;

}

.primary-nav{

    width:100%;

}

.primary-menu{

    display:flex;

    gap:32px;

    list-style:none;

    margin:-40px 0 0 0;

    padding:0;

}

.primary-menu li{

    margin:0;

}

.primary-menu a{

    color:#111;

    text-decoration:none;

    font-family:"Josefin Slab", serif;
    
    font-size:clamp(17px, 1vw + 10px, 24px);
    

    font-weight:500;

    transition:color .25s ease;

}

.primary-menu a:hover{
    color:#0b8aa3;
    text-decoration:underline;
    text-underline-offset:4px;
}

.primary-menu a:focus-visible{
    color:#0b8aa3;
    outline:2px solid #0b8aa3;
    outline-offset:2px;
}

.header-title{

    margin:8px 0 0 0;

    padding:0;

}

.header-title{

    color:#3a3a3a;

    text-decoration:none;

     font-family: 'Avenir LT', Arial, Helvetica, sans-serif;

    font-size:20px;

    font-weight:300;

    line-height:1;

}

.header-subtitle{
    font-size:0.7em;
    font-weight:300;
    margin-left:8px;
}

.logo{

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-left:40px;
    
    transform: translateY(-20px);

}

.logo img{

    display:block;

    max-height:72px;

    width:auto;

}


.menu-toggle{

    display:none;

}

.mobile-menu{

    display:none;

}

body.menu-open{

    overflow:hidden;

}

@media (max-width:768px){

    .site-header{

        position:fixed;

        top:0;
        left:0;

        width:100%;

        padding:50px 20px 20px 20px;

        box-sizing:border-box;

        display:block;

    }

    .primary-nav{

        display:none;

    }

    .header-left{

        display:block;

    }

    .header-title{

        margin:0;

        padding:0;

    }

    .header-title a{

        display:block;

        font-size:20px;

        color:#3a3a3a;

    }

    .menu-toggle{

        display:block;

        position:absolute;

        top:50px;

        right:20px;

        background:none;

        border:0;

        padding:0;

        cursor:pointer;

        font-size:34px;

        color:#333;

        line-height:1;

    }

    .logo{

        display:flex;

        justify-content:center;

        margin:20px 0 0 0;

    }

    .logo img{

        max-height:72px;

        width:auto;

    }

    .mobile-menu{

        position:fixed;

        inset:0;

        display:block;

        background:rgba(255,255,255,.96);

        z-index:5000;

        padding:40px;

        opacity:0;

        visibility:hidden;

        pointer-events:none;

        transition:opacity .25s ease, visibility .25s ease;

    }

    .mobile-menu.open{

        opacity:1;

        visibility:visible;

        pointer-events:auto;

    }

    .menu-close{

        position:absolute;

        top:50px;

        right:30px;

        background:none;

        border:0;

        font-size:40px;

        color:#333;

        cursor:pointer;

        line-height:1;

    }

    .mobile-menu-items{

        list-style:none;

        margin:120px 0 0 0;

        padding:0;

    }

    .mobile-menu-items li{

        margin:22px 0;

    }

    .mobile-menu-items a{

        display:block;

        font-family:"Josefin Slab", serif;

        font-size:32px;

        color:#333;

        text-decoration:none;

        padding:8px 0;

    }

    .mobile-menu-items a:hover,
    .mobile-menu-items a:focus{

        color:#0b8aa3;

        outline:none;

    }

}

/* ===========================================================
   PAGE FOOTER
   =========================================================== */

.site-footer{

    background:rgba(255,255,255,.65);

    border-top:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);

    font-family:"Josefin Slab", serif;
    
    color:#333;

    padding:20px 0 40px;

}

.footer-inner{

    display:table;

    margin:0 auto;

    padding:0 40px;

}


.footer-menu{

    padding-bottom:20px;

}

.footer-content{

    display:flex;

    align-items:stretch;

    justify-content:center;

    gap:45px;

}

.footer-left{

    flex:0 0 auto;

}

.footer-center{

    display:flex;

    justify-content:center;

    align-items:center;

    flex:0 0 auto;

}

.footer-right{

    flex:0 0 auto;

    text-align:right;

}

.footer-center img{

    max-width:140px;

    height:auto;

}

.footer-title{

    text-align:center;

    padding:40px 0 20px;

}


.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:10px;

    padding-top:5px;

    border-top:1px solid rgba(0,0,0,.12);

}


.footer-title{

    margin:0 0 4px 0;

    padding:0;

    line-height:1.1;

    font-size:22px;

    font-weight:600;

}

.footer-paragraph{

    margin:0;

    padding:0;

    line-height:1.25;

}

.footer-section{

    margin-top:16px;

}

.footer-left{

    text-align:left;

}

.footer-right{

    text-align:right;

}

.footer-center{

    text-align:center;

}

.footer-name{

    text-align:center;

    margin:15px 0 10px;

}

.footer-name-title{

    margin:0;

    padding:0;

    font-family:"Josefin Slab", serif;

    font-size:30px;

    font-weight:600;

    line-height:1;

}

.footer-social{

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:18px;

}

.footer-social a{

    display:flex;

    align-items:center;

    justify-content:center;

    color:rgba(51,51,51,.55);

    text-decoration:none;

    transition:color .25s ease;

}

.footer-social i{

    font-size:18px;

    line-height:1;

}

.footer-social a:hover{

    color:#0b8aa3;

}

.footer-social img{

    width:20px !important;

    height:20px !important;

    display:inline-block;
    
    transition:filter .25s ease;
}

.footer-social a:hover img{

    filter: brightness(0) saturate(100%) invert(42%) sepia(72%) saturate(703%) hue-rotate(148deg) brightness(95%) contrast(94%);
}


.footer-menu-list{

    display:flex;

    justify-content:center;

    gap:30px;

    margin:0;

    padding:0;

    list-style:none;

}

.footer-menu-list li{

    margin:0;

    padding:0;

}

.footer-menu-list a{

    color:#000;

    text-decoration:none;

    font-family:"Josefin Slab", serif;

    font-size:18px;

    font-weight:400;

    transition:color .25s ease;

}

.footer-menu-list a:hover{
    color:#0b8aa3;
    text-decoration:underline;
    text-underline-offset:4px;
}

.footer-menu-list a:focus-visible{
    color:#0b8aa3;
    outline:2px solid #0b8aa3;
    outline-offset:2px;
}

.footer-paragraph a{
    color: inherit;              /* Use the same color as the surrounding text */
    text-decoration: none;       /* Remove underline */
    transition: color .25s ease;
}

.footer-paragraph a:hover,
.footer-paragraph a:focus-visible{
    color: #0b8aa3;              /* Same hover color as your navigation */
    text-decoration: none;
}

.footer-paragraph a:focus-visible{
    outline: 2px solid #0b8aa3;
    outline-offset: 2px;
}


@media (max-width:768px){

    .footer-menu{

        display:none;

    }

    .footer-content{

        display:flex;

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:30px;

    }

    .footer-left,
    .footer-center,
    .footer-right{

        flex:none;

        width:auto;

        text-align:center;

    }

    .footer-center{

        display:block;

    }
    
    .footer-center img{

        max-width:90px;

    }

    .footer-name{

        margin:35px 0 20px;

    }

    .footer-bottom{

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:14px;

        border-top:0;

        padding-top:20px;

    }

    .footer-social{

        order:1;

        justify-content:center;

        gap:14px;

    }

    .footer-social i{

        font-size:15px;

    }

    .footer-social img{

        width:15px;

        height:15px;

    }

    .footer-copyright{

        order:2;

        text-align:center;

    }

}


body:not(.has-bg-video) footer{

    background: rgba(240,240,240,.88);

    border-top: 1px solid rgba(180,180,180,.6);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ===========================================================
   PAGE CONTENT
   =========================================================== */

main{

    padding-top:180px;

    position:relative;

    z-index:2;

}


h2.main-page-link {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 15px 0px;
    border-radius: 6px;
}


/* =========================
   Restaurant Menu
========================= */

.restaurant-menu {
    max-width:1200px;
    margin:0 auto;
    padding:20px;
}




/* Logo + Dinner container */
.restaurant-menu .menu-column-header {

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    margin-bottom:40px;

}


/* The two halves */
.restaurant-menu .menu-title-side,
.restaurant-menu .menu-logo-side {

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

}


/* Fish logo */
.restaurant-menu .menu-logo {

    width:180px;

    height:auto;

}


/* Dinner text */
.restaurant-menu .menu-title {

    margin:0;

    font-family:Arial, serif;

    font-size:38px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#ffffff;

    text-align:center;


    -webkit-text-stroke:2px #4f8f8b;


    text-shadow:
        2px 2px 0 #4f8f8b,
        4px 4px 0 #3a7773,
        6px 6px 0 #285c58;

}


/* Two column layout */

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.menu-columns.one-column{
    grid-template-columns:1fr;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}



/* =========================
   Sections
========================= */
/* ==========================
   MENU SECTION CONTAINERS
========================== */

.menu-section {

    position: relative;

    border: 2px solid #B2DFD4;

    border-radius: 18px;

    padding: 35px 20px 20px;

    margin-bottom: 10px;

    background: #ffffff;

}



.menu-section-title {

    position: absolute;

    top: -18px;

    left: 50%;

    transform: translateX(-50%);

    background: #ffffff;

    color: #000;

    padding: 5px 22px;

    font-family: Arial, sans-serif;

    text-align: center;

    font-size: 22px;

    font-weight: 700;

    white-space: nowrap;
    
    display:flex;
    
    align-items:center;

    gap:8px;
    
    box-shadow:none;
    
    border-radius:12px 12px 0 0;
    
}

.style-filled .menu-section-title,
.style-featured .menu-section-title {

    background: #DAF0EA;
     color:#000;
    border-color: #B2DFD4;

}

.menu-section-content {

    width: 100%;

}




.style-outline {

    background: #ffffff;

    border-color: #B2DFD4;

}


.style-filled {

    background: #DAF0EA;

    border-color: #B2DFD4;

    color: #000;

}



.style-featured {

    background: #DAF0EA;

    border-color: #B2DFD4;

    color: #000;

}

.style-orange-outline{
    background:#fff;
    border-color:#E67E22;
}

.style-orange-outline .menu-section-title{
    background:#fff;
    border-color:#E67E22;
    box-shadow:0 0 0 2px #fff;
}

.style-orange-outline .menu-item-row,
.style-orange-outline .menu-option-row{
    border-bottom:1px solid #E67E22;
}


.style-orange-featured{
    background:#FFF4E8;
    border-color:#E67E22;
}

.style-orange-featured .menu-section-title{
    background:#FFF4E8;
    border-color:#E67E22;
    box-shadow:0 0 0 2px #FFF4E8;
}

.style-orange-featured .menu-item-row,
.style-orange-featured .menu-option-row{
    border-bottom:1px solid #E67E22;
}

.menu-section-note {

    text-align: center;

    font-style: italic;

    margin-bottom: 20px;
    
    color:#000;

}




/* =========================
   Items
========================= */


.menu-item {
    margin-bottom: 18px;
    color:#000000;
}


.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    border-bottom:1px solid #B2DFD4;
}


.menu-item-name {
    font-weight: bold;
    font-size: 16px;
    color:#000000;
}

.menu-item-author{
    font-size:13px;
    font-style:italic;
    font-weight:400;
    color:#666;
    margin-right:18px;
}


.menu-item-price {
    white-space: nowrap;
    font-weight: bold;
    color:#000000;
}


.menu-item-description {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 5px;
    margin-right:40px;
    color:#222222;
}

.menu-item-filled {

    background: #DAF0EA;

    border-radius: 12px;

    padding: 12px;

}

.menu-item-grid{
    display:flex;
    flex-wrap:wrap;
    column-gap:18px;
    row-gap:2px; 
}

.menu-item-grid-2 .menu-item{
    flex:0 0 calc(50% - 15px);
}

.menu-item-grid-3 .menu-item{
    flex:0 0 calc(33.333% - 20px);
}

.menu-item-grid-4 .menu-item{
    flex:0 0 calc(25% - 23px);
}


/* =========================
   Badges
========================= */

.menu-item-badges {
    margin-top: 8px;
}


.menu-badge {

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-left:6px;

    padding:2px 7px;

    border-radius:4px;

    font-size:11pt;

    font-weight:bold;

    vertical-align: middle;
    
    line-height:1;

    transform: translateY(-1px);

}


/* Gluten Free */

.menu-badge-gf {

    background:#B2DFD4;

    color:#000;

}


/* House Special */

.menu-badge-hs {

    background:#F6A27F;

    color:#000;

}

/* =========================
   Options
========================= */

.menu-options {
    margin-top: 20px;
     color:#000;
}


.menu-options-title {
    text-align: center;
    color:#000;
    margin-bottom:8px;
    
    align-items: center;
    
    width: 100%;
}


.menu-option-row {
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
     color:#000;
}


.menu-addon {
    display:flex;
    justify-content:space-between;
     color:#000;
}

.restaurant-menu .mobile-header {
    display:none;
}

.menu-option-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.menu-option-grid-2 .menu-option-card{
    flex:0 1 calc(50% - 10px);
}

.menu-option-grid-3 .menu-option-card{
    flex:0 1 calc(33.333% - 14px);
}

.menu-option-grid-4 .menu-option-card{
    flex:0 1 calc(25% - 15px);
}

.menu-option-card{
    text-align:center;
}

.menu-option-card .menu-option-name{
    font-weight:bold;
    color:#000;
}

.menu-option-card .menu-option-price{
    margin-top:4px;
    font-weight:bold;
    color:#000;
}

.menu-option-card .menu-badge{
    margin-left:4px;
}

/* 2 Column Option Layout */

.menu-option-grid-2{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.menu-option-grid-2 .menu-option-row{
    flex:0 0 calc(50% - 10px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-sizing:border-box;
}

.menu-option-grid-2 .menu-option-name{
    display:flex;
    align-items:center;
    gap:4px;
    flex:1;
    text-align:left;
    font-weight:bold;
    color:#000;
}

.menu-option-grid-2 .menu-option-price{
    flex:0 0 auto;
    margin-left:15px;
    text-align:right;
    white-space:nowrap;
    font-weight:bold;
    color:#000;
}


/* =========================
   Mobile
========================= */

@media(max-width:768px){

    .menu-columns {
        grid-template-columns:1fr;
    }


    
    .restaurant-menu .menu-logo {

        width:100px;

    }
    
    .restaurant-menu .mobile-header {
        display:flex;
    }
}


/* =========================
   MENU FOOTER
========================= */

.menu-footer {

    width:100%;

    margin-top:20px;

}


.menu-footer-top {

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    min-height:25px;

}


.menu-footer-legend {

    text-align:center;

    font-size:12px;

    font-weight:bold;

    color:#000;

}


.menu-footer-legend-item {

    margin:0 4px;

}


.menu-footer-revision {

    position:absolute;

    right:10px;

    font-size:11px;

    color:#000;

}


.menu-footer-bar {

    width:100%;

    box-sizing:border-box;

    background:#B2DFD4;

    padding:5px 10px;

    text-align:center;

    font-size:12px;

    font-weight:bold;

    color:#000;

}


/* ==========================
   Admin Menu Controls
========================== */

.restaurant-menu.admin-menu .menu-admin-controls {
    display:flex;
    gap:5px;
    justify-content:flex-end;
    margin-top:8px;
}


.restaurant-menu.admin-menu .menu-admin-controls button {
    width:28px;
    height:24px;
    padding:0;

    font-size:14px;
    line-height:1;

    cursor:pointer;
}

.restaurant-menu.admin-menu .menu-item {
    position:relative;
}

.restaurant-menu.admin-menu .menu-section-title {
    position:relative;
}

.menu-item-editor {

    position: fixed;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 450px;
    max-width: 90%;

    background: white;

    padding: 25px;

    border-radius: 8px;

    box-shadow: 0 10px 40px rgba(0,0,0,.4);

    z-index: 999999;

}


.menu-item-editor label {

    display:block;

    margin-top:15px;

    font-weight:bold;

}


.menu-item-editor input,
.menu-item-editor textarea {

    width:100%;

    padding:8px;

    box-sizing:border-box;

}


.menu-item-editor textarea {

    height:auto;

}

.editor-badges {
    display: flex;
    gap: 20px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.editor-badges label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==========================
   Option Group Editor Popup
========================== */

.menu-option-editor {

    position: fixed;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 450px;

    max-width: 90%;

    background: #ffffff;

    padding: 25px;

    border-radius: 8px;

    box-shadow: 0 10px 40px rgba(0,0,0,.4);

    z-index: 999999;

}


.menu-option-editor h3 {

    margin-top:0;

}


.menu-option-editor label {

    display:block;

    margin-top:15px;

    font-weight:bold;

}


.menu-option-editor input:not([type="checkbox"]) {

    width:100%;

    padding:8px;

    box-sizing:border-box;

}
.menu-option-editor .editor-badges input[type="checkbox"] {
    width:auto;
    padding:0;
}


.menu-option-editor button {

    margin-top:20px;

    padding:8px 16px;

    cursor:pointer;

}

.menu-option-group-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-option-group-controls button {
    cursor: pointer;
}

.menu-option-add-item {
    margin-top: 15px;
    margin-bottom: 15px;
}
.option-group-label {
    color: #0073aa;
    font-size: 0.9em;
    font-weight: normal;
}

.menu-section-controls {

    display:flex;

    align-items:center;

    gap:5px;

}


.menu-section-controls button {

    cursor:pointer;

}

.section-label {

    color:#0073aa;

    font-size:.9em;

    font-weight:normal;

}

.menu-admin-toolbar {

    margin-bottom:20px;
    display:flex;
    gap:5px;

}

.menu-admin-toolbar button {

    cursor:pointer;

}

#footer-message {
    width:100%;
    min-height:80px;
    resize:vertical;
}


/* ==========================================
   Reservations
========================================== */

.offh-reservations{

    background:#f2f1ff;
    border-bottom:2px solid #d9d0ff;

    padding:35px 20px 30px;

    text-align:center;

}

.offh-reservations-title{

    margin:0 0 18px;

    font-family:"Josefin Slab", serif;

    font-size:42px;

    font-weight:400;

    color:#222;

    line-height:1.1;

}

.offh-reservations-button{

    margin:0;

}

.offh-reservations-button a{

    display:inline-block;

    padding:12px 32px;

    background:#4b5d59;

    color:#fff;

    text-decoration:none;

    font-family:"Josefin Slab", serif;

    font-size:22px;

    font-weight:600;

    border-radius:3px;

    transition:background .25s ease;

}

.offh-reservations-button a:hover,
.offh-reservations-button a:focus-visible{

    background:#3a4946;

    outline:2px solid #ffffff;

    outline-offset:3px;

}


/* ==========================================
   Menu Navigation
========================================== */

.offh-menus{

    padding:55px 20px;

    text-align:center;

}

.offh-menus h2{

    margin:0 0 45px;

    font-family:"Josefin Slab", serif;

    font-size:72px;

    font-weight:700;

    color:#111;

}

.offh-page-links-list{

    display:flex;

    justify-content:center;

    gap:120px;

    list-style:none;

    margin:0;

    padding:0;

}

.offh-page-links-list li{

    margin:0;

    padding:0;
    
    border-bottom:2px solid transparent;
    
    transition:border-color .25s ease;
}

.offh-page-links-list a{

    color:#111;

    text-decoration:none;

    text-decoration-thickness:1px;

    text-underline-offset:6px;

    font-family:"Josefin Slab", serif;

    font-size:28px;

    font-weight:400;

    transition:color .25s ease;

}

.offh-page-links-list a.selected{

    font-weight:700;
    
 
}

.offh-page-links-list a:hover,
.offh-page-links-list a:focus-visible{

    color:#0b8aa3;
  

}

.offh-page-links-list li:hover{

    border-bottom-color:#111;

}

.offh-page-links-list li.selected{

    border-bottom-color:#111;

}
.menu-column-full{
    grid-column:1 / -1;
}

.editor-row{
    display:flex;
    gap:15px;
}

.editor-column{
    flex:1;
}

.menu-item-image{
    float:left;
    width:48px;
    height:48px;
    margin:0 12px 8px 0;
}

.menu-item-has-image .menu-item-description{
    margin-left:60px;
}

.menu-item-subprice{
    float:right;
    white-space:nowrap;
    margin-left:20px;
    font-size:.9em;
    font-weight:500;
    color:#555;
}

.menu-item-description-has-subprice{
    margin-right:0 !important;
}


.menu-heading{
    margin:8px 0 10px;
    color:#000;
}

.menu-heading-title{
    font-weight:bold;
    line-height:1.2;
}

.menu-heading-description{
    margin-top:3px;
    color:#555;
}


/* ==========================================
   H1
========================================== */

.menu-heading-h1{
    text-align:center;
    margin:8px 0;
}

.menu-heading-h1 .menu-heading-title{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;

    font-family:Arial, serif;

    font-size:36px;
    font-weight:700;

    letter-spacing:2px;

    color:transparent;

    -webkit-text-stroke:2.5px #4F8F8B;

    text-shadow:none;
}

.menu-heading-h1 .menu-heading-title::before,
.menu-heading-h1 .menu-heading-title::after{

    content:"";

    width:140px;

    height:2px;

    background:#4F8F8B;

    flex:1;
    
    min-width:30px; 
}

/* ==========================================
   H2
========================================== */

.menu-heading-h2{
    text-align:center;
    margin:6px 0 2px;
}

.menu-heading-h2 .menu-heading-title{

    font-family:"Avenir LT", Arial, Helvetica, sans-serif;

    font-size:28px;

    font-weight:700;

    color:#4F9F9B;

    text-align:center;

    text-transform:none;

    letter-spacing:0;

    line-height:1.1;
}
/* ==========================================
   H3
========================================== */

.menu-heading-h3{
    text-align:center;
    margin:8px 0;
}

.menu-heading-h3 .menu-heading-title{

    font-family:Arial, serif;

    font-size:44px;          /* try 32-34px */
    font-weight:700;

    letter-spacing:2px;

    color:#ffffff;

    -webkit-text-stroke:2px #4f8f8b;

    text-shadow:
        2px 2px 0 #4f8f8b,
        4px 4px 0 #3a7773,
        6px 6px 0 #285c58;
}
/* ==========================================
   H4
========================================== */

.menu-heading-h4{
    margin:4px 0 6px;
}

.menu-heading-h4 .menu-heading-title{

    font-family:"Avenir LT", Arial, Helvetica, sans-serif;

    font-size:22px;

    font-style:normal;

    font-weight:600;

    color:#559F9B;

    text-transform:none;

    letter-spacing:0;

    line-height:1.1;
}

/* ==========================================
   H5
========================================== */
.menu-heading-h5{
    margin:3px 0 5px;
    padding-left:18px;
}

.menu-heading-h5 .menu-heading-title{

    font-family:"Avenir LT", Arial, Helvetica, sans-serif;

    font-size:19px;

    font-style:normal;

    font-weight:600;

    color:#72BDBA;

    text-transform:none;

    letter-spacing:0;

    line-height:1.1;

    text-align:left;
}


.about-hero-image{

    background-image:url("/wp-content/uploads/2026/07/aboutstrip.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    min-height:50px;
    
     padding:20px 0;

    display:flex;

    justify-content:center;

    align-items:center;
}

.about-hero-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(255,255,255,.25); /* Increase to .35 or .45 if you want it lighter */

    z-index:1;
}

.about-hero-title{

    width:100%;

    background:rgba(255,255,255,.75);

    padding:35px 20px;

    text-align:center;

    box-sizing:border-box;
}

.about-hero-title h1{

    margin:0;

    font-family:"Josefin Slab", serif;

    font-size:clamp(48px,4vw,72px);

    font-weight:300;

    color:#111;

    line-height:1.1;
}

.about-gallery-text{

    color:#fff;

    font-family:"Josefin Slab", serif !important;
    
    font-weight:bold;
    
     font-size:clamp(48px,4vw,72px);

    padding:20px 0;
}

.shopping-banner-top{
    position:relative;
}

.shopping-banner-top::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:0;
}

.shopping-banner-top *{
    position: relative;
    z-index: 2;
}

.offh-event-page{
    max-width:1200px;
      margin:150px auto 40px;
      
    padding:0 0px;
}

.offh-event-hero{
    max-height:500px;
    overflow:hidden;
    border-radius:12px;
}

.offh-event-hero img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.offh-event-details{
    margin:30px 0;
}

.offh-detail{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.offh-detail:last-child{
    margin-bottom:0;
}

.offh-icon{
    font-size:26px;
    width:32px;
    flex-shrink:0;
}

.offh-detail span:last-child{
    font-size:22px;
    line-height:1.4;
}

.offh-event-content h1{
    font-size:48px;
    margin-bottom:25px;
}
.offh-event-button{
    display:inline-block;
    background:#008080;
    color:#fff;
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}

.offh-event-button:hover{
    background:#006666;
}

.offh-event-description{
    font-size:18px;
    line-height:1.7;
}

.offh-event-details,
.offh-event-description-box{
    background:rgba(0,0,0,.65);
    border:1px solid rgba(255,255,255,.15);
    border-radius:10px;
    padding:24px 30px;
    margin:35px 0;
}

.offh-event-map{
    display:flex;
    justify-content:center;
    margin:45px 0;
}

.offh-event-map iframe{
    width:min(900px,100%);
    height:400px;
    border:0;
    border-radius:12px;
}
.offh-event-map iframe{
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}
.offh-event-content{
    padding:30px 40px 40px;
}

.offh-reserve-button{
    text-align:center;
    margin:40px 0 20px;
}

.offh-btn{
    display:inline-block;
    padding:16px 42px;
    background:#fff;
    color:#000;
    border:2px solid #000;
    border-radius:9999px;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    line-height:1;
    transition:all .25s ease;
}

.offh-btn:hover,
.offh-btn:focus-visible{
    background:#000;
    color:#fff;
    border-color:#000;
    transform:translateY(-2px);
}

/* ==========================================
   Calendar Container
========================================== */

.offh-calendar-page{
    max-width:1400px;
    margin:170px auto 60px;
    padding:0 20px;
    color:#fff;
}

/* ==========================================
   Header
========================================== */

.calendar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.calendar-header h1{
    margin:0;
    font-size:42px;
    font-weight:700;
}

/* ==========================================
   Navigation
========================================== */

.calendar-prev,
.calendar-next{
    color:#fff;
    text-decoration:none;
    border:1px solid #666;
    padding:10px 18px;
    border-radius:6px;
    transition:.25s;
}

.calendar-prev:hover,
.calendar-next:hover{
    border-color:#00b3b3;
    color:#00b3b3;
}

/* ==========================================
   Weekday Header
========================================== */

.calendar-weekdays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    margin-bottom:10px;
}

.calendar-weekdays div{
    text-align:center;
    font-weight:700;
    padding:15px;
    background:#202020;
    border:1px solid #333;
}

/* ==========================================
   Calendar Grid
========================================== */

.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:8px;
}

/* ==========================================
   Empty Cells
========================================== */

.calendar-empty{
    min-height:170px;
}

/* ==========================================
   Day Cell
========================================== */

.calendar-day{
    min-height:170px;
    background:#181818;
    border:1px solid #333;
    border-radius:8px;
    padding:12px;
}

/* ==========================================
   Day Number
========================================== */

.day-number{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

/* ==========================================
   Events Area
========================================== */

.day-events{
    display:flex;
    flex-direction:column;
    gap:6px;
}

/* ==========================================
   Today
========================================== */

.calendar-day.today{
    border:2px solid #00b3b3;
}

/* ==========================================
   Past Days
========================================== */

.calendar-day.past{
    opacity:.45;
}

/* ==========================================
   Mobile
========================================== */

@media (max-width:900px){

    .calendar-weekdays{
        display:none;
    }

    .calendar-grid{
        grid-template-columns:1fr;
    }

    .calendar-day,
    .calendar-empty{
        min-height:auto;
    }
}

.calendar-event{
    display:block;
    margin:4px 0;
    padding:4px 6px;
    background:#1f6d73;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:.85rem;
    line-height:1.3;
}

.calendar-event:hover{
    background:#28929a;
}

.event-time{
    font-weight:700;
}

.featured-artists{
    margin-top:70px;
}

.featured-artists h2{
    text-align:center;
    font-family:'Josefin Sans', sans-serif;
    font-size:42px;
    font-weight:400;
    margin-bottom:40px;
}


.artist-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:35px;
}


.artist-card{
    display:flex;
    background:rgba(255,255,255,.75);
    overflow:hidden;
    min-height:260px;
}


.artist-card img{
    flex:0 0 280px;     /* Increase to 300px or 320px if desired */
    width:280px;
    height:260px;
    object-fit:cover;
}



.artist-card-content{
    width:55%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:35px;
}


.artist-card h3{
    font-family:'Josefin Sans', sans-serif;
    font-size:38px;
    font-weight:300;
    line-height:1.1;
    margin:0 0 35px;
    color:#222;
}


.artist-button{
    display:inline-block;
    width:120px;
    padding:12px 20px;
    text-align:center;
    background:#526b52;
    color:#fff;
    font-family:'Josefin Sans', sans-serif;
    text-decoration:none;
    transition:.3s ease;
}


.artist-button:hover{
    background:#000;
    color:#fff;
}

.event-not-selected{
    background:#d3d3d3;
    color:#666;
}

.artist-playing{
    background:#1f6d73;
    color:#fff;
    border:2px solid #1f6d73;
}

/* Tablet */
@media(max-width:900px){

    .artist-grid{
        grid-template-columns:1fr;
    }
    .artist-card img{
        object-fit:contain !important;
        object-position:top center !important;
        height:auto !important;
        width:100%;
    }
    

}



/* Phone */
@media(max-width:600px){

    .artist-card{
        flex-direction:column;
    }


   .artist-card img{
        object-fit:contain !important;
        object-position:top center !important;
        height:auto !important;
        width:100%;
    }


    .artist-card-content{
        width:100%;
        text-align:center;
        padding:30px;
    }


    .artist-card h3{
        font-size:32px;
    }
    
    .artist-button{
        display:block;
        margin:0 auto;
    }


}

.mobile-weekday{
    display:none;
}

@media (max-width:768px){

    .mobile-weekday{
        display:inline;
        margin-left:6px;
        font-size:.8em;
        font-weight:600;
        opacity:.85;
    }

}