/* L'ASILO COCKTAIL BAR - UNIFIED & OPTIMIZED CSS */
/* Unificazione di: menu.css + menu_responsive.css + main_styles.css + pages.css + responsive.css */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

/* CSS Variables for Brand Colors */
:root {
    --primary-teal: #005559;
    --accent-gold: #f8b90e;
    --warm-red: #cc4a28;
    --light-teal: #98e1d5;
    --dark-bg: #1c1b1b;
    --cream: #f2eee6;
    --white: #ffffff;
    --text-dark: #232323;
    --text-gray: #636363;
    --border-light: #dadada;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

body {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: var(--primary-teal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Sans Narrow', sans-serif;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }

p {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
}

/* Links */
a {
    transition: all 200ms ease;
    text-decoration: none;
}

a, a:hover, a:visited, a:active, a:link {
    text-decoration: none;
}

/* Lists */
ul {
    list-style: none;
    margin-bottom: 0;
}

/* Utility Classes */
.trans_200 { transition: all 200ms ease; }
.trans_300 { transition: all 300ms ease; }
.trans_400 { transition: all 400ms ease; }
.trans_500 { transition: all 500ms ease; }
.trans_800 { transition: all 800ms ease; }

.super_container {
    width: 100%;
    overflow: hidden;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
}

.header_content {
    height: 90px;
    width: 100%;
    transition: all 400ms ease;
}

.header.scrolled .header_content {
    height: 80px;
}

.logo {
    transform: translateY(3px);
}

.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.main_nav {
    margin-left: 170px;
}

.main_nav ul li:not(:last-child) {
    margin-right: 40px;
}

.main_nav ul li a {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.main_nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.main_nav ul li a:hover::before {
    width: 100%;
}

.main_nav ul li a:hover {
    color: var(--accent-gold);
}

.reservations_phone {
    height: 47px;
    line-height: 43px;
    padding-left: 25px;
    padding-right: 20px;
    text-align: center;
    border: solid 2px var(--white);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.reservations_phone:hover {
    background: var(--white);
    color: var(--primary-teal);
}

/* Hamburger Menu */
.hamburger_bar {
    position: fixed;
    top: 0;
    right: calc((100vw - 690px) / 2 - 15px);
    width: auto;
    height: 149px;
    z-index: 102;
    transition: all 400ms ease;
}

.hamburger_bar.scrolled {
    height: 80px;
}

.hamburger {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
}

.menu_hamburger {
    display: block;
    position: relative;
    width: 28px;
    height: 12px;
}

.hamburger_lines {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 800ms ease;
    transform-origin: center center;
    border-radius: 1px;
}

.line_1 { top: 0; }
.line_2 { top: 8px; }
.line_3 { top: 16px; }

.hamburger.active .line_1 {
    transform: translateY(5px) rotate(45deg) !important;
}

.hamburger.active .line_3 {
    transform: translateY(-5px) rotate(-45deg) !important;
}

.hamburger.active .line_2 {
    opacity: 0 !important;
}

/* Mobile Menu */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(28, 27, 27, 0.98);
    backdrop-filter: blur(15px);
    z-index: 101;
    visibility: hidden;
    opacity: 0;
    padding-bottom: 100px;
    transition: all 800ms ease;
}

.menu.active {
    visibility: visible;
    opacity: 1;
}

.menu_content {
    width: 100%;
    height: 100%;
}

.menu_content ul li:not(:last-child) {
    margin-bottom: 3px;
}

.menu_content ul li a {
    display: block;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 0.075em;
    transition: all 0.3s ease;
}

.menu_content ul:hover li a {
    color: rgba(255,255,255,0.5);
}

.menu_content ul li a:hover {
    color: var(--white);
}

/* Main Content Styles */
.menu_custom {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #003d40 100%);
    color: var(--white);
    text-align: center;
    min-height: calc(100vh - 90px);
    position: relative;
    padding: 2rem 0;
}

.menu_custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Menu Section Styles */
.menu-section {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.menu-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Page Title */
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

/* List Item Styles for Legacy Support */
li {
    margin: auto;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    max-width: 300px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

li:hover::before {
    left: 100%;
}

li:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

li span {
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin: 0.5rem 0;
}

h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

h1 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h6 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(248, 185, 14, 0.1);
    border-radius: 8px;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 1rem;
    position: relative;
    z-index: 1;
}

.back-btn:hover {
    background: var(--white);
    color: var(--primary-teal);
    transform: translateX(-5px);
}

/* Footer Styles */
.footer {
    width: 100%;
    background: var(--dark-bg);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer_contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.footer_contact_title {
    width: 61px;
    height: 21px;
    font-size: 16px;
    color: var(--white);
    line-height: 21px;
    padding-left: 8px;
    margin-right: 11px;
}

.footer_contact_text {
    font-size: 16px;
    color: var(--white);
    line-height: 21px;
}

.footer_contact ul li div:last-child {
    white-space: nowrap;
}

.copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.41);
    line-height: 1.2;
    margin-top: 22px;
    text-align: center;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */
@media only screen and (max-width: 1199px) {
    .main_nav {
        margin-left: 70px;
    }
    .main_nav ul li:not(:last-child) {
        margin-right: 35px;
    }
}

@media only screen and (max-width: 991px) {
    .hamburger {
        display: block;
    }
    .hamburger_bar {
        display: block;
    }
    .main_nav,
    .reservations_phone {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .hamburger_bar {
        right: calc((100vw - 510px) / 2 - 15px);
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 575px) {
    p {
        font-size: 14px;
    }
    .header_content,
    .header.scrolled .header_content {
        height: 80px;
    }
    .hamburger_bar {
        right: 0;
        height: 80px;
    }
    .hamburger_bar.scrolled {
        height: 80px;
    }
    .page-title {
        font-size: 2.5rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .menu_custom {
        margin-top: 80px;
    }
    li {
        max-width: 280px;
        padding: 1rem;
    }
    .footer_contact_title,
    .footer_contact_text {
        font-size: 14px;
    }
}


.item-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-name::before {
    content: '•';
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.item-brand {
    color: var(--accent-gold);
    font-weight: 600;
}

.item-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: right;
}

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

.cocktail-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.cocktail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.cocktail-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cocktail-ingredients {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cocktail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    padding: 0.5rem;
    background: rgba(248, 185, 14, 0.1);
    border-radius: 10px;
}

        
.price-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(248, 185, 14, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

.price-info p {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

.price {
    color: var(--accent-gold);
    font-weight: 700;
}


.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}


.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-btn:hover {
    background: var(--white);
    color: var(--primary-teal);
    transform: translateX(-5px);
}

/* Main Content */
.main-content {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
    background: linear-gradient(135deg, var(--primary-teal) 0%, #003d40 100%);
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.sub-title{
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}