* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1c1c1c;
    background-color: #ffffff;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.logo img {
    width: 100px;
    height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 50px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e3b21e;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
                url('https://fornopiombo.com/cdn/shop/articles/Delicious-Italian-Style-Menu-Items-To-Serve-At-Your-Dream-Restaurant.jpg?v=1658443933') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.welcome {
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero h1 {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 5px;
    color: #e3b21e;
    font-family: 'Playfair Display', serif;
    text-shadow: #3a3939 2px 2px 4px;
}

.tagline {
    font-size: 24px;
    margin-bottom: 40px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.cta-button {
    display: inline-block;
    background-color: #8B2635;
    color: #ffffff;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #6B7A52;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

.outline-button {
    display: inline-block;
    background-color: #8B2635;
    color: #ffffff;
    padding: 13px 40px;
    border-radius: 30px;
    font-size: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
    transition: all 0.3s ease-in-out;
}

.outline-button:hover {
    background-color: #6B7A52;
    color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

.review-button {
    display: inline-block;
    background-color: #8B2635;
    color: #ffffff;
    padding: 13px 40px;
    border-radius: 30px;
    font-size: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
    transition: all 0.3s ease-in-out;
}

.review-button:hover {
    background-color: #6B7A52;
    color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

.section-label {
    display: block;
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: bold;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-sub {
    margin-top: 14px;
    font-size: 16px;
    font-style: italic;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.hero-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}

.hero-social .social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 55px;
    width: 55px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    background-color: #6B7A52;
    font-size: 18px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    padding-left: 16px;
}

.hero-social .social-icon.facebook:hover { background-color: #1877F2; }
.hero-social .social-icon.instagram:hover { background-color: #E1306C; }
.hero-social .social-icon.twitter:hover { background-color: #000000; }

.hero-social .social-icon:hover {
    width: 150px;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-social .social-icon i {
    min-width: 24px;
    text-align: center;
}

.hero-social .social-icon span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.hero-social .social-icon:hover span {
    opacity: 1;
}

/* ABOUT */
.about-section {
    background-color: #f5efe0;
    padding: 100px 80px;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.about-img {
    width: 480px;
    height: 540px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #e3b21e;
    color: #1c1c1c;
    padding: 20px 28px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 2px;
}

.about-text .section-label {
    color: #e3b21e;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.25;
    color: #313030;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}


/* TESTIMONIALS */
.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                url(https://true-italian.com/wp-content/uploads/2021/10/restaurant-691397_1920.jpg) center/cover no-repeat;
    padding: 100px 80px;
}

.testimonials-section .section-label {
    color: #e3b21e;
}

.testimonials-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #f5efe0;
    font-weight: bold;
}

.testimonials-section .section-sub {
    color: rgba(245, 239, 224, 0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.section_card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section_card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

.section_card::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 400%;
    aspect-ratio: 1;
    border-radius: 100%;
    background: #6B7A52;
    z-index: -1;
    transition: 0.5s;
    transform: translate(-75%, -75%) scale(0.3);
}

.section_card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.section_card span {
    display: block;
    font-size: 3rem;
    color: #6B7A52;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.section_card:hover span {
    color: #ffffff;
}

.section_card img {
    margin-bottom: 0.75rem;
    max-width: 70px;
    border-radius: 100%;
    border: 2px solid #6B7A52;
    transition: 0.3s;
}

.section_card:hover img {
    border-color: #ffffff;
}

.section_card h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6B7A52;
    transition: 0.3s;
}

.section_card p {
    margin-bottom: 0.75rem;
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    transition: 0.3s;
    flex: 1;
}

.section_card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #6B7A52;
    transition: 0.3s;
}

.section_card h6 {
    font-size: 0.85rem;
    font-weight: 400;
    color: #777;
    transition: 0.3s;
}

.section_card:hover h4,
.section_card:hover h5 {
    color: #ffffff;
}

.section_card:hover p,
.section_card:hover h6 {
    color: rgba(255, 255, 255, 0.9);
}


/* SERVICES */
.services-section {
    background-color: #f5efe0;
    padding: 100px 80px;
}

.services-section .section-label {
    color: #e3b21e;
}

.services-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #313030;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e2da;
    border-radius: 6px;
    padding: 50px 40px;
    text-align: center;
    text-decoration: none;
    color: #313030;
    display: block;
    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    background-color: #8B2635;
    border-color: #8B2635;
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
    transition: color 0.3s;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.card-link {
    font-size: 14px;
    color: #e3b21e;
    letter-spacing: 1px;
    font-weight: bold;
}

.service-card:hover .card-link {
    color: #ffffff;
}

/* MENU */
.menu-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
                url(https://true-italian.com/wp-content/uploads/2021/10/restaurant-691397_1920.jpg) center/cover no-repeat;
    padding: 100px 80px;
}

.menu-section .section-label {
    color: #e3b21e;
}

.menu-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #f5efe0;
    font-weight: bold;
}

.menu-section .section-sub {
    color: rgba(245, 239, 224, 0.85);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.menu-card {
    background-color: #ffffff;
    border: 1px solid #e8e2da;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.menu-card::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: #6B7A52;
    transition: width 0.3s;
}

.menu-card:hover::after {
    width: 100%;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

.menu-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-info {
    padding: 22px 20px;
}

.menu-card-info h3 {
    font-size: 17px;
    color: #1c1c1c;
    margin-bottom: 8px;
    font-weight: bold;
}

.menu-card-info p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.menu-button {
    display: inline-block;
    background-color: #8B2635;
    color: #ffffff;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
    transition: all 0.3s ease-in-out;
}

.menu-button:hover {
    background-color: #6B7A52;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

/* FAQ */
.faq-section {
  background-color: #f5efe0;
  padding: 100px 80px;
  text-align: center;
}

.faq-top {
  margin-bottom: 55px;
}

.faq-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: bold;
  color: #e3b21e;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #2a1a0e;
  margin: 0 0 14px;
  font-weight: bold;
}

.faq-subtitle {
  font-size: 15px;
  color: #777;
  font-style: italic;
}

.faq-subtitle a {
  color: #8b2635;
  font-weight: 600;
  text-decoration: none;
}

.faq-subtitle a:hover {
  text-decoration: underline;
}

.faq-section .faq-list {
  flex: 1;
  display: flex;
  max-width: 700px;
  flex-direction: column;
  margin: 0 auto 50px;
}

.faq-section details {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(42, 26, 14, 0.1);
  transition: box-shadow 0.3s ease;
  text-align: left;
}

.faq-section details:hover {
  box-shadow: 0 4px 20px rgba(42, 26, 14, 0.1);
}

.faq-section details[open] {
  border-color: rgba(139, 38, 53, 0.25);
  box-shadow: 0 4px 20px rgba(139, 38, 53, 0.08);
}

.faq-section details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 0.5s ease, content-visibility 0.5s ease;
  transition-behavior: allow-discrete;
}

.faq-section details[open]::details-content {
  block-size: auto;
}

.faq-section .answer {
  padding: 0 24px 20px 64px;
  border-top: 1px solid rgba(42, 26, 14, 0.07);
}

.faq-section .answer p {
  padding-top: 16px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.faq-section summary {
  padding: 20px;
  line-height: 1.4;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background-color 0.2s ease;
  color: #2a1a0e;
}

.faq-section summary:hover {
  background-color: #fdf7ec;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section .q-num {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  color: #8B2635;
  background: rgba(139, 38, 53, 0.08);
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
  transition: background 0.2s ease;
}

.faq-section details[open] .q-num {
  background: #8B2635;
  color: #fff;
}

.faq-section summary::after {
  content: '▼';
  font-size: 10px;
  color: #8b2635;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-section details[open] > summary::after {
  transform: rotate(-180deg);
}

.faq-cta {
  text-align: center;
}

.faq-section details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 0.5s ease, content-visibility 0.5s ease;
  transition-behavior: allow-discrete;
}

.faq-section details[open]::details-content {
  block-size: auto;
}
:root { interpolate-size: allow-keywords; }

/* CONTACT CTA */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url(https://img.freepik.com/premium-photo/blurred-italian-restaurant-background-vintage-style_1257223-94415.jpg) center/cover no-repeat;
    padding: 100px 80px;
    text-align: center;
}

.contact-section .section-label {
    color: #e3b21e;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #f5efe0;
    font-weight: bold;
    margin-bottom: 16px;
    text-shadow: #3a3939 2px 2px 4px;
}

.contact-section p {
    font-size: 17px;
    color: rgba(245, 239, 224, 0.85);
    margin-bottom: 36px;
    font-style: italic;
}

.contact-section .cta-button {
    background-color: #8B2635;
    color: #ffffff;
}

.contact-section .cta-button:hover {
    background-color: #6B7A52;
    color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

/* FOOTER */
footer {
    background-color: #6B7A52;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}