/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* cursor: none; */ /* Isključeno sakrivanje standardnog kursora */
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: width 0.3s, height 0.3s;
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.2);
    border-width: 2px;
}

.custom-cursor.active {
    transform: translate(-50%, -50%) scale(0.8);
}

/* CSS Preloader uklonjen */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --primary-color: #d4af37; /* Zlatna boja */
    --secondary-color: #1a2639; /* Tamno plava */
    --text-color: #f5f5f5;
    --light-color: #f5f5f5;
    --dark-color: #000000; /* Crna */
    --accent-color: #d4af37; /* Zlatna za akcente */
    --border-color: #3a3a3a;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --bg-gradient: linear-gradient(to right, rgba(26, 38, 57, 0.9), rgba(0, 0, 0, 0.9));
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--dark-color);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?q=80&w=1770&auto=format') no-repeat center center/cover;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 70px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.logo a::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    margin-right: 10px;
    transform: rotate(45deg);
}

.logo a:hover {
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.desktop-nav ul {
    display: flex;
}

.desktop-nav ul li {
    margin-left: 30px;
}

.desktop-nav ul li a {
    position: relative;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 5px 0;
}

.desktop-nav ul li a:hover, 
.desktop-nav ul li a.active {
    color: var(--primary-color);
}

.desktop-nav ul li a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.desktop-nav ul li a:hover::before, 
.desktop-nav ul li a.active::before,
.desktop-nav ul li a:hover::after, 
.desktop-nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    padding: 60px 20px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-nav .close-btn:hover {
    transform: rotate(90deg);
    color: #ffffff;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    position: relative;
}

.mobile-nav ul li a:hover, 
.mobile-nav ul li a.active {
    color: var(--primary-color);
    padding-left: 15px;
}

.mobile-nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-nav ul li a:hover::before,
.mobile-nav ul li a.active::before {
    width: 30px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(26, 38, 57, 0.8)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--dark-color), transparent);
    z-index: 2;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--dark-color), transparent);
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--dark-color), transparent);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-img {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary-color);
    z-index: 1;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.about-img:hover::before {
    opacity: 1;
    transform: scale(1);
}

.about-img img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-img:hover img {
    transform: scale(1.1);
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--light-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background-color: rgba(26, 38, 57, 0.8);
}

.feature:hover::before {
    height: 100%;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.feature:hover i {
    transform: scale(1.2);
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--light-color);
    font-weight: 500;
}

/* ===== MENU SECTION ===== */
.menu {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.menu::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.menu .section-header h2 {
    color: var(--primary-color);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.menu-tab {
    padding: 12px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: transparent;
    color: var(--light-color);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.menu-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.menu-tab:hover::before, .menu-tab.active::before {
    transform: translateX(0);
}

.menu-tab:hover, .menu-tab.active {
    color: var(--dark-color);
    border-color: var(--primary-color);
}

.menu-category {
    display: none;
    position: relative;
    z-index: 2;
}

.menu-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeIn 0.6s ease forwards;
}

.menu-item {
    background-color: rgba(26, 38, 57, 0.7);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.menu-item:hover::after {
    width: 100%;
}

.menu-item-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-item-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1) rotate(2deg);
}

.menu-item-info {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.menu-item-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.menu-item-header h3 {
    font-size: 1.3rem;
    color: var(--light-color);
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.menu-item-info p {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--dark-color), transparent);
    z-index: 1;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--dark-color), transparent);
    z-index: 1;
}

.gallery .section-header h2 {
    color: var(--primary-color);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--primary-color);
    z-index: 2;
    transform: scale(1.2);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay span {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    position: relative;
    padding-bottom: 15px;
}

.gallery-overlay span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: scale(1);
    opacity: 0.5;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== RESERVATIONS SECTION ===== */
