/* Main theme asset stylesheet - Savory Theme - Modern & Attractive */
:root {
    --site-max-width: 1200px;
    --primary-color: #b23a48;
    --primary-dark: #8c2c37;
    --primary-light: #d45a6a;
    --accent-color: #ff6b6b;
    --gradient-primary: linear-gradient(135deg, #b23a48 0%, #8c2c37 100%);
    --gradient-hero: linear-gradient(135deg, rgba(178, 58, 72, 0.92) 0%, rgba(44, 44, 44, 0.88) 100%);
    --text-color: #1a1a1a;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    --border-color: #e5e7eb;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.2);
    --shadow-colored: 0 8px 24px rgba(178, 58, 72, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    color: var(--text-color);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles - Modern Glass Effect */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.site-header .wrap {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-branding .custom-logo {
    max-height: 55px;
    width: auto;
    transition: var(--transition);
}

.site-branding .custom-logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-weight: 800;
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.site-title:hover {
    transform: translateY(-1px);
}

/* Navigation - Modern Style */
.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.site-navigation li {
    margin: 0;
}

.site-navigation a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.625rem 1.25rem;
    position: relative;
    transition: var(--transition);
    border-radius: 8px;
}

.site-navigation a:hover,
.site-navigation a:focus {
    color: var(--primary-color);
    background: rgba(178, 58, 72, 0.08);
}

.site-navigation .current-menu-item > a {
    color: var(--primary-color);
    background: rgba(178, 58, 72, 0.1);
}

/* Main Content */
#site-content {
    min-height: calc(100vh - 200px);
}

.wrap {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section - Ultra Modern */
.hero {
    color: #fff;
    padding: 10rem 2rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(178, 58, 72, 0.3) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.hero .wrap {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-cta {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 1.125rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--bg-white);
}

.hero-cta:hover::before {
    left: 0;
}

/* About Preview Section - Modern Card Style */
.about-preview {
    padding: 6rem 0;
    background: var(--bg-gradient);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.about-preview .about-inner {
    display: flex;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.about-preview .about-text {
    flex: 1;
}

.about-preview h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.about-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-preview p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.about-preview .button {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.about-preview .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;
}

.about-preview .button:hover::before {
    width: 300px;
    height: 300px;
}

.about-preview .button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.about-preview .about-image {
    flex: 0 0 450px;
    position: relative;
}

.about-preview .about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.1;
}

.about-preview .about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    position: relative;
}

.about-preview .about-image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Menu Highlights - Premium Card Design */
.menu-highlights {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
}

.menu-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.menu-highlights h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.menu-highlights > .wrap > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.menu-item:hover::before {
    opacity: 0.03;
}

.menu-item > * {
    position: relative;
    z-index: 2;
}

.menu-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 0;
    transition: var(--transition);
    display: block;
}

.menu-item:hover img {
    transform: scale(1.08);
}

.menu-item-content {
    padding: 2rem;
}

.menu-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.menu-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-item .price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.75rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(178, 58, 72, 0.1);
    border-radius: 50px;
}

/* Testimonials - Elegant Design */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.testimonials h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.testimonials > .wrap > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 4rem;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial {
    display: none;
    text-align: center;
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 0;
    display: block;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.125rem;
}

.testimonial cite::before {
    content: '— ';
    color: var(--primary-color);
}

/* Footer - Modern Design */
.site-footer {
    background: linear-gradient(180deg, var(--text-color) 0%, #0f0f0f 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.site-footer p {
    margin: 0;
    opacity: 0.85;
    font-size: 0.95rem;
}

.site-footer-widgets {
    padding: 5rem 0;
    background: var(--bg-white);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-widgets .widget {
    margin-bottom: 0;
}

.footer-widgets .widget-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Page Content - Enhanced Typography */
.page-about,
.page-menu,
.page-contact {
    padding: 5rem 0;
}

.entry-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 2rem 0 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -1px;
}

.entry-content {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    line-height: 1.9;
}

.entry-content p {
    margin-bottom: 1.75rem;
}

.entry-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--text-color);
    line-height: 1.3;
}

.entry-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem;
    color: var(--text-color);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

.entry-content li {
    margin-bottom: 0.75rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 1.25rem;
    line-height: 1.8;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.entry-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

/* Buttons - Modern Style */
.button {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.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;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .wrap {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .site-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .site-navigation a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 6rem 1rem;
        background-attachment: scroll;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .about-preview {
        padding: 4rem 0;
    }

    .about-preview .about-inner {
        flex-direction: column;
        gap: 3rem;
    }

    .about-preview h2,
    .menu-highlights h2,
    .testimonials h2 {
        font-size: 2.25rem;
    }

    .about-preview .about-image {
        flex: 1;
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wrap {
        padding: 1.5rem;
    }

    .testimonials-slider {
        padding: 3rem 2rem;
    }

    .testimonial {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .about-preview h2,
    .menu-highlights h2,
    .testimonials h2 {
        font-size: 1.875rem;
    }

    .entry-title {
        font-size: 2.25rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
