﻿
/* Public page styles */

.btn-primary-public {
    background-color: var(--color-btn-primary-background);
    color: var(--color-text-white);
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-public:hover {
    background-color: transparent;
    color: var(--color-text-white);
    border-color: var(--color-text-white);
}

.btn-secondary-public {
    background-color: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-text-soft-white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary-public:hover {
    background-color: var(--color-text-white);
    color: var(--color-text-black);
    border-color: var(--color-text-soft-white);
}

.btn-navbar-public {
    background-color: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-text-soft-white);
    padding: 0.3rem 1rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-navbar-public:hover {
    background-color: var(--color-text-white);
    color: var(--color-text-black);
    border-color: var(--color-text-soft-white);
}


.hero-section {
    background-size: cover;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

@media (min-width: 576px) {
    .hero-section {
        align-items: center;
        min-height: 100vh;
    }
}

.hero-background-image {
    background: url('/media/images/my-bar-menu-website-background.webp') no-repeat center center;
}

.text-shadow-dark {
    text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
}