
/* Font imports and base styles */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Original Styles */

/* Hero Section for Desktop */
.hero-section {
    background: url('https://foodys.at/uploads/cover_photos/coffeeshop/1742981897_815a1a06-6e9e-47de-aae8-2de3894d0ca6.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Hero Section for Mobile */
@media (max-width: 768px) {
    .hero-section {
        background: url('https://foodys.at/uploads/cover_photos/coffeeshop/1742981897_photo-1590846406792-0adc7f938f1d.avif') no-repeat center center;
        background-size: cover;
    }
}

/* Base styles */
* {
    font-family: "Fira Sans", serif;
}

.topbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 999;
    background: rgba(0, 0, 0, 1);
    color: white;
}

.header {
    position: fixed;
    width: 100%;
    top: 44px;
    left: 0;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
}

.header img {
    height: 60px;
}

.header .nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.header .nav a:hover {
    color: #f8b400;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    background: #f8b400;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.hero-content .btn:hover {
    background: #e0a000;
}

.menu-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.menu-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: calc(33.333% - 20px);
    text-align: center;
    transition: 0.3s;
}

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

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.masonry-gallery {
    column-count: 3;
    column-gap: 15px;
    margin-top: 50px;
}

.masonry-gallery img {
    width: 100%;
    display: block;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.3s;
    height: 275px;
    object-fit: cover;
}

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

.contact-info {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #040404;
    padding: 10px;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.bottom-bar button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: #f8b400;
    text-decoration: none;
}

.footer a:hover {
    color: #e0a000;
}

@media (max-width: 768px) {
    .menu-item {
        width: calc(50% - 20px);
    }
    
    .bottom-bar {
        display: flex;
    }
    
    .topbar a {
        font-size: 0;
    }
    
    .header {
        top: 48px;
    }
    
    .bottom-bar a {
        color: #fff;
        text-decoration: none;
        text-align: center;
    }
    
    .masonry-gallery {
        column-count: 2;
    }
}

.header .nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

@media (max-width: 600px) {
    .menu-item {
        width: 100%;
    }
    
    .masonry-gallery {
        column-count: 1;
    }
    
    .masonry-gallery img {
        width: 100%;
        display: block;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
        height: unset !important;
        object-fit: contain;
    }
}

.reviews-carousel {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.reviews-carousel h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.reviews-carousel .card {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.reviews-carousel .card-body {
    padding: 15px;
    width: 70%;
    margin: 0 auto;
}

.reviews-carousel .card-title {
    font-size: 18px;
    font-weight: bold;
}

.reviews-carousel .star {
    color: gold;
    font-size: 16px;
}

.reviews-carousel .carousel-control-prev-icon,
.reviews-carousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* Modern Scrollbar with Background Color and No Arrows */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #e0e0e0;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 0;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: #808080;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #606060;
}

::-webkit-scrollbar-corner {
    background: #e0e0e0;
}

/* Firefox styling */
* {
    scrollbar-width: thin;
    scrollbar-color: #808080 #e0e0e0;
}

/* For specific containers */
.custom-scrollbar {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #808080 #e0e0e0;
}

/* Dark mode variant */
@media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar {
        background-color: #2d2d2d;
    }
    
    ::-webkit-scrollbar-track {
        background: #2d2d2d;
        box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.05);
    }
    
    ::-webkit-scrollbar-thumb {
        background: #5a5a5a;
        border: 1px solid #2d2d2d;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #707070;
    }
    
    ::-webkit-scrollbar-corner {
        background: #2d2d2d;
    }
    
    * {
        scrollbar-color: #5a5a5a #2d2d2d;
    }
}

@media screen and (max-width: 768px) {
    body.business-type-restaurant.template-template1 .hero-content.text-center p {
        padding: 10px;
        font-size: 17px !important;
    }
}

/* USER-DEFINED STYLES WITH !IMPORTANT TO OVERRIDE DEFAULTS */

/* Define CSS Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #22c55e;
    --accent-color: #E2BF17;
    --text-color: #000000;
    --link-color: #000000;
    --background-color: #FFFFFF;
    --heading-font: "Fira Sans", serif;
    --body-font: "Fira Sans", serif;
    --button-radius: 25px;
}

/* Base font and color overrides */
body {
    font-family: "Fira Sans", serif !important;
    color: #000000 !important;
    background-color: #FFFFFF !important;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: "Fira Sans", serif !important;
}

/* Specific element overrides */
.hero-content h1,
.section-title,
.menu-section h2, 
.about-section h2, 
.gallery-section h2, 
.reviews-section h2, 
.contact-section h2,
.reviews-carousel h2,
.card-title {
    font-family: "Fira Sans", serif !important;
    color: #000000 !important;
}

