@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=Dancing+Script:wght@700&display=swap'); :root { --primary-color: #c00000; --riecco-red: #c00000; --riecco-red-dark: #8a0000; --riecco-cream: #faf6f0; --riecco-dark: #1a1108; --riecco-gold: #d4a843; } @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=Dancing+Script:wght@700&display=swap'); #sections section { overflow: hidden; } :root { --riecco-red: #c00000; --riecco-red-dark: #8a0000; --riecco-cream: #faf6f0; --riecco-warm: #f5ede0; --riecco-dark: #1a1108; --riecco-gold: #d4a843; --riecco-green: #2d5a27; } .riecco-hero { position: relative; min-height: 100vh; background: var(--riecco-dark); overflow: hidden; display: flex; align-items: center; } .riecco-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: riecco-zoom-out 8s ease forwards; } @keyframes riecco-zoom-out { from { transform: scale(1.1); } to { transform: scale(1.0); } } .riecco-hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26, 17, 8, 0.92) 0%, rgba(192, 0, 0, 0.15) 60%, rgba(26, 17, 8, 0.80) 100%); } .riecco-hero__grain { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); background-size: 256px; } .riecco-hero__badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(192, 0, 0, 0.18); border: 1px solid rgba(192, 0, 0, 0.4); border-radius: 50px; padding: 8px 20px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #e8a0a0; margin-bottom: 32px; animation: riecco-fade-up 0.8s ease 0.2s both; } .riecco-hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--riecco-red); animation: riecco-pulse 2s infinite; } @keyframes riecco-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } } .riecco-hero__eyebrow { font-family: 'Dancing Script', cursive; font-size: clamp(28px, 4vw, 48px); color: var(--riecco-gold); display: block; margin-bottom: 8px; animation: riecco-fade-up 0.8s ease 0.4s both; } .riecco-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(52px, 9vw, 128px); font-weight: 900; color: #fff; line-height: 0.88; text-transform: uppercase; letter-spacing: -3px; margin-bottom: 28px; animation: riecco-fade-up 0.8s ease 0.6s both; } .riecco-hero__title em { font-style: italic; color: var(--riecco-red); display: block; margin-right: 5px; margin-left: 5px; } .riecco-hero__subtitle { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 300; color: rgba(255, 255, 255, 0.65); line-height: 1.7; max-width: 480px; margin-bottom: 48px; animation: riecco-fade-up 0.8s ease 0.8s both; } @keyframes riecco-fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .riecco-hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; animation: riecco-fade-up 0.8s ease 1s both; } .riecco-btn-primary { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: var(--riecco-red); border: none; padding: 18px 40px; border-radius: 0; text-decoration: none; display: inline-block; position: relative; overflow: hidden; transition: all 0.4s ease; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); } .riecco-btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--riecco-red-dark); transform: translateX(-101%); transition: transform 0.4s ease; } .riecco-btn-primary:hover::before { transform: translateX(0); } .riecco-btn-primary span { position: relative; z-index: 1; } .riecco-btn-primary:hover { color: #fff; } .riecco-btn-ghost { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s ease; } .riecco-btn-ghost::after { content: '→'; transition: transform 0.3s ease; } .riecco-btn-ghost:hover { color: var(--riecco-gold); } .riecco-btn-ghost:hover::after { transform: translateX(6px); } .riecco-hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: riecco-fade-up 0.8s ease 1.4s both; } .riecco-hero__scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent); animation: riecco-scroll-line 2s ease-in-out infinite; } @keyframes riecco-scroll-line { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } } .riecco-hero__scroll-text { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); } .riecco-hero__focaccia { position: absolute; right: -60px; bottom: -20px; width: 55%; max-width: 680px; opacity: 0.9; filter: drop-shadow(0 0 60px rgba(192, 0, 0, 0.2)); animation: riecco-float 6s ease-in-out infinite; pointer-events: none; } @keyframes riecco-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(0deg); } } .riecco-hero__locations { position: absolute; bottom: 40px; right: 40px; display: flex; flex-direction: column; gap: 16px; animation: riecco-fade-up 0.8s ease 1.2s both; } .riecco-hero__loc-item { display: flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255, 255, 255, 0.5); letter-spacing: 1px; } .riecco-hero__loc-dot { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--riecco-red); flex-shrink: 0; } .riecco-strip { background: var(--riecco-red); padding: 16px 0; overflow: hidden; position: relative; } .riecco-strip__track { display: flex; gap: 0; animation: riecco-marquee 20s linear infinite; white-space: nowrap; } @keyframes riecco-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } } .riecco-strip__item { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: rgba(255, 255, 255, 0.9); padding: 0 40px; display: inline-flex; align-items: center; gap: 20px; } .riecco-strip__item::after { content: '.'; font-size: 10px; color: rgba(255, 255, 255, 0.5); } .riecco-about { background: var(--riecco-cream); padding: 120px 0; position: relative; overflow: hidden; } .riecco-about::before { content: 'LIGURIA'; position: absolute; font-family: 'Playfair Display', serif; font-size: clamp(100px, 18vw, 220px); font-weight: 900; color: rgba(192, 0, 0, 0.04); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; letter-spacing: -8px; } .riecco-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--riecco-red); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; } .riecco-label::before { content: ''; display: block; width: 32px; height: 2px; background: var(--riecco-red); } .riecco-about__title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: var(--riecco-dark); line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; } .riecco-about__title em { font-style: italic; color: var(--riecco-red); margin-right: 5px; margin-left: 5px; } .riecco-about__text { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 300; color: #5a4a3a; line-height: 1.8; margin-bottom: 32px; } .riecco-about__img-main { border-radius: 4px; width: 100%; height: 520px; object-fit: cover; display: block; position: relative; z-index: 2; } .riecco-about__img-accent { position: absolute; bottom: -40px; left: -40px; width: 55%; border-radius: 4px; border: 6px solid var(--riecco-cream); z-index: 3; box-shadow: 0 30px 80px rgba(26, 17, 8, 0.2); } .riecco-about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(192, 0, 0, 0.15); padding-top: 40px; margin-top: 40px; } .riecco-stat { padding: 0 20px 0 0; border-right: 1px solid rgba(192, 0, 0, 0.12); } .riecco-stat:last-child { border-right: none; padding-left: 20px; } .riecco-stat:nth-child(2) { padding: 0 20px; } .riecco-stat__num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--riecco-red); line-height: 1; display: block; } .riecco-stat__label { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #8a7a6a; display: block; margin-top: 4px; } .riecco-specialties { background: var(--riecco-dark); padding: 120px 0; position: relative; overflow: hidden; } .riecco-specialties__title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: #fff; letter-spacing: -1px; margin-bottom: 16px; } .riecco-specialties__title em { font-style: italic; color: var(--riecco-red); margin-right: 5px; margin-left: 5px; } .riecco-specialty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; } .riecco-specialty-card { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; } .riecco-specialty-card:first-child { grid-row: span 2; aspect-ratio: auto; } .riecco-specialty-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; } .riecco-specialty-card:hover .riecco-specialty-card__bg { transform: scale(1.08); } .riecco-specialty-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 17, 8, 0.9) 0%, rgba(26, 17, 8, 0.2) 60%); transition: background 0.4s ease; } .riecco-specialty-card:hover .riecco-specialty-card__overlay { background: linear-gradient(to top, rgba(192, 0, 0, 0.8) 0%, rgba(26, 17, 8, 0.3) 60%); } .riecco-specialty-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; } .riecco-specialty-card__tag { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--riecco-gold); display: block; margin-bottom: 8px; } .riecco-specialty-card__name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.5px; display: block; margin-bottom: 8px; } .riecco-specialty-card__desc { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255, 255, 255, 0.65); line-height: 1.6; display: block; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0; } .riecco-specialty-card:hover .riecco-specialty-card__desc { max-height: 80px; opacity: 1; } .riecco-specialty-card__price { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--riecco-gold); display: inline-block; margin-top: 12px; } .riecco-menu-preview { background: var(--riecco-warm); padding: 120px 0; position: relative; } .riecco-menu-item { display: flex; align-items: center; gap: 24px; padding: 24px 0; border-bottom: 1px dashed rgba(26, 17, 8, 0.12); transition: all 0.3s ease; cursor: pointer; } .riecco-menu-item:hover { padding-left: 12px; } .riecco-menu-item:hover .riecco-menu-item__name { color: var(--riecco-red); } .riecco-menu-item__img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid rgba(192, 0, 0, 0.15); transition: border-color 0.3s ease; } .riecco-menu-item:hover .riecco-menu-item__img { border-color: var(--riecco-red); } .riecco-menu-item__name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--riecco-dark); text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s ease; } .riecco-menu-item__desc { font-family: 'DM Sans', sans-serif; font-size: 13px; color: #8a7a6a; margin-top: 3px; } .riecco-menu-item__badge { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 30px; margin-left: 8px; } .riecco-menu-item__badge--new { background: var(--riecco-green); color: #fff; } .riecco-menu-item__badge--hot { background: var(--riecco-red); color: #fff; } .riecco-menu-item__price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--riecco-dark); margin-left: auto; flex-shrink: 0; } .riecco-menu-item__price sup { font-size: 14px; vertical-align: super; } .riecco-manifesto { background: var(--riecco-red); padding: 100px 0; position: relative; overflow: hidden; text-align: center; } .riecco-manifesto::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); background-size: 200px; opacity: 0.06; } .riecco-manifesto__quote { font-family: 'Dancing Script', cursive; font-size: clamp(40px, 7vw, 96px); color: #fff; line-height: 1.1; position: relative; z-index: 1; margin-bottom: 32px; } .riecco-manifesto__sub { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 300; color: rgba(255, 255, 255, 0.75); letter-spacing: 3px; text-transform: uppercase; position: relative; z-index: 1; } .riecco-manifesto__divider { width: 60px; height: 2px; background: rgba(255, 255, 255, 0.4); margin: 24px auto; position: relative; z-index: 1; } .riecco-reviews { background: var(--riecco-dark); padding: 120px 0; position: relative; } .riecco-review-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 4px; padding: 40px; height: 100%; transition: all 0.4s ease; position: relative; overflow: hidden; } .riecco-review-card::before { content: '"'; position: absolute; top: -20px; left: 24px; font-family: 'Playfair Display', serif; font-size: 160px; color: rgba(192, 0, 0, 0.12); line-height: 1; pointer-events: none; } .riecco-review-card:hover { background: rgba(192, 0, 0, 0.08); border-color: rgba(192, 0, 0, 0.25); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); } .riecco-review-card__stars { color: var(--riecco-gold); font-size: 14px; margin-bottom: 16px; display: flex; gap: 4px; } .riecco-review-card__text { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300; color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 24px; font-style: italic; } .riecco-review-card__author { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.9); letter-spacing: 1px; text-transform: uppercase; } .riecco-franchise { background: var(--riecco-cream); padding: 120px 0; position: relative; overflow: hidden; } .riecco-franchise__bg-num { position: absolute; font-family: 'Playfair Display', serif; font-size: clamp(180px, 30vw, 360px); font-weight: 900; color: rgba(192, 0, 0, 0.05); right: -40px; top: 50%; transform: translateY(-50%); line-height: 1; pointer-events: none; letter-spacing: -10px; } .riecco-franchise__title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: var(--riecco-dark); letter-spacing: -2px; margin-bottom: 16px; line-height: 1.05; } .riecco-franchise__title em { font-style: italic; color: var(--riecco-red); margin-right: 5px; margin-left: 5px; } .riecco-franchise__price { display: inline-block; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; background: var(--riecco-red); padding: 10px 28px; margin-bottom: 28px; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); } .riecco-franchise__feature { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; } .riecco-franchise__feature-icon { width: 40px; height: 40px; background: rgba(192, 0, 0, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--riecco-red); flex-shrink: 0; font-size: 16px; } .riecco-franchise__feature-text { font-family: 'DM Sans', sans-serif; font-size: 15px; color: #5a4a3a; line-height: 1.6; } .riecco-franchise__feature-title { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--riecco-dark); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; } .riecco-locations { background: var(--riecco-dark); padding: 80px 0; } .riecco-location-card { border: 1px solid rgba(255, 255, 255, 0.08); padding: 40px; position: relative; transition: all 0.4s ease; } .riecco-location-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--riecco-red); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; } .riecco-location-card:hover::before { transform: scaleX(1); } .riecco-location-card:hover { background: rgba(192, 0, 0, 0.05); } .riecco-location-card__num { font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 900; color: rgba(255, 255, 255, 0.05); line-height: 1; margin-bottom: -16px; display: block; } .riecco-location-card__name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; display: block; margin-bottom: 8px; } .riecco-location-card__addr { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255, 255, 255, 0.5); line-height: 1.6; } .riecco-location-card__link { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--riecco-red); text-decoration: none; margin-top: 20px; transition: gap 0.3s ease; } .riecco-location-card__link:hover { gap: 14px; color: var(--riecco-red); } @media (max-width: 991px) { .riecco-hero__focaccia { display: none; } .riecco-hero__locations { display: none; } .riecco-specialty-grid { grid-template-columns: 1fr; } .riecco-specialty-card:first-child { grid-row: auto; aspect-ratio: 4/3; } .riecco-about__stats { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 767px) { .riecco-about__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; border-top: none; padding-top: 20px; } .riecco-stat { border-right: none; padding: 0; } .riecco-menu-item__price sup { font-size: 12px; } } [data-aos="riecco-reveal"] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; } [data-aos="riecco-reveal"].aos-animate { opacity: 1; transform: translateY(0); } .riecco-footer { background: var(--riecco-dark); position: relative; overflow: hidden; } .riecco-footer::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); background-size: 256px; opacity: 0.03; pointer-events: none; } .riecco-footer__cta { padding: 80px 0 60px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); position: relative; z-index: 1; } .riecco-footer__cta-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--riecco-gold); display: block; margin-bottom: 16px; text-align: center; } .riecco-footer__cta-title { font-family: 'Dancing Script', cursive; font-size: clamp(36px, 6vw, 72px); color: #fff; text-align: center; line-height: 1.1; margin-bottom: 32px; } .riecco-footer__cta-phone { display: flex; align-items: center; justify-content: center; gap: 16px; } .riecco-footer__phone-link { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -1px; transition: color 0.3s ease; position: relative; } .riecco-footer__phone-link::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--riecco-red); transform: scaleX(0); transition: transform 0.4s ease; } .riecco-footer__phone-link:hover { color: var(--riecco-gold); } .riecco-footer__phone-link:hover::after { transform: scaleX(1); } .riecco-footer__phone-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--riecco-red); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; animation: riecco-footer-pulse 2.5s ease-in-out infinite; } @keyframes riecco-footer-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(192, 0, 0, 0.4); } 50% { box-shadow: 0 0 0 12px rgba(192, 0, 0, 0); } } .riecco-footer__body { padding: 60px 0 40px; position: relative; z-index: 1; } .riecco-footer__logo img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; transition: opacity 0.3s ease; } .riecco-footer__logo img:hover { opacity: 1; } .riecco-footer__tagline { font-family: 'Dancing Script', cursive; font-size: 20px; color: rgba(255, 255, 255, 0.4); margin-top: 12px; display: block; } .riecco-footer__heading { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.3); display: block; margin-bottom: 20px; } .riecco-footer__address { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; color: rgba(255, 255, 255, 0.55); line-height: 1.8; } .riecco-footer__address strong { font-weight: 600; color: rgba(255, 255, 255, 0.8); display: block; margin-bottom: 4px; } .riecco-footer__address a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.3s ease; } .riecco-footer__address a:hover { color: var(--riecco-gold); } .riecco-footer__nav { list-style: none; padding: 0; margin: 0; } .riecco-footer__nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .riecco-footer__nav li:last-child { border-bottom: none; } .riecco-footer__nav a { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255, 255, 255, 0.5); text-decoration: none; display: flex; align-items: center; justify-content: space-between; padding: 10px 0; transition: color 0.3s ease, padding-left 0.3s ease; } .riecco-footer__nav a:hover { color: #fff; padding-left: 8px; } .riecco-footer__nav a::after { content: '→'; opacity: 0; transition: opacity 0.3s ease; font-size: 12px; } .riecco-footer__nav a:hover::after { opacity: 1; } .riecco-footer__hours { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255, 255, 255, 0.55); line-height: 1.8; } .riecco-footer__hours-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--riecco-green, #2d5a27); padding: 4px 12px; border-radius: 30px; margin-bottom: 12px; } .riecco-footer__hours-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #7fff7f; animation: riecco-footer-pulse 2s infinite; } .riecco-footer__social { display: flex; gap: 12px; margin-top: 24px; } .riecco-footer__social-link { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 16px; transition: all 0.3s ease; } .riecco-footer__social-link:hover { background: var(--riecco-red); border-color: var(--riecco-red); color: #fff; transform: translateY(-3px); } .riecco-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 20px 0; position: relative; z-index: 1; } .riecco-footer__copyright { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255, 255, 255, 0.25); letter-spacing: 0.5px; } .riecco-footer__copyright a { color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: color 0.3s ease; } .riecco-footer__copyright a:hover { color: var(--riecco-gold); } .riecco-footer__powered { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255, 255, 255, 0.2); text-align: right; } .riecco-footer__powered a { color: rgba(255, 255, 255, 0.35); text-decoration: none; font-weight: 600; transition: color 0.3s ease; } .riecco-footer__powered a:hover { color: var(--riecco-gold); } .riecco-footer__divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(192, 0, 0, 0.3), transparent); margin: 0 0 40px; } @media (max-width: 767px) { .riecco-footer__powered { text-align: center; margin-top: 8px; } .riecco-footer__copyright { text-align: center; } } a.nav-link { color: white !important; } header-mob-sticky { position: absolute !important; } header.sticky-header { position: absolute !important; } header.sticky-header>.header-bottom>.container>div { justify-content: space-between; } .menu-list-item.active>a { color: #A70000 !important; font-weight: 800 !important; border-top: 2px solid white; } .logo-main>img { max-height: 150px; height: 150px !important; } .img-home-riecco { justify-self: center; width: 80% !important; } .separatore { width: 100% !important; height: auto; object-position: bottom; } .separatoregiu { width: 100% !important; height: auto; object-position: bottom; } .separe-rosso { z-index: 0 !important; position: relative; } .puntivendita { display: flex; flex-direction: column; } header .navbar-brand img { max-height: 120px; } @media (max-width: 590px) { header nav.navbar { background: #1d0704fa !important; } .navbar.header-dark .navbar-toggler-line { background-color: #ffffff69 !important; } header .navbar-brand img { max-height: 80px; } }