:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #111111;
    --text-color: #ffffff;
    --accent-color: #25686E;
    --transition-speed: 0.3s;
    --header-font: Tahoma, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--secondary-dark);
    color: var(--text-color);
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

.sidebar {
    width: 280px;
    background-color: var(--primary-dark);
    min-height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.sidebar-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

/*
.logo {
  font-family: var(--header-font);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}
*/
.logo img {
    width: 100%;
    height: auto;
    margin: -38px;
}

.logo-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.logo-decoration {
    width: 220px;
    height: 2px;
    background-color: #FFFFFF;
    margin: 8px auto;
}

.small-logo img {
    height: 60px;
    margin: 10px;
    width: auto;
}

nav {
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

nav ul li {
    width: 100%;
    position: relative;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 13px;
    display: block;
    transition: all var(--transition-speed) ease;
    position: relative;
    text-align: center;
}

nav ul li a:hover {
    color: #8d8d8d;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: #8d8d8d;
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 50%;
}

.sidebar-bottom {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 18px;
    transition: color var(--transition-speed) ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

copyright,
.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.main-content {
    margin-left: 280px;
    width: calc(100vw - 280px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px;
    overflow-y: auto;
}

.page-title {
    font-family: var(--header-font);
    font-size: 42px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 15px;
}

.decoration {
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    height: 100%;
    gap: 10px;
    padding: 10px;
}

.first-item {
    grid-row: span 2;
}

.item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.item:hover {
    transform: scale(0.98);
}

.item img {
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease, opacity 0.5s ease;
    opacity: 0.8;
}

.item:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1;
}

.item-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.item:hover .item-content::before {
    opacity: 1;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
}

.item h2 {
    font-family: 'Montserrat', serif;
    font-size: 32px;
    font-weight: bold;
    color: #489fa7;
    /*background-color: rgba(255, 255, 255, 0.5);*/
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);*/
    text-align: center;
    margin-bottom: 10px;
    transition: transform 0.5s ease;
    /*padding: 5px;*/
}

.item:hover h2 {
    transform: translateY(-5px);
}

.item-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
    letter-spacing: 2px;
    color: #FFFFFF;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.item:hover .item-subtitle {
    transform: translateY(5px);
}

.item-decoration {
    width: 40px;
    height: 2px;
    background-color: #023a40;
    margin: 15px 0;
    transition: width 0.5s ease;
}

.item:hover .item-decoration {
    width: 60px;
}

.menu-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--accent-color);
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(30%);
}

.item-info {
    padding: 20px;
}

.item-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.item-price {
    font-weight: bold;
    color: var(--accent-color);
}

.item-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 15px;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.tag-2 {
    background-color: var(--accent-color);
}

.order-btn {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.order-btn:hover {
    background-color: #d1b568;
    transform: translateY(-2px);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.main-content-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-news {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.featured-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.featured-news img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(30%);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-family: var(--header-font);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--text-color);
}

.news-meta {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.read-more:hover {
    background-color: #d1b568;
    transform: translateY(-2px);
}

.news-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    margin-bottom: 25px;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.news-item-content {
    display: flex;
    gap: 20px;
}

.news-item-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(30%);
}

.news-item-text {
    flex: 1;
}

.news-item-title {
    font-family: var(--header-font);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-color);
}

.sidebar-widget {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.widget-title {
    font-family: var(--header-font);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 15px;
}

.event-date {
    min-width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.event-month {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.event-day {
    font-size: 22px;
    font-weight: 700;
}

.event-details {
    flex: 1;
}

.event-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--text-color);
}

.event-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-button {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.form-button:hover {
    background-color: #d1b568;
    transform: translateY(-2px);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 280px;
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--header-font);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 3px;
}

.info-item .content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item .content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.info-item a {
    color: #489fa7;
}

.hours {
    margin-top: 30px;
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table td {
    padding: 10px 0;
    font-size: 15px;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

footer {
    background-color: var(--primary-dark);
    color: var(--text-color);
    text-align: center;
    padding: 40px 20px;
    margin-left: 280px;
    width: calc(100% - 280px);
}

.about-section {
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
}

.values-section {
    padding: 20px 0 60px;
}

.values-title {
    font-family: var(--header-font);
    font-size: 28px;
    margin-bottom: 50px;
    color: var(--accent-color);
    position: relative;
    text-align: center;
}

.values-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-title {
    font-family: var(--header-font);
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .main-content,
    footer {
        margin-left: 240px;
        width: calc(100% - 240px);
    }

    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .grid {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .main-content,
    footer {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 300px);
    }

    .first-item {
        grid-row: span 1;
    }

    .news-item-content {
        flex-direction: column;
    }

    .news-item-image {
        width: 100%;
        height: 200px;
    }

    .contact-container {
        flex-direction: column;
    }
}

.btn {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn:hover {
    background-color: #8d8d8d;
    transform: translateY(-2px);
}