/* ==========================================
   PATIOTIME THEME - FINE DINING RESTAURANT
   Adapted from PatioTime Demo 12
   ========================================== */

/* === CSS VARIABLES === */
:root {
    --primary-color: #baa383;
    --btn-color: #000000;
    --accent-text: #baa383;
    --text-light: #fff;
    --text-dark: #0a0a0a;
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --hf-weight: 100;
    --hf-letter-spacing: 0.1em;
    --hf-text-transform: none;
    --link-text-decoration-style: none;
    --transition: all 0.3s ease;
    --font-family-heading: 'Cormorant Garamond', Georgia, serif;
    --font-family-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* === GLOBAL RESETS === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--hf-weight);
    letter-spacing: var(--hf-letter-spacing);
    line-height: 1.2;
    margin: 0 0 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

.pt-title {
    font-family: var(--font-family-heading);
    font-weight: var(--hf-weight);
    letter-spacing: var(--hf-letter-spacing);
}

.pt-subtitle {
    font-family: var(--font-family-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.color-primary {
    color: var(--primary-color) !important;
}

.color-white {
    color: #fff !important;
}

/* === HEADER STYLES === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.overlap-header {
    position: absolute;
    width: 100%;
}

.site-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    max-width: 100%;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding img {
    height: 60px;
    width: auto;
}

.site-branding .site-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #fff;
    margin: 0;
    text-decoration: none;
}

.site-branding a:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 10px 15px;
    font-family: var(--font-family-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--primary-color);
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.header-controls a {
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-controls a:hover {
    color: var(--primary-color);
}

.header-phone i {
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

/* === HERO SECTION === */
.pt-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.pt-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pt-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.pt-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
}

.pt-hero-subtitle {
    font-family: var(--font-family-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pt-hero-title {
    font-family: var(--font-family-heading);
    font-size: 5.5rem;
    font-weight: 100;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.pt-hero-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pt-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.pt-btn {
    display: inline-block;
    font-family: var(--font-family-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 18px 40px;
    border: 1px solid;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.pt-btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pt-btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.pt-btn-outline {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.pt-btn-outline:hover {
    background-color: #fff;
    color: var(--bg-dark);
}

.pt-btn-dark {
    background-color: var(--bg-dark);
    border-color: var(--bg-dark);
    color: #fff;
}

.pt-btn-dark:hover {
    background-color: transparent;
    color: var(--bg-dark);
}

.pt-btn-underline {
    padding: 0;
    border: none;
    background: none;
    position: relative;
    color: inherit;
}

.pt-btn-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.pt-btn-underline:hover::after {
    transform: scaleX(0);
}

/* === SECTION STYLES === */
.pt-section {
    padding: 100px 0;
}

.pt-section-sm {
    padding: 60px 0;
}

.pt-section-lg {
    padding: 140px 0;
}

.pt-section-dark {
    background-color: var(--bg-dark);
    color: #fff;
}

.pt-section-light {
    background-color: var(--bg-light);
}

.pt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pt-container-sm {
    max-width: 1000px;
}

.pt-container-lg {
    max-width: 1600px;
}

/* === TITLE WRAP === */
.pt-title-wrap {
    margin-bottom: 40px;
}

.pt-title-wrap.text-center {
    text-align: center;
}

.pt-title-wrap .pt-subtitle-wrap {
    margin-bottom: 15px;
}

.pt-title-wrap .pt-title {
    margin-bottom: 15px;
}

.pt-title-wrap .pt-title-text {
    font-size: 1rem;
    line-height: 1.8;
    color: inherit;
    opacity: 0.8;
}

/* === FOOD MENU STYLES === */
.pt-food-menu {
    padding: 20px 0;
}

.pt-food-menu-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-food-menu-item:last-child {
    border-bottom: none;
}

.pt-food-menu-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 8px;
}

.pt-food-menu-title {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    flex-shrink: 0;
}

.pt-food-menu-lines {
    flex-grow: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        currentColor 0px,
        currentColor 2px,
        transparent 2px,
        transparent 6px
    );
    opacity: 0.3;
    margin: 0 10px;
}

.pt-food-menu-price {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pt-food-menu-details {
    font-size: 0.875rem;
    color: inherit;
    opacity: 0.7;
    margin: 0;
}

/* Light background menu */
.pt-section-light .pt-food-menu-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* === FEATURED MENU SECTION (PatioTime Style) === */
.pt-featured-menu-section {
    background-color: #0a0a0a;
    padding: 100px 0 120px;
    position: relative;
}

.pt-featured-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.pt-featured-menu-title {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.pt-featured-menu-title h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.15em;
    line-height: 1.1;
    margin: 0;
}

.pt-featured-menu-grid {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 50px;
    align-items: start;
    padding-top: 20px;
}

.pt-menu-column {
    padding-top: 0;
}

.pt-menu-category-header {
    text-align: center;
    margin-bottom: 35px;
    padding: 15px 0;
    position: relative;
}

.pt-menu-category-header::before,
.pt-menu-category-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 20%, var(--primary-color) 80%, transparent 100%);
}

.pt-menu-category-header::before {
    top: 0;
}

.pt-menu-category-header::after {
    bottom: 0;
}

.pt-menu-category-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.25em;
    margin: 0;
}

.pt-menu-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pt-menu-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pt-menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pt-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 8px;
}

.pt-menu-item-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    margin: 0;
    flex: 1;
}

.pt-menu-item-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.pt-menu-item-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* Center Image */
.pt-menu-center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.pt-menu-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
}

