/* Font classes for different text types */
.font-heading-bold {
    font-family: 'Peace Sans', Arial, sans-serif;
    color: #b50101;
}

.font-body-heavy {
    font-family: 'Peace Sans', Arial, sans-serif;
    color: #b50101;
}

.font-milligram-heavy {
    font-family: 'Peace Sans', Arial, sans-serif;
    color: #b50101;
}

.font-typo-formal {
    font-family: 'TypoFormal Regular Demo', Arial, sans-serif !important;
    color: #b50101 !important;
}

.font-lemonmilk-light {
    font-family: 'LEMONMILK-Light', Arial, sans-serif !important;
    color: #b50101 !important;
}

.hero-description.font-lemonmilk-light {
    font-family: 'LEMONMILK-Light', Arial, sans-serif !important;
    color: #b50101 !important;
}

.phone-number {
    color: #cecece !important;
    font-size: 2.2em !important;
    margin-top: -1em !important;
}

p.phone-number {
    color: #cecece !important;
    font-size: 2.2em !important;
    margin-top: -1em !important;
}

.font-milligram-heavy.phone-number {
    color: #cecece !important;
    font-size: 2.2em !important;
    margin-top: -1em !important;
}

.contact-card p.phone-number {
    color: #cecece !important;
    font-size: 2.2em !important;
    margin-top: -1em !important;
}

.contact-card .font-milligram-heavy.phone-number {
    color: #cecece !important;
    font-size: 2.2em !important;
    margin-top: -1em !important;
}

.social-text {
    color: #cecece !important;
}

