:root {
    /* Orange Color Palette */
    --primary-orange: #ff6b35;
    --primary-orange-dark: #e55a2b;
    --primary-orange-light: #ff8555;
    --accent-orange: #ff9f66;
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
    --text-light: #f5f5f5;
    --text-cream: #fef5ed;
    --text-gray: #b8b8b8;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
    transition: transform 0.3s ease;
}

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

.menu-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.menu-btn:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.brand-name {
    letter-spacing: 0.15em;
    font-weight: 700;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.accent {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    animation: expandWidth 0.8s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-cream);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.menu-button {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-decoration: none;
    display: inline-block;
}

.menu-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.menu-button:hover::before {
    width: 300px;
    height: 300px;
}

.menu-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.menu-button:active {
    transform: translateY(-2px) scale(1.02);
}

.vat-notice {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.95rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

/* Floating Decorative Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-gray);
    margin-top: 50px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 90%;
    }

    .hero-description {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo-img {
        height: 40px;
    }

    .menu-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 100px 20px 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .brand-name {
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 95%;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 90%;
        padding: 0 10px;
    }

    .menu-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        gap: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-button {
        width: 100%;
        padding: 16px 35px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .vat-notice {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 15px 30px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .brand-name {
        letter-spacing: 0.08em;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 5px;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 5px;
        line-height: 1.5;
    }

    .menu-button {
        padding: 15px 30px;
        font-size: 0.95rem;
        letter-spacing: 0.8px;
    }

    .vat-notice {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search Toggle Button */
.search-toggle-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.search-toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-orange);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.search-toggle-btn:hover::before {
    width: 100%;
    height: 100%;
}

.search-toggle-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.search-toggle-btn:hover .search-icon {
    color: white;
    position: relative;
    z-index: 1;
}

.search-icon {
    transition: all 0.3s ease;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    animation: slideInDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Input Wrapper */
.search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    transition: all 0.3s ease;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-input:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.search-close-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.1);
    border: none;
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-50%) rotate(90deg);
}

/* Search Results */
.search-results {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange-dark);
}

.search-hint {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    padding: 40px 20px;
}

.search-result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.4s ease-out both;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-orange);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.search-result-category {
    font-size: 0.85rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.search-result-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-cream);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.search-result-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.search-result-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease-out;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-results-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.no-results-suggestion {
    font-size: 0.95rem;
    color: var(--text-gray);
    opacity: 0.7;
}

/* Responsive Search Styles */
@media (max-width: 768px) {
    .search-toggle-btn {
        width: 40px;
        height: 40px;
    }

    .search-overlay {
        padding-top: 80px;
    }

    .search-input {
        font-size: 1rem;
        padding: 18px 55px 18px 50px;
    }

    .search-result-name {
        font-size: 1.1rem;
    }

    .search-result-description {
        font-size: 0.9rem;
    }
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-logo {
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.preloader-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(255, 107, 53, 0.9));
    }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }

    50% {
        text-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
    }
}

.loading-bar-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange), var(--primary-orange));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loadingProgress 2.5s ease-in-out forwards, gradientShift 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

@keyframes loadingProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.loading-text {
    font-size: 1rem;
    color: var(--text-gray);
    animation: textFade 1.5s ease-in-out infinite;
}

@keyframes textFade {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Animated Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    opacity: 0.3;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.particle-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
    animation-duration: 4.5s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.particle-4 {
    width: 70px;
    height: 70px;
    bottom: 25%;
    right: 10%;
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}

.particle-5 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 4s;
}

.particle-6 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 5%;

    animation-delay: 2.5s;
    animation-duration: 5s;
}

/* Order Online Section */
.order-online-section {
    width: 100%;
    margin: 2rem auto 0;
    padding: 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.order-online-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.order-online-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.order-online-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: transparent;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}


@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(-15px, -50px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translate(30px, -20px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-logo-img {
        height: 80px;
    }

    .preloader-text {
        font-size: 2rem;
    }

    .loading-bar-container {
        width: 250px;
    }

    .particle {
        display: none;
    }
}