.reservations {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.reservations::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.reservations .section-header h2 {
    color: var(--primary-color);
}

.reservation-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.reservation-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.reservation-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.reservation-text p {
    margin-bottom: 30px;
    color: var(--light-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.reservation-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-item:hover i {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.contact-item a {
    color: var(--light-color);
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.reservation-form {
    background-color: rgba(26, 38, 57, 0.8);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.reservation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
    color: rgba(245, 245, 245, 0.6);
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.form-message.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.contact .section-header h2 {
    color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 30px;
    background-color: rgba(26, 38, 57, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.info-item:hover i {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: rotate(10deg);
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-item p {
    color: var(--light-color);
    line-height: 1.6;
}

.info-item a {
    color: var(--light-color);
    transition: all 0.4s ease;
    display: block;
    line-height: 1.6;
}

.info-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.social-link:hover {
    color: var(--dark-color);
    transform: translateY(-8px) scale(1.1);
    border-color: var(--primary-color);
}

.social-link:hover::before {
    transform: translateY(0);
}

.contact-form-and-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-form {
    background-color: rgba(26, 38, 57, 0.7);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid rgba(26, 38, 57, 0.7);
    box-sizing: border-box;
    z-index: 1;
    pointer-events: none;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 0;
}

@media (max-width: 768px) {
    .contact-form-and-map {
        grid-template-columns: 1fr;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-header h2 {
    color: var(--primary-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-item {
    display: none;
    padding: 2rem 0;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    border: 1px solid rgba(185, 155, 58, 0.2);
    backdrop-filter: blur(5px);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--light-color);
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.testimonial-author span {
    color: #aaa;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #e9be3f;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.footer-logo a::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    margin-right: 10px;
    transform: rotate(45deg);
}

.footer-logo p {
    margin-top: 15px;
    color: var(--light-color);
    line-height: 1.8;
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
    position: relative;
}

.footer-links ul li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    top: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.footer-links ul li a {
    color: var(--light-color);
    transition: all 0.4s ease;
    padding-left: 0;
    display: inline-block;
}

.footer-links ul li:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--light-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-newsletter form {
    display: flex;
    position: relative;
}

.footer-newsletter input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer-newsletter button {
    padding: 0 25px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.footer-newsletter button:hover {
    background-color: #e9be3f;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-color);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content,
    .reservation-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-img {
        order: -1;
    }
    
    .menu-category.active {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }
    
    html {
        scroll-padding-top: 70px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .footer-newsletter button {
        border-radius: 30px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
          .gallery-container {
          grid-template-columns: 1fr;
      }
  }

/* ===== NAV TOOLS STYLES ===== */
.special-nav-item {
    margin-left: 5px !important;
}

.nav-tool-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-tool-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background-color: rgba(212, 175, 55, 0.2);
}

.nav-tool-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-tool-btn:hover::after {
    width: 80%;
}

.nav-tool-btn.active {
    color: var(--primary-color);
}

.nav-tool-btn.active::after {
    width: 80%;
}

/* Theme switcher in nav specific */
.nav-tool-btn.theme-active .fa-moon {
    display: none;
}

.nav-tool-btn.theme-active .fa-sun {
    display: inline-block;
}

.nav-tool-btn .fa-sun {
    display: none;
}

/* Mobile tools */
.mobile-tools {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding-top: 20px;
}

.mobile-tools-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-tools-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-tool-btn {
    background: rgba(212, 175, 55, 0.1);
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.mobile-tool-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
}

.mobile-tool-btn i {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.mobile-tool-btn span {
    font-weight: 500;
}

/* Theme switcher in mobile nav specific */
.mobile-tool-btn.theme-active .fa-moon {
    display: none;
}

.mobile-tool-btn.theme-active .fa-sun {
    display: inline-block;
}

.mobile-tool-btn .fa-sun {
    display: none;
}

/* Voice search recording animation */
@keyframes recording-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 69, 65, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(214, 69, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 69, 65, 0);
    }
}

.nav-tool-btn.recording, 
.mobile-tool-btn.recording {
    background: #d64541;
    color: white;
    animation: recording-pulse 1.5s infinite;
}

.nav-tool-btn.recording i, 
.mobile-tool-btn.recording i {
    color: white;
} 