:root {
              /* Colors */
              --bg-dark: #0a0a0c;
              --bg-card: rgba(255, 255, 255, 0.03);
              --bg-card-hover: rgba(255, 255, 255, 0.08);
              --text-main: #f5f5f5;
              --text-muted: #a0a0a5;
              --accent: #d4af37;
              /* Warm gold/copper */
              --accent-hover: #f3c93f;
              --border-color: rgba(255, 255, 255, 0.08);
              --glass-bg: rgba(10, 10, 12, 0.7);
              --error: #ff4d4d;

              /* Typography */
              --font-heading: 'Playfair Display', serif;
              --font-body: 'Inter', sans-serif;

              /* Layout */
              --border-radius: 16px;
              --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
              margin: 0;
              padding: 0;
              box-sizing: border-box;
}

body {
              background-color: var(--bg-dark);
              color: var(--text-main);
              font-family: var(--font-body);
              line-height: 1.6;
              overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
              font-family: var(--font-heading);
              font-weight: 600;
}

a {
              color: var(--accent);
              text-decoration: none;
              transition: var(--transition);
}

a:hover {
              color: var(--accent-hover);
}

/* Animations */
@keyframes fadeInUp {
              from {
                            opacity: 0;
                            transform: translateY(30px);
              }

              to {
                            opacity: 1;
                            transform: translateY(0);
              }
}

.animate-up {
              animation: fadeInUp 1s forwards ease-out;
              opacity: 0;
}

.delay-1 {
              animation-delay: 0.2s;
}

.delay-2 {
              animation-delay: 0.4s;
}

.delay-3 {
              animation-delay: 0.6s;
}

.fade-in {
              opacity: 0;
              transform: translateY(20px);
              transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
              opacity: 1;
              transform: translateY(0);
}

/* Hero Section */
.hero {
              position: relative;
              height: 70vh;
              min-height: 500px;
              display: flex;
              align-items: center;
              justify-content: center;
              text-align: center;
              padding: 2rem;
              overflow: hidden;
              background-image: url('hero_trattoria.png');
              /* Expected generated image name, will be updated */
              background-size: cover;
              background-position: center;
              background-attachment: fixed;
              /* Parallax effect */
}

.hero-overlay {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: linear-gradient(to bottom, rgba(10, 10, 12, 0.3) 0%, rgba(10, 10, 12, 0.9) 100%);
}

.hero-content {
              position: relative;
              z-index: 2;
              max-width: 800px;
}

.restaurant-type {
              font-size: 0.9rem;
              text-transform: uppercase;
              letter-spacing: 3px;
              color: var(--accent);
              margin-bottom: 1rem;
              display: block;
}

