* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cardo', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;

}

.header-top {
    padding: 10px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.admin-link {
    color: #fff;
}

.logo-container {
    position: relative;
    width: 100%;
    height: 125px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
}

.logo span {
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic;
    font-size: 40px;
    color: #fff;
    font-weight: 600;

}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.main-navigation {
    background-color: rgb(0 0 0 / 42%);
    padding: 10px;
}

.main-navigation .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Menu */
.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    margin: 0;
    padding: 60px 20px 20px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #7f6931;
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    .main-navigation{
        display: none;
    }
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .logo-container {
        position: relative;
    }
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        margin: 0;
        padding: 60px 20px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 1000;
        transition: right 0.3s ease;
    }

    .menu.active {
        right: 0;
    }
}

.header-buttons {
    display: flex;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 100 !important;
    padding: 2px 0;
    position: relative;
    transition: all 0.3s ease;
    font-size: 21px;
    font-family: 'Merriweather Sans';
    
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7f6931;
    transition: all 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

/* Button Styles */
.btn {
        /* display: inline-block; */
        padding: 2px 8px;
        border-radius: 4px;
        text-decoration: none;
        /* font-weight: 100; */
        transition: all 0.3s ease;
        /* border: none; */
        cursor: pointer;
}

.btn-primary {
    background: #7f6931;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #7f6931;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #7f6931;
    color: #7f6931;
}

.btn-secondary:hover {
    background: #7f6931;
    color: #fff;
}

/* Hero Section */
@keyframes backgroundZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-section {
    height: calc(100vh - 140px);  /* Account for header height */
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 140px;  /* Add padding equal to header height */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/03Wedding.jpg');
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    z-index: 0;
    animation: backgroundZoom 20s infinite;
}

.hero-section::before:hover {
    animation-play-state: paused;
}

.hero-column:hover ~ .hero-section::before,
.hero-section:has(.hero-column:hover)::before {
    animation-play-state: paused;
    transform: scale(1.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-columns {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-column {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    z-index: -1;
}

.hero-column:hover::before {
    backdrop-filter: blur(8px);

}

.hero-column:nth-child(1):hover ~ .hero-section::before,
.hero-section:has(.hero-column:nth-child(1):hover)::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/03Wedding.jpg');
    transform: scale(1.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-column:nth-child(2):hover ~ .hero-section::before,
.hero-section:has(.hero-column:nth-child(2):hover)::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/01Party.jpg');
    transform: scale(1.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-column:nth-child(3):hover ~ .hero-section::before,
.hero-section:has(.hero-column:nth-child(3):hover)::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/02Kids.jpg');
    transform: scale(1.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-column:nth-child(4):hover ~ .hero-section::before,
.hero-section:has(.hero-column:nth-child(4):hover)::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/02Kids.jpg');
    transform: scale(1.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-column.blur-bg {
    backdrop-filter: blur(8px);
}

.hero-content {
    padding: 40px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hero-content h2 {
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hero-column.blur-bg .hero-content p {
    opacity: 0.9;
    transform: translateY(0);
}

.hero-column:hover .hero-content {
    transform: translateY(-60px);
}

.hero-column:hover .hero-content p {
    opacity: 0.9;
    transform: translateY(0);
}

.menu-items p,
.menu-prices p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

.menu-prices {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-prices p {
    font-style: italic;
    opacity: 0.9;
}




/* Media Queries */
@media (max-width: 768px) {
    .hero-columns {
        flex-direction: column;
    }

    .hero-column {
        display: none;
        height: auto;
    }

    .hero-column:last-child {
        display: flex;
        height: calc(100vh - 140px);
        flex: 1;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .logo-container {
        height: 62px;
        padding-left: 10px;
    }

    .logo img {
        height: 62px;
        margin-left: 65px;
    }

    .logo span {
        font-size: 25px;
    }

    .menu {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .header-buttons {
        display: none;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px 10px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-label {
    color: #7f6931;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #fff;
}

.btn-text {
    color: #7f6931;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: #fff;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7f6931;
    transition: all 0.3s ease;
}

.tab-btn.active::after {
    width: 100%;
}

/* Reservation Section */
.reservation-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/reservation-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.reservation-content {
    max-width: 600px;
    margin: 0 auto;
}

.reservation-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Hours Section */
.hours-section {
    padding: 100px 0;
    background: #111;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.hours-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.day {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.time {
    color: #7f6931;
    font-size: 18px;
}

/* Footer */
.site-footer {
    background: #111;
    color: #fff;
    padding: 30px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h3,
.footer-social h3,
.footer-newsletter h3 {
    margin-bottom: 20px;
    color: #7f6931;
    font-style: italic;
    text-align: center;
}

.footer-newsletter p {
    text-align: center;
}

.footer-info p {
    margin-bottom: 10px;
    /* display: flex
; */
    align-items: center;
    gap: 10px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #7f6931;
}

.social-icons p {
    text-align: center;
    flex: auto;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #111;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 0 20px;
}

.gallery-item {
    min-width: calc(33.333% - 20px);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.gallery-section {
    padding: 50px 0;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.gallery-item .feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .feature-content {
    transform: translateY(0);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7f6931;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: #fff;
    color: #7f6931;
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

@media (max-width: 1024px) {
    .gallery-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        min-width: calc(100% - 0px);
    }
}

/* Promotional Section */
.promo-section {
    background: linear-gradient(135deg, rgba(127, 105, 49, 0.1) 0%, rgba(17, 17, 17, 0.95) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="50" cy="50" r="2" fill="rgba(127,105,49,0.1)"/%3E%3C/svg%3E');
    opacity: 0.3;
    pointer-events: none;
}

.promo-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(17, 17, 17, 0.8);
    padding: 50px 40px;
    border-radius: 15px;
    border: 2px solid #7f6931;
    box-shadow: 0 10px 40px rgba(127, 105, 49, 0.3);
}

.promo-icon {
    font-size: 48px;
    color: #7f6931;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.promo-title {
    font-size: 36px;
    color: #7f6931;
    margin-bottom: 30px;
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-content {
    color: #fff;
}

.promo-main {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.promo-main strong {
    color: #7f6931;
    font-weight: 600;
}

.promo-highlight {
    margin: 35px 0;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7f6931 0%, #a89050 100%);
    color: #000;
    font-size: 32px;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(127, 105, 49, 0.5);
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(127, 105, 49, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(127, 105, 49, 0.8);
    }
}

.promo-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.promo-location {
    font-size: 18px;
    color: #7f6931;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(127, 105, 49, 0.3);
}

.promo-location i {
    margin-right: 8px;
}

.promo-location strong {
    color: #fff;
}

/* Inline Promo Section Styles */
.inline-promo-section {
    background: linear-gradient(135deg, rgba(127, 105, 49, 0.1) 0%, rgba(17, 17, 17, 0.95) 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.inline-promo-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(17, 17, 17, 0.8);
    padding: 30px 60px;
    border-radius: 15px;
    border: 2px solid #7f6931;
    box-shadow: 0 10px 40px rgba(127, 105, 49, 0.3);
    display: flex;
    align-items: center;
    gap: 40px;
}

.inline-promo-badge {
    flex: 0 0 auto;
}

.inline-promo-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #7f6931 0%, #a89050 100%);
    color: #000;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(127, 105, 49, 0.5);
    letter-spacing: 1.5px;
}

.inline-promo-content {
    flex: 1;
    text-align: left;
}

.inline-promo-content h2 {
    font-size: 28px;
    color: #7f6931;
    margin-bottom: 15px;
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inline-promo-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

.inline-promo-content strong {
    color: #7f6931;
}

.inline-promo-location {
    flex: 0 0 auto;
    text-align: right;
    font-size: 14px;
    color: #7f6931;
    padding-left: 20px;
    border-left: 1px solid rgba(127, 105, 49, 0.3);
}

.inline-promo-location strong {
    color: #fff;
}

/* Responsive Design for Promo Section */
@media (max-width: 1024px) {
    .inline-promo-container {
        flex-direction: column;
        padding: 30px 40px;
        gap: 25px;
    }

    .inline-promo-content {
        text-align: center;
    }

    .inline-promo-location {
        border-left: none;
        border-top: 1px solid rgba(127, 105, 49, 0.3);
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .promo-section {
        padding: 40px 15px;
    }

    .promo-container {
        padding: 35px 25px;
    }

    .promo-title {
        font-size: 28px;
    }

    .promo-main {
        font-size: 17px;
    }

    .discount-badge {
        font-size: 24px;
        padding: 15px 35px;
    }

    .promo-description {
        font-size: 16px;
    }

    .promo-location {
        font-size: 16px;
    }

    .inline-promo-section {
        padding: 30px 15px;
    }

    .inline-promo-container {
        padding: 25px 20px;
    }

    .inline-promo-badge span {
        font-size: 18px;
        padding: 10px 25px;
    }

    .inline-promo-content h2 {
        font-size: 22px;
    }

    .inline-promo-content p {
        font-size: 15px;
    }

    .inline-promo-location {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promo-icon {
        font-size: 36px;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-main {
        font-size: 16px;
    }

    .discount-badge {
        font-size: 20px;
        padding: 12px 25px;
    }

    .inline-promo-container {
        padding: 20px 15px;
    }

    .inline-promo-badge span {
        font-size: 16px;
        padding: 8px 20px;
    }

    .inline-promo-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .inline-promo-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .inline-promo-location {
        font-size: 12px;
    }
}

/* Restaurant Info Section */
.restaurant-info-section {
    background: #111;
    position: relative;
}

.highlight-text {
    color: #7f6931;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin-top: 30px;
    text-align: center;
    font-family: 'Merriweather Sans', sans-serif;
}

/* Rezervare Section */
.rezervare-section {
    background: #111;
    position: relative;
}

.rezervare-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rezervare-image {
    flex: 1;
}

.rezervare-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.main-image {
    flex: 1;
}

.main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.rezervare-content {
    flex: 1;
    color: #fff;
}

.rezervare-content h2 {
    color: #7f6931;
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic;
    font-weight: 500;
    line-height: 1.2;
}

.rezervare-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.rezervare-content ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.rezervare-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.rezervare-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #7f6931;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .rezervare-container {
        flex-direction: column;
    }
    
    .rezervare-image, .rezervare-content {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 42px;
    }

    .features-grid,
    .hours-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .menu {
        flex-direction: column;
        text-align: center;
    }

    .reservation-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-top .container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Gallery Page Styles */
.gallery-page-section {
    padding: 120px 0 60px;
    background: #111;
}

.section-title {
    text-align: center;
    color: #7f6931;
    font-size: 42px;
    margin-bottom: 40px;
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic;
    text-transform: uppercase;
}

.masonry-gallery {
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

.gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-grid .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid .gallery-item img {
        height: 300px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    padding: 40px;
    box-sizing: border-box;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    cursor: default;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #7f6931;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: #fff;
    color: #7f6931;
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox {
        padding: 20px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
}

/* Categories Page Styles */
.categories-section {
    padding: 170px 0 40px;
    background: #111;
}

.categories-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.categories-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 106px;
}

.categories-sidebar h2 {
    color: #7f6931;
    margin-bottom: 20px;
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic;
}

.categories-menu {
    list-style: none;
    padding: 0;
}

.categories-menu li {
    margin-bottom: 10px;
}

.categories-menu button,
.category-button {
    width: 100%;
    padding: 10px;
    text-align: left;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.categories-menu button:hover,
.categories-menu button.active,
.category-button:hover,
.category-button.active {
    background: #7f6931;
    border-color: #7f6931;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #fff;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
}

.product-info p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-info .price {
    color: #7f6931;
    font-weight: 600;
    font-size: 18px;
    bottom: 3px;
    position: absolute;
}

.no-image {
    background: #7f6931;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    font-style: italic;
}

.no-products, .error-message {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
}

.error-message {
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .categories-layout {
        grid-template-columns: 1fr;
    }

    .categories-sidebar {
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