.social-icon {
    filter: brightness(0) saturate(100%) invert(80%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

.address-text {
    color: #cecece !important;
}

.mobile-social-icon {
    filter: brightness(0) saturate(100%) invert(80%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

.mobile-social-text {
    color: #cecece !important;
}

/* Font faces */
@font-face {
    font-family: 'Peace Sans';
    src: url('PeaceSans.otf') format('opentype'),
         url('PeaceSans.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TypoFormal Regular Demo';
    src: url('TypoFormalRegularDemo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Milligram Macro Heavy';
    src: url('Milligram-Macro-Heavy-trial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Creo ExtraBold';
    src: url('Creo-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LEMONMILK-Light';
    src: url('LEMONMILK-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Creo ExtraBold';
    src: url('Creo-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Madeleina Sans';
    src: url('MadeleinaSans-2VY3.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Big Black Bear';
    src: url('Big Black Bear.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Chill';
    src: url('Chill.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Peace Sans', Arial, sans-serif !important;  /* Changed to Peace Sans */
    line-height: 1.6;
    color: #b50101;  /* Changed to new color */
    background-color: #000000;  /* Black background */
}

/* Ensure all text is visible */
h1, h2, h3, h4, h5, h6, p, span, div, li {
    color: #b50101 !important;  /* Changed to new color */
    font-family: 'Peace Sans', Arial, sans-serif !important;
}

/* Typography classes for custom fonts */
.font-creo-light {
    font-family: 'Peace Sans', Arial, sans-serif;  /* Changed to Milligram Macro Heavy */
    color: #b50101;
    text-transform: uppercase;
}

.font-creo-bold {
    font-family: 'Peace Sans', Arial, sans-serif;  /* Changed to Milligram Macro Heavy */
    font-weight: bold;
    color: #b50101;
    text-transform: uppercase;
}

.font-madeleina {
    font-family: 'Peace Sans', Arial, sans-serif;  /* Changed to Milligram Macro Heavy */
    color: #b50101;
    text-transform: uppercase;
}

/* All text should be uppercase */
h1, h2, h3, h4, h5, h6, p, span, div, li {
    text-transform: uppercase !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #000000;  /* Black header background */
    color: white;
    padding: 2.5rem 0;  /* Slightly reduced padding */
    border-bottom: none;  /* No border */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;  /* For absolute positioning of center logo */
}

/* Logo with K2.png image centered */
.logo-center {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-image {
    height: 120px;  /* Further reduced height */
    width: auto;
    object-fit: cover;  /* Crop the image to fit */
    object-position: center 20%;  /* Moved up by cursor height - show more top */
}

/* Hamburger menu positioning */
.mobile-nav {
    position: relative;
    margin-left: auto;  /* Push to the right */
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -.3px);
}

/* Mobile social icons */
.mobile-social-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%) drop-shadow(0 0 8px rgba(177, 5, 22, 0.6));
}

/* White hamburger menu */
.hamburger-white {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;  /* Increased padding for better touch target */
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
    z-index: 1001;  /* Ensure it's above other elements */
    position: relative;
}

.hamburger-line-white {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger-white.active .hamburger-line-white:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-white.active .hamburger-line-white:nth-child(2) {
    opacity: 0;
}

.hamburger-white.active .hamburger-line-white:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -.3px);
}

/* Mobile menu dropdown - full sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;  /* Start hidden off-screen */
    width: 300px;
    height: 100vh;
    background: #000000;
    border-left: none;  /* No border */
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;  /* Use flexbox for better layout */
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    right: 0;  /* Slide in from right */
}

.mobile-link {
    display: block;
    color: #b50101;  /* Updated color */
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(177, 5, 22, 0.3);  /* Updated color */
    transition: background-color 0.3s ease;
    font-size: 22px;  /* Increased from 18px */
    font-family: 'Peace Sans', Arial, sans-serif;  /* Changed to Milligram Macro Heavy */
    text-align: center;
    text-transform: uppercase;
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover,
.mobile-link.active {
    background-color: rgba(177, 5, 22, 0.1);  /* Updated color */
    color: #b50101;  /* Updated color */
}

/* Overlay to close menu when clicking outside */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Always show hamburger menu but hide on very small screens if needed */
@media (max-width: 480px) {
    /* Keep hamburger visible even on small screens */
}

/* Desktop and mobile both use hamburger menu - ensure always visible */

/* Typography classes for specific elements */
.main-title, .section-title {
    font-family: 'Peace Sans', Arial, sans-serif;  /* Milligram Macro Heavy for main headers */
    color: #b50101;
}

.font2 {
    font-family: 'Peace Sans', Arial, sans-serif;  /* Milligram Macro Heavy for body text */
}

/* App container */
#app {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
}

/* Main content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    background: #000000;
    color: #ffffff;
}

/* Common page containers */
.page, .menu-page, .gallery-page, .admin-page {
    background-color: #000000;
    color: #ffffff;
}

/* Menu images styling */
.menu-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    object-fit: cover;
    background: transparent;
}

.menu-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

/* Ensure menu images container displays images properly */
.menu-images-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.menu-images-container img {
    max-width: 45%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

/* Home page with semi-transparent background */
.home-page {
    background-color: #000000;
    background-image: url('tlo.PNG');
    background-size: cover;
    background-position: center 5%;  /* Moved up from 10% */
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
}

/* Ensure features section is visible */
.features {
    color: #ffffff;
    background: transparent;  /* No background */
}

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

.features h2, .features h3, .features p {
    color: #ffffff;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card {
    background: #111111 !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
}

.feature-card h3, .feature-card p {
    color: #ffffff !important;
}

/* Hero section */
.hero {
    background: #000000;  /* Black background */
    color: #a80e24;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: none;  /* No border */
}

.hero h1 {
    font-size: 3.5rem;  /* Reduced from 4rem */
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: -2.5rem;  /* Move title higher */
    line-height: 1.2;
}

.hero h1 span {
    display: block;
    color: #a80e24;
    font-family: 'Peace Sans', sans-serif;  /* Creo ExtraLight for main title */
    text-transform: uppercase;
    margin-bottom: -1em;  /* Quarter line closer - larger negative margin */
}

.hero p {
    font-size: 1.5rem;  /* Reduced from 1.8rem */
    opacity: 0.9;
    max-width: 600px;
    margin: 8rem auto 0 auto;  /* Increase space between title and description */
    color: #a80e24;
    font-family: 'Peace Sans', sans-serif;  /* Creo ExtraLight for description */
    text-transform: uppercase;
}

/* Menu section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: #111111;  /* Dark cards on black background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);  /* Subtle white shadow */
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #222;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.menu-item-description {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

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

/* Custom contact grid for home page - side by side */
.contact-grid-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;  /* Align items to top */
}

/* Social media icons */
.social-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%) drop-shadow(0 0 8px rgba(177, 5, 22, 0.6));
}

/* Social media cards - perfect centering */
.social-card {
    background: transparent;
    padding: 1rem;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;  /* Ensure consistent height */
}

/* Social media grid - horizontal layout */
.social-grid-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;  /* Increased gap for better spacing */
    margin-top: 2rem;
    max-width: 800px;  /* Increased max-width for better centering */
    margin-left: auto;
    margin-right: auto;
    align-items: center;  /* Center items */
    justify-items: center;  /* Center items horizontally */
    text-align: center;  /* Center text */
}

/* Social media grid - vertical layout */
.social-grid-vertical {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;  /* Center items */
    justify-items: center;  /* Center items horizontally */
    text-align: center;  /* Center text */
}

@media (max-width: 768px) {
    .contact-grid-custom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .social-grid-vertical {
        max-width: 100%;
        gap: 1.5rem;
    }
}

.contact-card {
    background: transparent;  /* No background, just transparent */
    padding: 2rem;
    border: none;
    text-align: center;
    display: flex;  /* Use flexbox */
    flex-direction: column;  /* Stack items vertically */
    align-items: center;  /* Center items horizontally */
    justify-content: center;  /* Center items vertically */
}

.contact-icon {
    font-size: 3rem;
    color: #a80e24;  /* New color */
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 2.5rem;  /* Reduced from 3rem */
    font-weight: bold;
    margin-bottom: 1rem;
    color: #b50101;  /* Updated color */
    font-family: 'Peace Sans', Arial, sans-serif;  /* Milligram Macro Heavy for headers */
    text-transform: uppercase;
}

.contact-card p {
    color: #b50101;  /* Updated color */
    line-height: 1.6;
    white-space: pre-line;  /* Allow \n to create line breaks */
    font-family: 'Peace Sans', Arial, sans-serif;  /* Milligram Macro Heavy for body text */
    text-transform: uppercase;
    font-size: 1.6rem;  /* Reduced from 2rem */
}

/* Opening hours - red neon on transparent */
.opening-hours {
    background: transparent;  /* No background, transparent */
    padding: 2rem;
    border: none;
    margin-top: 2rem;
}

.opening-hours h3 {
    font-size: 3rem;  /* Reduced from 3.5rem */
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #b50101;  /* Updated color */
    text-align: center;
    font-family: 'Peace Sans', Arial, sans-serif;  /* Milligram Macro Heavy for headers */
    text-transform: uppercase;
}

.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;  /* Reduced padding */
    border-bottom: 1px solid rgba(168, 14, 36, 0.3);  /* Subtle border in new color */
    max-width: 400px;  /* Narrower width */
    margin: 0 auto;  /* Center the hours list */
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: bold;
    color: #b50101;  /* Updated color */
    font-family: 'Peace Sans', Arial, sans-serif;  /* Milligram Macro Heavy for days */
    text-transform: uppercase;
    font-size: 1.6rem;  /* Reduced from 2rem */
}

.hours-time {
    color: #b50101;  /* Updated color */
    font-weight: bold;
    font-family: 'Peace Sans', Arial, sans-serif;  /* Milligram Macro Heavy for times */
    text-transform: uppercase;
    font-size: 1.4rem;  /* Reduced from 1.8rem */
}

/* Gallery videos */
.gallery-video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-video:hover {
    transform: scale(1.05);
}

/* Lightbox videos */
.lightbox-video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #111111;
    border: 1px solid #333;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(168, 14, 36, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #222;
    opacity: 1;  /* Always visible */
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image {
    opacity: 0.9;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Peace Sans', sans-serif;
    color: #a80e24;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-family: 'Peace Sans', sans-serif;
    color: #ccc;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact section - removed duplicate */

/* Opening hours - removed duplicate */

/* Admin panel */
.admin-panel {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.admin-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-input {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

/* Loading states */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;  /* Responsive font size */
        margin-top: -2rem;  /* Keep title higher */
        line-height: 1.2;  /* Keep same line spacing */
    }
    
    .hero h1 span {
        margin-bottom: -1em;  /* Keep same line spacing */
    }

    .hero p {
        font-size: 1.2rem;  /* Responsive font size */
        margin-top: 5rem;  /* Keep description lower on mobile */
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Responsive contact cards */
    .contact-card h3 {
        font-size: 2rem;  /* Smaller on mobile */
    }
    
    .contact-card p {
        font-size: 1.3rem;  /* Smaller on mobile */
    }
    
    .contact-card p.phone-number {
        font-size: 2.2em !important;  /* Keep phone number larger */
    }
    
    /* Responsive opening hours */
    .opening-hours h3 {
        font-size: 2.5rem;  /* Smaller on mobile */
    }
    
    .hours-day {
        font-size: 1.3rem;  /* Smaller on mobile */
    }
    
    .hours-time {
        font-size: 1.1rem;  /* Smaller on mobile */
    }
    
    /* Responsive map and social */
    .map-section h3,
    .social-section h3 {
        font-size: 2rem;  /* Smaller on mobile */
    }
    
    .social-section p {
        font-size: 1.3rem;  /* Smaller on mobile */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;  /* Even smaller on very small screens */
        margin-top: -1.5rem;  /* Keep title higher */
        line-height: 1.2;  /* Keep same line spacing */
    }
    
    .hero h1 span {
        margin-bottom: -1em;  /* Keep same line spacing */
    }
    
    .hero p {
        font-size: 1rem;  /* Even smaller on very small screens */
        margin-top: 4rem;  /* Keep description lower on very small screens */
    }
    
    .contact-card h3 {
        font-size: 1.8rem;  /* Even smaller on very small screens */
    }
    
    .contact-card p {
        font-size: 1.1rem;  /* Even smaller on very small screens */
    }
    
    .contact-card p.phone-number {
        font-size: 2.2em !important;  /* Keep phone number larger */
    }
    
    .opening-hours h3 {
        font-size: 2rem;  /* Even smaller on very small screens */
    }
    
    .hours-day {
        font-size: 1.1rem;  /* Even smaller on very small screens */
    }
    
    .hours-time {
        font-size: 1rem;  /* Even smaller on very small screens */
    }
    
    .map-section h3,
    .social-section h3 {
        font-size: 1.8rem;  /* Even smaller on very small screens */
    }
    
    .social-section p {
        font-size: 1.1rem;  /* Even smaller on very small screens */
    }
    
    /* Mobile menu adjustments */
    .mobile-menu {
        width: 280px;  /* Slightly smaller on very small screens */
    }
    
    .mobile-link {
        font-size: 20px;  /* Slightly smaller on very small screens */
    }
    
    /* Header responsiveness */
    .header {
        padding: 1.8rem 0;  /* Slightly smaller padding on mobile */
    }
    
    .logo-image {
        height: 60px !important;  /* Much smaller logo on mobile */
        max-width: 150px !important;  /* Limit width */
        width: auto !important;
    }
    
    .header-content {
        padding: 0 15px;  /* Smaller padding on mobile */
    }
    
    /* Admin page responsiveness */
    .admin-page {
        padding: 1rem;
    }
    
    .admin-section {
        margin-bottom: 2rem;
    }
    
    .admin-item, .admin-gallery-item {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-thumbnail, .admin-gallery-thumbnail {
        max-width: 100%;
        height: auto;
    }
    
    .admin-hours-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hours-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Lazy loading images */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loading {
    opacity: 0.5;
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-image.placeheld {
    background-color: #f5f5f5;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.lightbox-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 1001;
}

.lightbox-image-container {
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-info {
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

.lightbox-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.lightbox-description {
    margin: 0;
    opacity: 0.8;
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1002;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1002;
    transition: background-color 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: white;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 1002;
}

/* Modal forms */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.modal-open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1051;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.modal-open {
    display: block;
    opacity: 1;
    visibility: visible;
}

.modal h2 {
    margin: 0 0 1.5rem 0;
    color: #333;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

/* Admin panel specific */
.admin-login {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.admin-content {
    display: none;
}

.admin-content:has(> div:only-child) {
    display: block;
}

.admin-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-item {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    gap: 1rem;
}

.admin-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.item-details p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.price {
    font-weight: 600;
    color: #ff6b35;
    font-size: 1.1rem;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-gallery-item {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    gap: 1rem;
}

.admin-gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-details {
    flex: 1;
}

.gallery-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.gallery-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-hours-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.admin-hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    min-width: 100px;
    font-weight: 500;
}

.hours-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-inputs .form-control {
    width: auto;
    min-width: 120px;
}

.hours-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-placeholder {
    text-align: center;
    padding: 3rem;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
}

.admin-placeholder p {
    font-size: 1.1rem;
}

/* Ensure proper visibility for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

/* All text content should be white */
textarea, input, select, button {
    color: #ffffff;
    background-color: #333333;
    border: 1px solid #666666;
}

input::placeholder, textarea::placeholder {
    color: #cccccc;
}

/* Utility classes */
.text-center {
    text-align: center;
    color: #ffffff;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Map section */
.map-section h3 {
    font-family: 'Peace Sans', sans-serif;
    color: #a80e24;
    text-transform: uppercase;
    font-size: 2.5rem;  /* Reduced from 3rem */
}

/* Social media section */
.social-section h3 {
    font-family: 'Peace Sans', sans-serif;
    color: #a80e24;
    text-transform: uppercase;
    font-size: 2.5rem;  /* Reduced from 3rem */
}

.social-section p {
    font-family: 'Peace Sans', sans-serif;
    color: #a80e24;
    text-transform: uppercase;
    font-size: 1.6rem;  /* Reduced from 2rem */
}

/* Social media links */
.social-link {
    text-decoration: none;
    color: #a80e24;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff6b35;
}

.social-link p {
    margin: 0;
    font-family: 'Peace Sans', sans-serif;
    color: #a80e24;
    text-transform: uppercase;
    font-size: 1.6rem;  /* Reduced from 2rem */
    transition: color 0.3s ease;
}

.social-link:hover p {
    color: #ff6b35;
}

/* ===== FULL RESPONSIVE HEADER ===== */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
    .header {
        padding: 3rem 0;
    }
    
    .logo-image {
        height: 140px;
    }
    
    .header-content {
        padding: 0 2rem;
    }
}

/* Medium-large screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .header {
        padding: 2.8rem 0;
    }
    
    .logo-image {
        height: 130px;
    }
    
    .header-content {
        padding: 0 1.5rem;
    }
}

/* Medium screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .header {
        padding: 2.5rem 0;
    }
    
    .logo-image {
        height: 120px;
    }
    
    .header-content {
        padding: 0 1rem;
    }
}

/* Small screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .header {
        padding: 2rem 0;
    }
    
    .logo-image {
        height: 110px;
    }
    
    .header-content {
        padding: 0 1rem;
    }
}

/* Extra small screens (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .header {
        padding: 1.8rem 0;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .header-content {
        padding: 0 0.8rem;
    }
}

/* Very small screens (320px - 479px) */
@media (min-width: 320px) and (max-width: 479px) {
    .header {
        padding: 1.5rem 0;
    }
    
    .logo-image {
        height: 90px;
    }
    
    .header-content {
        padding: 0 0.5rem;
    }
}

/* Ultra small screens (below 320px) */
@media (max-width: 319px) {
    .header {
        padding: 1.2rem 0;
    }
    
    .logo-image {
        height: 80px;
    }
    
    .header-content {
        padding: 0 0.3rem;
    }
    
    .hamburger-white {
        padding: 8px;
    }
    
    .hamburger-line-white {
        width: 20px;
        height: 2px;
    }
}

/* Mobile-specific logo fixes - highest priority */
@media (max-width: 768px) {
    .logo-image {
        height: 100px !important;
        max-width: 250px !important;
        width: auto !important;
        object-fit: contain !important;
    }
    
    .header {
        padding: 1rem 0 !important;
    }
    
    .header-content {
        padding: 0 10px !important;
    }
    
    /* Menu layout for tablet/mobile - stack images vertically */
    .menu-images-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    
    .menu-images-container img {
        max-width: 80% !important;
        width: 80% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 80px !important;
        max-width: 200px !important;
        width: auto !important;
        object-fit: contain !important;
    }
    
    .header {
        padding: 0.8rem 0 !important;
    }
    
    .header-content {
        padding: 0 5px !important;
    }
    
    /* Menu layout for mobile - stack images vertically */
    .menu-images-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .menu-images-container img {
        max-width: 90% !important;
        width: 90% !important;
        height: auto !important;
    }
}