.pt-menu-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    display: block;
    transition: transform 0.5s ease;
}

.pt-menu-image-wrapper:hover img {
    transform: scale(1.05);
}

.pt-menu-image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--primary-color);
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .pt-featured-menu-grid {
        grid-template-columns: 1fr 320px 1fr;
        gap: 40px;
    }
    
    .pt-menu-image-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .pt-featured-menu-section {
        padding: 60px 0 80px;
    }
    
    .pt-featured-menu-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 40px;
    }
    
    .pt-featured-menu-title h2 {
        font-size: 3rem;
    }
    
    .pt-featured-menu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 0;
    }
    
    .pt-menu-center {
        order: -1;
        padding-top: 0;
    }
    
    .pt-menu-image-wrapper {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .pt-featured-menu-container {
        padding: 0 20px;
    }
    
    .pt-featured-menu-title h2 {
        font-size: 2.5rem;
    }
    
    .pt-menu-item-name,
    .pt-menu-item-price {
        font-size: 1rem;
    }
}

/* === CTA CARDS === */
.pt-cta {
    position: relative;
    overflow: hidden;
    display: block;
}

.pt-cta-wrap {
    position: relative;
}

.pt-cta-img {
    position: relative;
    overflow: hidden;
}

.pt-cta-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.pt-cta:hover .pt-cta-img img {
    transform: scale(1.05);
}

.pt-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.pt-cta-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.pt-cta.text-center .pt-cta-content {
    text-align: center;
}

.pt-cta-title {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.pt-cta-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.with-inner-border .pt-cta-wrap::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 2;
    pointer-events: none;
}

/* === LOCATION CARDS === */
.pt-location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pt-location-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.pt-location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-location-card:hover img {
    transform: scale(1.05);
}

.pt-location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.pt-location-name {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

/* === NEW LOCATIONS SECTION (PatioTime Style) === */
.pt-locations-section {
    position: relative;
    overflow: hidden;
}

.pt-locations-bg-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.pt-locations-bg-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.pt-locations-top {
    position: relative;
    padding: 80px 20px 60px;
    z-index: 1;
}

.pt-locations-top img {
    display: none;
}

.pt-locations-overlay {
    display: none;
}

.pt-locations-content {
    position: relative;
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pt-locations-icon {
    margin-bottom: 30px;
}

.pt-locations-icon svg {
    width: 60px;
    height: 70px;
}

.pt-locations-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.pt-locations-title em {
    font-style: italic;
}

.pt-locations-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin: 0;
}

.pt-locations-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 60px 100px;
    position: relative;
    z-index: 1;
}

.pt-location-card-new {
    flex: 1;
    max-width: 300px;
    text-decoration: none;
}

.pt-location-card-inner {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px;
}

.pt-location-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-location-card-new:hover .pt-location-card-inner img {
    transform: scale(1.08);
}

.pt-location-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.pt-location-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    text-align: center;
}

.pt-location-card-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.3;
}

.pt-location-card-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(186, 163, 131, 0.5);
    border-radius: 15px;
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.pt-location-card-new:hover .pt-location-card-border {
    border-color: rgba(186, 163, 131, 0.9);
}

