/* File: css/TheLivingItaly1_084130.css */
/* Styles for main components and sections. */

/* --- Buttons --- */
.TheLivingItaly-btn {
    display: inline-block;
    font-family: var(--TheLivingItaly-font-header);
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--TheLivingItaly-border-radius);
    transition: all 0.3s ease;
}

.TheLivingItaly-btn-primary {
    background-color: var(--TheLivingItaly-primary-color);
    color: var(--TheLivingItaly-light-color);
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}
.TheLivingItaly-btn-primary:hover {
    background-color: #0b3a85; /* Darker blue */
    color: var(--TheLivingItaly-light-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

.TheLivingItaly-btn-secondary {
    background-color: var(--TheLivingItaly-secondary-color);
    color: var(--TheLivingItaly-dark-color);
}
.TheLivingItaly-btn-secondary:hover {
    background-color: #ffcd38; /* Lighter yellow */
    color: var(--TheLivingItaly-dark-color);
    transform: translateY(-2px);
}

.TheLivingItaly-btn-tertiary {
    background-color: transparent;
    color: var(--TheLivingItaly-dark-color);
    border-color: #e0e0e0;
}
.TheLivingItaly-btn-tertiary:hover {
    background-color: var(--TheLivingItaly-light-gray-color);
    color: var(--TheLivingItaly-primary-color);
}

/* --- Header & Navigation --- */
.TheLivingItaly-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
}
.TheLivingItaly-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.TheLivingItaly-logo-link {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--TheLivingItaly-primary-color);
}
.TheLivingItaly-logo-link:hover { color: var(--TheLivingItaly-primary-color); }
.TheLivingItaly-logo-icon { margin-right: 10px; }

.TheLivingItaly-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}
.TheLivingItaly-nav-link {
    color: var(--TheLivingItaly-dark-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}
.TheLivingItaly-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--TheLivingItaly-secondary-color);
    transition: width 0.3s ease;
}
.TheLivingItaly-nav-link:hover::after {
    width: 100%;
}

.TheLivingItaly-mobile-menu-btn { display: none; } /* Hidden on desktop */

/* --- Footer --- */
.TheLivingItaly-footer {
    background-color: var(--TheLivingItaly-dark-color);
    color: var(--TheLivingItaly-light-gray-color);
    padding: 3rem 0 1.5rem 0;
}
.TheLivingItaly-footer-heading {
    color: var(--TheLivingItaly-light-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.TheLivingItaly-footer-list {
    list-style: none;
    padding: 0;
}
.TheLivingItaly-footer-list li {
    margin-bottom: 0.5rem;
}
.TheLivingItaly-footer-list a {
    color: var(--TheLivingItaly-light-gray-color);
}
.TheLivingItaly-footer-list a:hover {
    color: var(--TheLivingItaly-secondary-color);
    text-decoration: underline;
}
.TheLivingItaly-footer-bottom-bar {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}