/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  /* Colors - Sushi Restaurant Theme */
  --primary-color: #d4504c;
  --primary-dark: #b33c38;
  --primary-light: #e67370;
  --secondary-color: #2c3e50;
  --accent-color: #f39c12;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;

  /* Container */
  --container-width: 1140px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.lead-text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar__menu {
  display: flex;
  gap: var(--spacing-md);
}

.navbar__link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: var(--spacing-xs) 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.navbar__cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--spacing-xs);
}

.navbar__toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all var(--transition-fast);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 80, 76, 0.8) 0%, rgba(44, 62, 80, 0.8) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-white);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  font-size: 1.25rem;
  color: #fbbf24;
}

.star.filled {
  color: #fbbf24;
}

.star.half {
  background: linear-gradient(90deg, #fbbf24 50%, rgba(255,255,255,0.3) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-text {
  font-size: 1rem;
  opacity: 0.9;
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
}

.hero__badges {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.badge {
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.875rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 2rem;
  color: var(--text-white);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
  background-color: var(--bg-white);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.feature-item {
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.feature-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.about__info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.info-card {
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.info-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

.atmosphere-tags,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-white);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery {
  background-color: var(--bg-light);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(212, 80, 76, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__icon {
  font-size: 3rem;
  color: var(--text-white);
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews {
  background-color: var(--bg-white);
}

.reviews__summary {
  margin-bottom: var(--spacing-lg);
}

.rating-overview {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg);
  background-color: var(--bg-light);
  border-radius: 12px;
}

.rating-score {
  text-align: center;
}

.score {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.stars-large {
  margin-bottom: var(--spacing-sm);
}

.stars-large .star {
  font-size: 1.5rem;
}

.rating-count {
  font-size: 0.875rem;
  color: var(--text-light);
}

.rating-distribution {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  justify-content: center;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.rating-bar span:first-child {
  width: 30px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.bar {
  flex: 1;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background-color: var(--primary-color);
  transition: width var(--transition-slow);
}

.rating-bar span:last-child {
  width: 30px;
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-light);
}

.reviews__carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.review-card {
  padding: var(--spacing-md);
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
}

.review-stars .star {
  font-size: 1rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.review-context,
.review-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--spacing-xs);
}

.context-tag,
.rating-pill {
  padding: 0.25rem 0.5rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--text-dark);
}

.review-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-color);
  color: var(--text-white);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* ===========================
   HOURS SECTION
   =========================== */
.hours {
  background-color: var(--bg-light);
}

.hours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.hours-card {
  padding: var(--spacing-md);
  background-color: var(--bg-white);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-normal);
}

.hours-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.day-header.monday-closed {
  opacity: 0.6;
}

.day-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status.open {
  background-color: #d4edda;
  color: #155724;
}

.status.closed {
  background-color: #f8d7da;
  color: #721c24;
}

.hours-text {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
  background-color: var(--bg-white);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-item p,
.contact-item a {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.location-note {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-style: italic;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-tag {
  font-size: 0.875rem;
  color: var(--text-dark);
}

.cta-box {
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: 12px;
  margin-top: var(--spacing-md);
}

.cta-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.cta-box p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.contact__map {
  position: relative;
}

.map-container {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-sm);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.map-link:hover {
  color: var(--primary-dark);
  gap: 0.75rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.footer__brand p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: var(--spacing-sm);
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.footer__rating span {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer__links h4,
.footer__contact h4,
.footer__hours h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.footer__contact p,
.footer__hours p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.footer__contact a {
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--primary-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer__bottom p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer__badges {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.footer__badges span {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  transition: transform var(--transition-fast);
}

.lightbox__close:hover {
  transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
  transition: all var(--transition-fast);
}

.lightbox__prev {
  left: 2rem;
}

.lightbox__next {
  right: 2rem;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.2);
}

.lightbox__content {
  max-width: 90%;
  max-height: 90%;
}

#lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

/* ===========================
   SCROLL TO TOP BUTTON
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
  z-index: 999;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1023px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-lg: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .about__container,
  .contact__container {
    grid-template-columns: 1fr;
  }

  .rating-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .navbar__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: var(--spacing-md);
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-md);
  }

  .navbar__menu.active {
    left: 0;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .reviews__carousel {
    grid-template-columns: 1fr;
  }

  .hours__grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .lightbox__prev,
  .lightbox__next {
    font-size: 2rem;
    padding: var(--spacing-xs);
  }

  .lightbox__prev {
    left: 1rem;
  }

  .lightbox__next {
    right: 1rem;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .score {
    font-size: 3rem;
  }
}