/* Responsive for new locations */
@media (max-width: 1200px) {
    .pt-locations-cards {
        padding: 40px 40px 80px;
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .pt-locations-top {
        padding: 60px 20px 50px;
    }
    
    .pt-locations-title {
        font-size: 2rem;
    }
    
    .pt-locations-cards {
        flex-wrap: wrap;
        padding: 30px 20px 60px;
    }
    
    .pt-location-card-new {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .pt-locations-top {
        padding: 50px 15px 40px;
    }
    
    .pt-locations-title {
        font-size: 1.5rem;
    }
    
    .pt-locations-cards {
        padding: 20px 15px 50px;
        gap: 10px;
    }
    
    .pt-location-card-new {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    
    .pt-location-card-inner {
        border-radius: 12px;
    }
    
    .pt-location-card-border {
        border-radius: 8px;
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
    }
    
    .pt-location-card-name {
        font-size: 1rem;
    }
}

/* === GALLERY GRID === */
.pt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pt-gallery-grid.cols-2 {
    grid-template-columns: 1fr 2fr 1fr;
}

.pt-gallery-item {
    position: relative;
    overflow: hidden;
}

.pt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pt-gallery-item:hover img {
    transform: scale(1.05);
}

/* === GALLERY MENU GRID SECTION (PatioTime Style) === */
.pt-gallery-menu {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
    min-height: 600px;
}

.pt-gallery-menu-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0;
}

.pt-gallery-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.pt-gallery-menu-item-image {
    background: #1a1a1a;
}

.pt-gallery-menu-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-gallery-menu-item-image:hover img {
    transform: scale(1.08);
}

.pt-gallery-menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.pt-gallery-menu-item-image:hover .pt-gallery-menu-item-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.pt-gallery-menu-item-dark {
    background: var(--bg-dark);
}

.pt-gallery-menu-item-light {
    background: var(--bg-light);
}

.pt-gallery-menu-item-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
}

.pt-gallery-menu-item-content-overlay {
    color: #fff;
}

.pt-gallery-menu-item-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 12px 0 20px 0;
}

.pt-gallery-menu-item-dark .pt-gallery-menu-item-title {
    color: #fff;
}

.pt-gallery-menu-item-light .pt-gallery-menu-item-title {
    color: var(--text-color);
}

.pt-gallery-menu-item-content-overlay .pt-gallery-menu-item-title {
    color: #fff;
}

.pt-btn-underline-gold {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.pt-btn-underline-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}

.pt-btn-underline-dark {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.pt-btn-underline-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-color);
}

/* Center Gallery Menu Item (Large) */
.pt-gallery-menu-center {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.pt-gallery-menu-center img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-gallery-menu-center:hover img {
    transform: scale(1.05);
}

.pt-gallery-menu-center-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.pt-gallery-menu-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 30px;
    color: #fff;
}

.pt-gallery-menu-center-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    margin: 15px 0 25px 0;
    line-height: 1.1;
}

/* Responsive Gallery Menu Grid */
@media (max-width: 991px) {
    .pt-gallery-menu {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }
    
    .pt-gallery-menu-center {
        grid-column: span 2;
        min-height: 400px;
    }
    
    .pt-gallery-menu-column {
        grid-template-rows: 250px 250px;
    }
    
    .pt-gallery-menu-center-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pt-gallery-menu {
        grid-template-columns: 1fr;
    }
    
    .pt-gallery-menu-center {
        grid-column: span 1;
        min-height: 350px;
    }
    
    .pt-gallery-menu-column {
        grid-template-rows: 200px 200px;
    }
    
    .pt-gallery-menu-center-title {
        font-size: 2rem;
    }
    
    .pt-gallery-menu-item-title {
        font-size: 1.5rem;
    }
}

/* === QUOTE SECTION === */
.pt-quote-section {
    padding: 120px 0;
    text-align: center;
}

.pt-quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--font-family-heading);
}

.pt-quote-text {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px;
}

.pt-quote-author {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* === RESERVATION FORM === */
.pt-reservation-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.pt-reservation-form-wrap {
    background-color: var(--bg-dark);
    padding: 80px 60px;
    color: #fff;
    position: relative;
}

.pt-reservation-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,...') center/cover;
    opacity: 0.1;
}

.pt-reservation-image {
    background-size: cover;
    background-position: center;
}

.pt-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.pt-form-group {
    position: relative;
}

.pt-form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-family-body);
    font-size: 0.875rem;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.pt-form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.pt-form-control:focus {
    border-color: var(--primary-color);
}

select.pt-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