/* Normal paragraph text */
p, div, span, li {
    color: #000000 !important;
    font-family: "Fira Sans", serif !important;
}

/* BUTTON STYLES - with auto-contrast text and custom radius */
/* Button backgrounds */
.btn-primary, 
.hero-content .btn,
.preview-button-primary,
.save-button {
    background-color: #000000 !important;
    border-color: #000000 !important;
    border-radius: 25px !important;
}

/* Button text - will be black or white based on contrast */
.btn-primary, 
.hero-content .btn,
.preview-button-primary,
.save-button {
    color: #ffffff !important;
}

/* Secondary buttons */
.btn-secondary,
.preview-btn-secondary {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
    color: #000000 !important;
    border-radius: 25px !important;
}

/* Accent/warning buttons */
.btn-accent,
.btn-warning,
.preview-btn-accent {
    background-color: #E2BF17 !important;
    border-color: #E2BF17 !important;
    color: #000000 !important;
    border-radius: 25px !important;
}

/* Menu categories - normal state */
.menu-category-btn {
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
    border-radius: 25px !important;
}

/* Menu categories - active/hover state */
.menu-category-btn.active, 
.menu-category-btn:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* LINK STYLES - separately from buttons */
/* Standard links */
a:not(.btn):not(.nav-link):not(.bottom-bar a):not(.hero-content .btn) {
    color: #000000 !important;
    text-decoration: none;
}

a:not(.btn):not(.nav-link):not(.bottom-bar a):not(.hero-content .btn):hover {
    color: #000000 !important;
    text-decoration: underline;
}

/* Navigation links - special handling */
.header .nav a {
    color: white !important; /* Keep nav links white */
}

.header .nav a:hover {
    color: #000000 !important;
}

/* Footer links */
.footer a {
    color: #000000 !important;
}

.footer a:hover {
    color: #E2BF17 !important;
}

/* Icon colors */
.social-icon {
    color: #000000 !important;
}

.social-icon:hover {
    color: #E2BF17 !important;
}

/* Reviews section */
.reviews-carousel .star {
    color: #E2BF17 !important;
}

.reviews-carousel .card {
    border-left: 4px solid #000000 !important;
}

/* Text utility classes */
.text-primary {
    color: #000000 !important;
}

.text-secondary {
    color: #22c55e !important;
}

.text-accent, .text-warning {
    color: #E2BF17 !important;
}

/* Background utility classes */
.bg-primary {
    background-color: #000000 !important;
}

.bg-secondary {
    background-color: #22c55e !important;
}

.bg-accent, .bg-warning {
    background-color: #E2BF17 !important;
}

/* Section backgrounds - adjusted to work with custom background color */
.about-section {
    background-color: rgba(34, 197, 94, 0.05) !important;
}

.contact-section {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

/* Content areas background with custom background color */
.content-section, 
.menu-item,
.contact-info,
.reviews-carousel .card,
.reviews-carousel {
    background-color: #FFFFFF !important;
}

/* Menu items and cards need to maintain contrast regardless of background */
.menu-item,
.card {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Business type specific overrides */
.business-type-restaurant .special-feature {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.business-type-coffee .special-feature {
    background-color: rgba(34, 197, 94, 0.1) !important;
}

.business-type-fastfood .special-feature {
    background-color: rgba(226, 191, 23, 0.1) !important;
}

/* Template specific customizations */
.template-template1 .topbar {
    border-bottom: 2px solid #000000 !important;
}

/* Mobile bottom bar */
@media (max-width: 768px) {
    .bottom-bar button,
    .bottom-bar a {
        color: #000000 !important;
    }
}

/* Any custom CSS provided by the restaurant */
/* Χρώμα πρότασης πάνω στο banner */
section#hero * {
    color: #fff !important;
}

/* πλάτος κειμένου στο κομμάτι του σχετικά με εμάς */

@media screen and (max-width:1700px) {
.about-wrapper.style1 .title-area {
    max-width: 550px!important;
    margin: 0 auto;
  }
}.mobile-top-bar *{
   color:#fff!important;
    }
li.footer-item {
    color: #fff !important;
}
.flipbook-page-counter {
    background: rgb(207 207 207 / 50%)!important;
}

body.business-type-coffee.template-template2 nav.t2-desktop-nav {
    background: unset !important;
}
body.business-type-coffee.template-template2 a.t2-nav-link {
color:#000!important;
}

.menu-lightbox-close {
color:#fff!important;
}