.hero h1 {
              font-size: clamp(2.5rem, 5vw, 4.5rem);
              margin-bottom: 1.5rem;
              line-height: 1.1;
              text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.rating-badge {
              display: flex;
              align-items: center;
              justify-content: center;
              gap: 0.5rem;
              font-size: 1.1rem;
              margin-bottom: 1.5rem;
}

.stars {
              color: var(--accent);
}

.review-count {
              color: var(--text-muted);
              font-size: 0.9rem;
}

.highlight-badge {
              display: inline-block;
              padding: 0.5rem 1rem;
              background: rgba(212, 175, 55, 0.15);
              border: 1px solid rgba(212, 175, 55, 0.3);
              border-radius: 30px;
              color: var(--accent);
              font-size: 0.9rem;
              backdrop-filter: blur(10px);
}

/* Action Bar */
.action-bar {
              max-width: 900px;
              margin: -40px auto 4rem auto;
              background: var(--glass-bg);
              backdrop-filter: blur(20px);
              -webkit-backdrop-filter: blur(20px);
              border: 1px solid var(--border-color);
              border-radius: var(--border-radius);
              padding: 1.5rem;
              display: flex;
              justify-content: space-around;
              flex-wrap: wrap;
              gap: 1rem;
              position: relative;
              z-index: 10;
              box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.action-btn {
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 0.5rem;
              background: none;
              border: none;
              color: var(--text-main);
              cursor: pointer;
              font-family: inherit;
              font-size: 0.85rem;
              transition: var(--transition);
              min-width: 80px;
}

.action-btn .icon-wrapper {
              width: 48px;
              height: 48px;
              border-radius: 50%;
              background: var(--bg-card);
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 1.2rem;
              transition: var(--transition);
              border: 1px solid transparent;
}

.action-btn:hover .icon-wrapper {
              background: var(--bg-card-hover);
              color: var(--accent);
              transform: translateY(-5px);
              border-color: var(--accent);
              box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.action-btn.highlight .icon-wrapper {
              background: var(--accent);
              color: var(--bg-dark);
}

.action-btn.highlight:hover .icon-wrapper {
              background: var(--accent-hover);
              transform: translateY(-5px);
              box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Main Container */
.container {
              max-width: 1100px;
              margin: 0 auto;
              padding: 0 2rem 4rem 2rem;
}

.content-grid {
              display: grid;
              grid-template-columns: 1.5fr 1fr;
              gap: 2rem;
}

/* Cards Shared Styles */
.info-card,
.details-card,
.actions-card {
              background: var(--bg-card);
              border: 1px solid var(--border-color);
              border-radius: var(--border-radius);
              padding: 2.5rem;
              transition: var(--transition);
}

.info-card:hover,
.details-card:hover,
.actions-card:hover {
              border-color: rgba(255, 255, 255, 0.15);
              background: rgba(255, 255, 255, 0.04);
}

h2 {
              font-size: 1.8rem;
              margin-bottom: 2rem;
              color: var(--accent);
              border-bottom: 1px solid var(--border-color);
              padding-bottom: 1rem;
}

/* Info Card List */
.info-item {
              display: flex;
              gap: 1.5rem;
              margin-bottom: 2rem;
}

.info-item:last-child {
              margin-bottom: 0;
}

.info-item>i {
              font-size: 1.5rem;
              color: var(--accent);
              margin-top: 5px;
}

.info-text strong {
              display: block;
              font-family: var(--font-heading);
              font-size: 1.2rem;
              margin-bottom: 0.5rem;
}

.info-text p {
              color: var(--text-muted);
}

/* Badges */
.travel-time {
              display: flex;
              gap: 1rem;
              margin-top: 1rem;
}

.badge {
              background: rgba(255, 255, 255, 0.05);
              padding: 0.4rem 0.8rem;
              border-radius: 20px;
              font-size: 0.85rem;
              display: flex;
              align-items: center;
              gap: 0.5rem;
              border: 1px solid var(--border-color);
}

.status-closed {
              color: var(--error);
              font-weight: 500;
}

.status-closed span {
              color: var(--text-main);
}

.dot {
              margin: 0 0.5rem;
              color: var(--text-muted);
}

/* Details Card */
.details-column {
              display: flex;
              flex-direction: column;
              gap: 2rem;
}

.price-range {
              display: flex;
              align-items: center;
              gap: 1rem;
}

.price-range i {
              font-size: 1.5rem;
              color: var(--accent);
              background: rgba(212, 175, 55, 0.1);
              width: 50px;
              height: 50px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 50%;
}

.price-range strong {
              display: block;
              font-size: 1.1rem;
}

.price-range p {
              color: var(--text-muted);
}

.divider {
              height: 1px;
              background: var(--border-color);
              margin: 2rem 0;
}

.services h3 {
              font-size: 1.2rem;
              margin-bottom: 1rem;
}

.service-list {
              list-style: none;
}

.service-list li {
              display: flex;
              align-items: center;
              gap: 0.8rem;
              margin-bottom: 0.8rem;
              color: var(--text-muted);
}

.service-list i {
              color: #4cd137;
              /* Success green */
}

/* Actions Card */
.action-prompt {
              font-family: var(--font-heading);
              font-size: 1.2rem;
              margin-bottom: 1.5rem;
              text-align: center;
}

.action-links {
              display: flex;
              flex-direction: column;
              gap: 1rem;
}

.link-btn {
              display: flex;
              align-items: center;
              gap: 0.8rem;
              padding: 1rem;
              background: var(--bg-dark);
              border: 1px solid var(--border-color);
              border-radius: 8px;
              color: var(--text-main);
              font-size: 0.9rem;
}

.link-btn:hover {
              background: rgba(255, 255, 255, 0.05);
              border-color: var(--text-muted);
}

/* Footer */
footer {
              text-align: center;
              padding: 2rem;
              color: var(--text-muted);
              font-size: 0.9rem;
              border-top: 1px solid var(--border-color);
              margin-top: 2rem;
}

/* Menu Section */
.menu-section {
              padding: 4rem 0;
}

.section-heading {
              text-align: center;
              margin-bottom: 3rem;
              max-width: 700px;
              margin-left: auto;
              margin-right: auto;
}

.section-heading h2 {
              font-size: 2.5rem;
              color: var(--accent);
              margin-bottom: 1rem;
              border-bottom: none;
              padding-bottom: 0;
}

.section-description {
              color: var(--text-muted);
              font-size: 1.1rem;
}

.menu-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
              gap: 2rem;
}

.dish-card {
              background: var(--bg-card);
              border: 1px solid var(--border-color);
              border-radius: var(--border-radius);
              overflow: hidden;
              transition: var(--transition);
              display: flex;
              flex-direction: column;
}

.dish-card:hover {
              transform: translateY(-10px);
              border-color: var(--accent);
              box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dish-card img {
              width: 100%;
              height: 240px;
              object-fit: cover;
              border-bottom: 2px solid var(--accent);
}

.dish-card h3 {
              font-size: 1.4rem;
              margin: 1.5rem 1.5rem 0.5rem;
              color: var(--text-main);
}

.dish-card p {
              color: var(--text-muted);
              font-size: 0.95rem;
              margin: 0 1.5rem 1.5rem;
              flex-grow: 1;
}

.dish-card .price {
              display: block;
              margin: 0 1.5rem 1.5rem;
              font-family: var(--font-heading);
              font-size: 1.3rem;
              color: var(--accent);
              font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
              .content-grid {
                            grid-template-columns: 1fr;
              }
}

@media (max-width: 600px) {
              .hero h1 {
                            font-size: 2.2rem;
              }

              .action-bar {
                            margin: -20px 1rem 3rem 1rem;
                            padding: 1rem;
                            justify-content: center;
              }

              .action-btn {
                            min-width: 30%;
              }

              .info-card,
              .details-card,
              .actions-card {
                            padding: 1.5rem;
              }
}