textarea.pt-form-control {
    min-height: 120px;
    resize: vertical;
}

/* === NEWSLETTER === */
.pt-newsletter-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pt-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.pt-newsletter-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: #fff;
}

.pt-newsletter-form {
    display: flex;
    gap: 0;
}

.pt-newsletter-input {
    flex: 1;
    padding: 18px 25px;
    font-family: var(--font-family-body);
    font-size: 0.875rem;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-right: none;
    color: #fff;
    outline: none;
}

.pt-newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.pt-newsletter-btn {
    padding: 18px 30px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-family: var(--font-family-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.pt-newsletter-btn:hover {
    background-color: transparent;
}

/* === FOOTER === */
.site-footer {
    background-color: var(--bg-dark);
    color: #fff;
    position: relative;
}

.pt-footer-main {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pt-footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.9);
}

.pt-footer-content {
    position: relative;
    z-index: 2;
}

.pt-footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pt-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.pt-footer-title {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.pt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-footer-links li {
    margin-bottom: 12px;
}

.pt-footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.pt-footer-links a:hover {
    color: var(--primary-color);
}

.pt-footer-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.pt-footer-text a {
    color: rgba(255,255,255,0.7);
}

.pt-footer-text a:hover {
    color: var(--primary-color);
}

.pt-social-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-social-nav li {
    margin-bottom: 12px;
}

.pt-social-nav a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.pt-social-nav a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.pt-footer-bottom {
    padding: 25px 0;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pt-footer-copyright {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.pt-footer-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-footer-menu a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.pt-footer-menu a:hover {
    color: #fff;
}

/* === GRID UTILITIES === */
.pt-grid {
    display: grid;
    gap: 30px;
}

.pt-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pt-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pt-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pt-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* === SPACING === */
.pt-mb-0 { margin-bottom: 0; }
.pt-mb-1 { margin-bottom: 10px; }
.pt-mb-2 { margin-bottom: 20px; }
.pt-mb-3 { margin-bottom: 30px; }
.pt-mb-4 { margin-bottom: 40px; }
.pt-mb-5 { margin-bottom: 60px; }

.pt-mt-0 { margin-top: 0; }
.pt-mt-1 { margin-top: 10px; }
.pt-mt-2 { margin-top: 20px; }
.pt-mt-3 { margin-top: 30px; }
.pt-mt-4 { margin-top: 40px; }
.pt-mt-5 { margin-top: 60px; }

.pt-py-0 { padding-top: 0; padding-bottom: 0; }
.pt-py-1 { padding-top: 10px; padding-bottom: 10px; }
.pt-py-2 { padding-top: 20px; padding-bottom: 20px; }
.pt-py-3 { padding-top: 30px; padding-bottom: 30px; }
.pt-py-4 { padding-top: 40px; padding-bottom: 40px; }
.pt-py-5 { padding-top: 60px; padding-bottom: 60px; }

/* === TEXT UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* === ANIMATIONS === */
.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === MOBILE MENU === */
.sidemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidemenu.active {
    display: block;
    opacity: 1;
}

.sidemenu-header {
    padding: 20px 40px;
    text-align: right;
}

.close-button {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}

.sidemenu-content {
    padding: 40px;
    text-align: center;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu .mobile-phone {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu .mobile-phone a {
    color: var(--primary-color);
    font-family: var(--font-family-body);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

/* === SCROLL TO TOP === */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.to-top.visible {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background-color: var(--bg-dark);
}

.to-top::before {
    content: '↑';
    font-size: 1.25rem;
}

/* === PARALLAX === */
.pt-parallax {
    position: relative;
    overflow: hidden;
}

.pt-parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .site-header-main {
        padding: 15px 30px;
    }
    
    .main-navigation a {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    .pt-hero-title {
        font-size: 4rem;
    }
    
    .pt-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .main-navigation {
        display: none;
    }
    
    .header-phone {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .site-branding .site-title {
        font-size: 1.25rem;
        letter-spacing: 0.1em;
    }
    
    .pt-hero-title {
        font-size: 3rem;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    
    .pt-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pt-reservation-section {
        grid-template-columns: 1fr;
    }
    
    .pt-reservation-image {
        min-height: 300px;
    }
    
    .pt-newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pt-footer-newsletter {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pt-grid-3,
    .pt-grid-4,
    .pt-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .site-header-main {
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .site-branding .site-title {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }
    
    .header-controls {
        gap: 15px;
    }
    
    .pt-section {
        padding: 60px 0;
    }
    
    .pt-container {
        padding: 0 20px;
    }
    
    .pt-hero {
        min-height: 600px;
    }
    
    .pt-hero-title {
        font-size: 2.5rem;
    }
    
    .pt-hero-text {
        font-size: 0.9375rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .pt-form-row {
        grid-template-columns: 1fr;
    }
    
    .pt-location-grid {
        grid-template-columns: 1fr;
    }
    
    .pt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pt-quote-text {
        font-size: 1.5rem;
    }
    
    .pt-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pt-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .pt-footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }
    
    .pt-grid-2,
    .pt-grid-3,
    .pt-grid-4,
    .pt-grid-5 {
        grid-template-columns: 1fr;
    }
    
    .pt-newsletter-form {
        flex-direction: column;
    }
    
    .pt-newsletter-input {
        border-right: 1px solid rgba(255,255,255,0.3);
    }
}

@media (max-width: 480px) {
    .site-header-main {
        padding: 12px 15px;
    }
    
    .site-branding .site-title {
        font-size: 1rem;
    }
    
    .pt-hero-title {
        font-size: 2rem;
    }
    
    .pt-btn {
        padding: 15px 30px;
        font-size: 0.6875rem;
    }
    
    .pt-reservation-form-wrap {
        padding: 40px 20px;
    }
}

/* ===========================================
   MENU PAGE STYLES
   =========================================== */

/* Menu Page Header */
.pt-menu-page-header {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pt-menu-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pt-menu-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.pt-menu-page-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.pt-menu-page-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: #fff;
    margin: 15px 0 20px 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pt-menu-page-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    margin: 0;
    max-width: 500px;
}

/* Menu Page Section - Dark Theme */
.pt-menu-page-section {
    background: #0a0a0a;
    padding: 100px 0;
}

.pt-menu-category-block {
    margin-bottom: 80px;
}

.pt-menu-category-block:last-child {
    margin-bottom: 0;
}

/* Category Header with Lines */
.pt-menu-category-header-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.pt-menu-category-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.pt-menu-category-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    margin: 0;
    white-space: nowrap;
}

/* Menu Items List */
.pt-menu-items-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.pt-menu-item-row {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pt-menu-item-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.pt-menu-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pt-menu-item-thumb:hover img {
    transform: scale(1.15);
}

.pt-menu-item-info {
    flex: 1;
    min-width: 0;
}

.pt-menu-item-top {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.pt-menu-item-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0;
    flex-shrink: 0;
}

.pt-menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    margin-bottom: 5px;
    min-width: 20px;
}

.pt-menu-item-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    flex-shrink: 0;
}

.pt-menu-item-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* No Menu Message */
.pt-no-menu-dark {
    text-align: center;
    padding: 80px 20px;
}

.pt-no-menu-dark h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin: 30px 0 15px 0;
}

.pt-no-menu-dark p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* CTA Section */
.pt-menu-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.pt-menu-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pt-menu-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

.pt-menu-cta-content {
    position: relative;
    z-index: 2;
}

.pt-menu-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    margin: 15px 0 20px 0;
}

.pt-menu-cta-text {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 35px 0;
}

/* Menu Page Responsive */
@media (max-width: 991px) {
    .pt-menu-page-header {
        height: 400px;
    }
    
    .pt-menu-page-title {
        font-size: 3rem;
    }
    
    .pt-menu-page-section {
        padding: 70px 0;
    }
    
    .pt-menu-items-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pt-menu-category-header-wrap {
        gap: 20px;
    }
    
    .pt-menu-category-line {
        max-width: 80px;
    }
    
    .pt-menu-category-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .pt-menu-page-header {
        height: 350px;
    }
    
    .pt-menu-page-title {
        font-size: 2.25rem;
    }
    
    .pt-menu-page-section {
        padding: 50px 0;
    }
    
    .pt-menu-category-block {
        margin-bottom: 50px;
    }
    
    .pt-menu-category-header-wrap {
        flex-direction: column;
        gap: 15px;
    }
    
    .pt-menu-category-line {
        width: 80px;
        max-width: none;
    }
    
    .pt-menu-item-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .pt-menu-item-thumb {
        width: 100%;
        height: 150px;
        border-radius: 10px;
    }
    
    .pt-menu-cta-section {
        padding: 80px 0;
    }
    
    .pt-menu-cta-title {
        font-size: 2rem;
    }
}
